
Security News
Open VSX Unblocks Extension IDs Used in Malware Campaign
Open VSX has removed three extension IDs from its malicious-extension list as the legitimate publishers they impersonated move to claim the names for themselves.
@neeter/react
Advanced tools
React components and hooks for building chat UIs on top of the Claude Agent SDK
React components and hooks for building chat UIs on top of the Claude Agent SDK. Connects to an @neeter/server backend over SSE with a Zustand store, drop-in components, and a widget system for tool call rendering.
Part of the neeter toolkit.
pnpm add @neeter/react
Peer dependencies:
{
"react": ">=18.0.0",
"react-markdown": ">=10.0.0",
"zustand": ">=5.0.0",
"immer": ">=10.0.0"
}
Components use Tailwind CSS v4 utility classes.
import { AgentProvider, MessageList, ChatInput, useAgentContext } from "@neeter/react";
function App() {
return (
<AgentProvider>
<Chat />
</AgentProvider>
);
}
function Chat() {
const { sendMessage } = useAgentContext();
return (
<div className="flex h-screen flex-col">
<MessageList className="flex-1" />
<ChatInput onSend={sendMessage} />
</div>
);
}
Components use shadcn/ui-compatible CSS variable names. If you already have a shadcn theme, add one line:
@import "tailwindcss";
@source "../node_modules/@neeter/react/dist";
Without shadcn, import the bundled theme:
@import "tailwindcss";
@import "@neeter/react/theme.css";
| Example | Description |
|---|---|
| basic-chat | Minimal component setup |
| live-preview | Custom events, widgets, split-pane preview |
MIT
FAQs
React components and hooks for building chat UIs on top of the Claude Agent SDK
The npm package @neeter/react receives a total of 61 weekly downloads. As such, @neeter/react popularity was classified as not popular.
We found that @neeter/react 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.

Security News
Open VSX has removed three extension IDs from its malicious-extension list as the legitimate publishers they impersonated move to claim the names for themselves.

Product
Socket’s PHP and Composer support is now in Beta for all customers, with PHP reachability analysis generally available.

Product
Socket is bringing experimental protection to Firefox, scanning 97,000+ extensions in Mozilla's official directory for malware and risky updates.