
Security News
TeamPCP Is Systematically Targeting Security Tools Across the OSS Ecosystem
TeamPCP is targeting security tools across the OSS ecosystem, turning scanners and CI pipelines into infostealers to access enterprise secrets.
@rozenite/agent-bridge
Advanced tools

The Rozenite Agent Bridge provides React hooks for exposing app-owned or plugin-owned tools to Rozenite for Agents. It builds on top of the Rozenite plugin bridge so React Native code can register tools, receive tool calls, and return structured results back to coding agents.
Install the agent bridge as a dependency:
npm install @rozenite/agent-bridge
import { useRozenitePluginAgentTool } from '@rozenite/agent-bridge';
function ExamplePlugin() {
useRozenitePluginAgentTool({
pluginId: '@example/plugin',
tool: {
name: 'echo',
description: 'Return the provided value.',
inputSchema: {
type: 'object',
properties: {
value: { type: 'string' },
},
required: ['value'],
},
},
handler: ({ value }: { value: string }) => ({ value }),
});
return null;
}
import { useRozeniteInAppAgentTool } from '@rozenite/agent-bridge';
function AppAgentTools() {
useRozeniteInAppAgentTool({
domain: 'app',
tool: {
name: 'get-build-info',
description: 'Return app build metadata.',
inputSchema: {
type: 'object',
properties: {},
},
},
handler: () => ({
version: '1.0.0',
environment: 'development',
}),
});
return null;
}
useRozenitePluginAgentTooluseRozeniteInAppAgentTool@rozenite/agent-sharedrozenite is an open source project and will always remain free to use. If you think it's cool, please star it 🌟.
Callstack is a group of React and React Native geeks, contact us at hello@callstack.com if you need any help with these or just want to say hi!
Like the project? ⚛️ Join the team who does amazing stuff for clients and drives React Native Open Source! 🔥
FAQs
React hook API for registering agent tools in React Native
We found that @rozenite/agent-bridge demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
TeamPCP is targeting security tools across the OSS ecosystem, turning scanners and CI pipelines into infostealers to access enterprise secrets.

Security News
TypeScript 6.0 introduces new standard APIs, modern default settings, and deprecations as it prepares projects for the upcoming TypeScript 7.0 release.

Security News
/Research
Newly published Trivy Docker images (0.69.4, 0.69.5, and 0.69.6) were found to contain infostealer IOCs and were pushed to Docker Hub without corresponding GitHub releases.