From fe463c4d6ff448de41fcc3ff72e03d5bb4ff4311 Mon Sep 17 00:00:00 2001 From: Michael Wood Date: Thu, 19 Feb 2026 07:09:03 +0200 Subject: [PATCH 1/2] Fix adapter name and installation instructions in README Updated the adapter name for Claude Code in the README and corrected installation instructions. --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 6a0e8ea..2a2e5a3 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ Use your desktop Claude Code, Codex or Gemini CLI coding agent from your phone. **Do I need to deploy anything?** No. Sled runs 100% on your machine. It's written in Typescript (and runs with wrangler locally). Nothing is deployed to the cloud. -**How does it control Claude Code?** Via [ACP (Agent Control Protocol)](https://github.com/ACP-Labs/protocol) — a standard protocol that wraps CLI agents. The `claude-code-acp` adapter runs Claude Code as a subprocess and exposes it via JSON-RPC. +**How does it control Claude Code?** Via [ACP (Agent Control Protocol)](https://github.com/ACP-Labs/protocol) — a standard protocol that wraps CLI agents. The `claude-agent-acp` adapter runs Claude Code as a subprocess and exposes it via JSON-RPC. **What data leaves my machine?** @@ -65,7 +65,7 @@ You need a coding agent installed: # Claude Code npm install -g @anthropic-ai/claude-code@latest # You also need Agent Control Protocol adapter -npm install -g @zed-industries/claude-code-acp +npm install -g @zed-industries/claude-agent-acp # Codex npm install -g @openai/codex @@ -172,7 +172,7 @@ To completely remove Sled: rm -rf /path/to/this/repo/sled # 2. Remove the ACP adapters (optional) -npm uninstall -g @zed-industries/claude-code-acp +npm uninstall -g @zed-industries/claude-agent-acp npm uninstall -g @zed-industries/codex-acp ``` From 45f72149429ab54398a679df855bf82b6d9924bb Mon Sep 17 00:00:00 2001 From: Michael Wood Date: Thu, 19 Feb 2026 07:32:24 +0200 Subject: [PATCH 2/2] Rename claude-code-acp to claude-agent-acp in proxy config --- server-client/src/acp-ws-proxy.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server-client/src/acp-ws-proxy.ts b/server-client/src/acp-ws-proxy.ts index a626a3d..0606a97 100644 --- a/server-client/src/acp-ws-proxy.ts +++ b/server-client/src/acp-ws-proxy.ts @@ -46,7 +46,7 @@ function ensureCliBinsOnPath(existingPath?: string): string { const AGENT_CONFIGS: Record = { gemini: { command: "gemini", args: ["--experimental-acp"] }, - claude: { command: "claude-code-acp", args: [] }, + claude: { command: "claude-agent-acp", args: [] }, codex: { command: "codex-acp", args: [] }, };