configure
Agent Client Protocol Integration
Codey supports the Agent Client Protocol (ACP), which standardizes communication between code editors and AI agents.
#Zed Editor Config
Add the following to your Zed settings (~/.config/zed/settings.json):
json
{
"agent_servers": {
"Codey": {
"command": "codey",
"args": ["acp"]
}
}
}Open the Command Palette in Zed and trigger agent: new thread to start a conversation with Codey.
#Avante.nvim (Neovim)
Configure Avante to load Codey as an ACP provider:
lua
{
acp_providers = {
["codey"] = {
command = "codey",
args = { "acp" }
}
}
}