
Product
Socket MCP Adds Org Alerts, Threat Feed Review, and Package Inspection
Socket MCP now lets AI assistants review org alerts, investigate threats using the Socket threat feed, and inspect package files in addition to dependency scoring.
@finityno/claude-code-acp
Advanced tools
An ACP-compatible coding agent powered by the Claude Code SDK (TypeScript)
Fork of @zed-industries/claude-code-acp
This fork adds support for subagent (Task tool) tracking and AskUserQuestion tool support.
Use Claude Code from ACP-compatible clients such as Zed!
npm i @finityno/claude-code-acp
Or install globally:
npm i -g @finityno/claude-code-acp
This adapter implements an ACP agent using the official Claude Agent SDK:
Track Task tool (subagent) lifecycle events:
import { ClaudeAcpAgent } from "@finityno/claude-code-acp";
const agent = new ClaudeAcpAgent(client);
const tracker = agent.subagentTracker;
// Listen for subagent events
tracker.addEventListener("subagent_started", (subagent) => {
console.log(`Started: ${subagent.description} (${subagent.subagentType})`);
});
tracker.addEventListener("subagent_completed", (subagent) => {
console.log(`Completed: ${subagent.id}`);
});
tracker.addEventListener("subagent_failed", (subagent) => {
console.error(`Failed: ${subagent.error}`);
});
// Query subagents
tracker.getRunningSubagents(); // Currently active
tracker.getSessionSubagents(sessionId); // By session
tracker.getStats(); // Counts & avg duration
See docs/subagent-tracking.md for full API documentation.
Claude can ask clarifying questions during execution. Questions are presented via the ACP permission request system:
// Claude sends a question like:
{
"question": "Which testing framework should we use?",
"header": "Testing",
"options": [
{ "label": "Jest", "description": "Popular JavaScript testing framework" },
{ "label": "Vitest", "description": "Vite-native, fast testing framework" }
],
"multiSelect": false
}
// User selects an option, Claude receives:
{
"answers": {
"Which testing framework should we use?": "Vitest"
}
}
Features:
See docs/ask-user-question.md for ACP client integration details.
The latest version of Zed can use this adapter out of the box. Open the Agent Panel and click "New Claude Code Thread" from the + button menu.
Read the docs on External Agent support.
Use with any ACP compatible client:
ANTHROPIC_API_KEY=sk-... claude-code-acp
Apache-2.0
FAQs
An ACP-compatible coding agent powered by the Claude Code SDK (TypeScript)
We found that @finityno/claude-code-acp 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.

Product
Socket MCP now lets AI assistants review org alerts, investigate threats using the Socket threat feed, and inspect package files in addition to dependency scoring.

Product
Socket Firewall blocks malicious VS Code and Open VSX extensions before install, protecting developers from compromised editor marketplaces.

Research
More than 140 Mastra npm packages were compromised in a supply chain attack that used a typosquatted dependency to deliver a cross-platform infostealer during installation.