Claude Code: Now in Beta in Zed
TL;DR Highlight
Zed editor now runs Claude Code natively inside the editor via its own open standard ACP — not a one-off integration, but a universal protocol for any AI agent.
Who Should Read
Developers who frequently use Claude Code but find terminal switching cumbersome, or those waiting for Claude Code support to switch from Cursor to Zed.
Core Mechanics
- Zed created ACP (Agent Client Protocol), an open standard so any AI agent that implements it can connect to Zed (and any ACP-compatible editor) — not locked to a specific agent.
- Claude Code can now run natively within Zed's Agent Panel. Changes across multi-file edits can be reviewed in real-time and accepted/rejected at the code hunk level.
- ACP wraps the Claude Code SDK via an adapter. Claude Code runs as an independent process, and the adapter translates its actions into ACP's JSON RPC format for the Zed UI.
- The Claude Code adapter source is open-sourced under Apache license. Neovim's CodeCompanion plugin has already adopted ACP, enabling the same Claude Code experience in Neovim.
- Gemini CLI is also integrated via ACP. Users can use Claude Code, Gemini CLI, and other ACP-compatible agents side by side in the Agent Panel.
- GitHub user Xuanwo built an ACP implementation for Claude Code right after launch, which the Zed team publicly credited. A case of community contribution accelerating protocol adoption.
Evidence
- First comments noted it 'feels rushed.' /compact is unsupported so 'Prompt too long' errors with no workaround, Plan mode switching doesn't work, and model switching is impossible — critical limitations for actual use.
- Multiple comments pointed out missing features vs CLI: no Plan Mode, no /clear or /new, no model switching, auto-accept not actually auto-accepting. Some said using CLI inside Zed's terminal is better at this point.
- SSH remote development doesn't work, making it impractical for developers who primarily use remote environments.
- The ACP standardization effort was viewed positively by some: 'Like TLS, OAuth 2.0, and ECMAScript, multiple players building a common standard matures the ecosystem' — ACP is the right long-term direction vs proprietary integrations.
- Anthropic Max subscribers ($200/month) using Opus 4.1 raised concerns about API key costs being too high, questioning whether the Zed integration provides a practical path for these subscription users.
How to Apply
- If you use Claude Code and want visual confirmation of multi-file refactoring changes, update to the latest Zed and select Claude Code from the Agent Panel's Plus menu. Caveat: Plan Mode and /compact are missing, so test with simple tasks first.
- If you primarily use Neovim and need Claude Code editor integration, CodeCompanion plugin already adopted ACP — Claude Code works in Neovim without extra setup.
- If developing your own AI agent/tool with editor integration in mind, reference the ACP spec and open-source Claude Code adapter code to make your agent ACP-compatible for automatic connection to Zed, Neovim, and other ACP-adopting editors.
Terminology
Related Papers
Migrating a production AI agent to GPT-5.6: 2.2x faster, 27% cheaper
마케팅 웹사이트를 자동 생성하는 프로덕션 AI 에이전트를 Claude Opus 4.8에서 GPT-5.6 Sol로 전환한 실전 경험담으로, 단순 모델 교체가 아니라 eval 하네스, 툴 스키마, 캐싱, 추론 리플레이까지 손봐야 했던 과정을 구체적인 수치와 함께 정리했다.
What xAI's Grok build CLI sends to xAI: A wire-level analysis
xAI의 공식 코딩 CLI 도구 Grok Build가 사용자 동의 없이 전체 Git 저장소와 .env 시크릿 파일을 xAI 서버로 업로드한다는 사실이 네트워크 트래픽 분석으로 밝혀졌다.
Remember When It Matters: Proactive Memory Agent for Long-Horizon Agents
LLM 에이전트가 긴 작업 중 중요한 정보를 잊어버리는 문제를 별도의 메모리 에이전트가 '적절한 타이밍에' 끼어들어 해결하는 방법
WebSwarm: Recursive Multi-Agent Orchestration for Deep-and-Wide Web Search
복잡한 웹 검색을 재귀적으로 분해하고 각 노드에 적합한 검색 모드를 동적으로 할당하는 멀티에이전트 프레임워크
Show HN: Reverse-engineering web apps into agent tools
로그인된 웹 앱의 API 호출을 브라우저에서 감시해 자동으로 MCP 도구로 변환하는 에이전트를 만들었다. 소스 코드나 공식 API 문서 없이도 Jira, Spotify 같은 서비스에 AI 어시스턴트를 붙일 수 있다.
Show HN: FableCut – A browser video editor AI agents can drive (zero deps)
타임라인 전체를 JSON 파일 하나로 표현하고 MCP/REST로 AI 에이전트가 직접 편집할 수 있는 브라우저 비디오 에디터로, Claude 같은 AI가 프롬프트 하나로 영상을 자동 컷편집하고 결과를 실시간으로 UI에 반영해준다.