Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions docs/quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ Add an Agent Server entry in `settings.json` (Zed → Settings → Agents panel)
{
"agent_servers": {
"Echo Agent (Python)": {
"type": "custom",
"command": "/abs/path/to/python",
"args": [
"/abs/path/to/agentclientprotocol/python-sdk/examples/echo_agent.py"
Expand All @@ -59,6 +60,21 @@ Add an Agent Server entry in `settings.json` (Zed → Settings → Agents panel)
}
```

Or, if using `uv`:

```json
{
"agent_servers": {
"type": "custom",
"command": "uv",
"args": [
"run",
"/abs/path/to/agentclientprotocol/python-sdk/examples/echo_agent.py"
],
}
}
```

Open the Agents panel and start the session. Each message you send should be echoed back via streamed `session/update` notifications.

### Other clients
Expand Down