Zed Editor Integration
Added in v1.2.32
Codeep integrates natively with the Zed editor via the Agent Client Protocol (ACP). Use all Codeep commands directly from the Zed AI chat panel.
Setup
Install Codeep globally if you haven't already:
$ npm install -g codeep
Add Codeep to your Zed settings (~/.config/zed/settings.json):
"agent_servers": {
"Codeep": {
"type": "custom",
"command": "codeep",
"args": ["acp"]
}
}
Open the Zed AI panel, select Codeep as the agent, and type /help to see all commands.
Features in Zed
- All 30+ slash commands available in the Zed chat panel
- Live tool call display as the agent executes actions
- Thinking indicators during AI reasoning phases
- File edit notifications with diff preview
- Full agent mode support — autonomous task execution
- Embedded context — drag a file into chat and its content reaches the model
- Instant reconnect on panel reload (session/resume, no history replay)
- Image paste with vision analysis
- Shell commands routed through Zed's terminal panel when available
ℹ
ACP (Agent Client Protocol) is Zed's standard for integrating external AI agents. Codeep implements the full ACP spec, so all Zed features work seamlessly.