From 114662fdab67ebcc0585f88551945ed0db28ea94 Mon Sep 17 00:00:00 2001 From: Danilo Leal Date: Tue, 26 Aug 2025 12:55:16 -0300 Subject: [PATCH] Tweaks to the external agents page Co-authored-by: Bennet Bo Fenner --- docs/src/ai/external-agents.md | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/docs/src/ai/external-agents.md b/docs/src/ai/external-agents.md index 9c44b36c5b..e07ee65304 100644 --- a/docs/src/ai/external-agents.md +++ b/docs/src/ai/external-agents.md @@ -4,7 +4,7 @@ Zed has support for integrating with existing terminal-based agentic coding tool At the moment, Zed supports [Gemini CLI](https://github.com/google-gemini/gemini-cli) as a reference implementation of an external agent speaking ACP. -You can also [configure your own](#custom-agents) if you'd like to add ACP support to an existing tool. +You can also [configure your own](#custom-agents) agent if you'd like to add ACP support to an existing tool. ## Gemini CLI {#gemini-cli} @@ -52,7 +52,7 @@ For more information, see the [Gemini CLI docs](https://github.com/google-gemini ### Usage -Similar to the built-in agent in [the agent panel](./agent-panel.md), you can use Gemini CLI to do anything that you need. +Similar to Zed's first-party agent, you can use Gemini CLI to do anything that you need. You can @-mention files, recent conversations, symbols, or fetch the web. @@ -65,15 +65,13 @@ If you have written (or are writing) a tool that speaks ACP, and you'd like to t ```json { "agent_servers": { - "Claude Code": { + "Custom Agent": { "command": "node", - "args": [ - "/Users/conrad/projects/claude-code-acp/index.js", - "--acp" - ] + "args": ["~/projects/agent/index.js", "--acp"], + "env": {} } } } ``` -Zed has some support for debugging acp connections, and you can open the debug view with `dev: open acp logs` from the command line. +Zed has some support for debugging ACP connections, and you can open the debug view with `dev: open acp logs` from the command palette.