From e23e976e585b9a5245f9d8cda692e3b417b9eff3 Mon Sep 17 00:00:00 2001 From: Ben Brandt Date: Tue, 30 Sep 2025 17:37:22 +0200 Subject: [PATCH] acp: Bump minimum Claude Code version (#39217) There was an issue with login after the migration to the new anthropic package. This makes sure folks are migrated to a known working version (though the latest version also now works on old versions) Release Notes: - N/A Co-authored-by: Richard Feldman --- crates/project/src/agent_server_store.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/project/src/agent_server_store.rs b/crates/project/src/agent_server_store.rs index 43bd443dfab39dd59042cb42c36fb900a9ca2a3c..fc2400bc9afa903dc452bd383a5d0851852da4d8 100644 --- a/crates/project/src/agent_server_store.rs +++ b/crates/project/src/agent_server_store.rs @@ -909,7 +909,7 @@ impl ExternalAgentServer for LocalClaudeCode { "claude-code-acp".into(), "@zed-industries/claude-code-acp".into(), "node_modules/@zed-industries/claude-code-acp/dist/index.js".into(), - Some("0.2.5".parse().unwrap()), + Some("0.5.2".parse().unwrap()), status_tx, new_version_available_tx, fs, @@ -928,7 +928,7 @@ impl ExternalAgentServer for LocalClaudeCode { command: Some(command.path.to_string_lossy().into_owned()), args: vec![ Path::new(path_prefix) - .join("@anthropic-ai/claude-code/cli.js") + .join("@anthropic-ai/claude-agent-sdk/cli.js") .to_string_lossy() .to_string(), "/login".into(),