Skip to content

Commit adaff6d

Browse files
authored
docs: update settings.json in ACP quickstart (#57)
1 parent a7aa7c3 commit adaff6d

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

docs/quickstart.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ Add an Agent Server entry in `settings.json` (Zed → Settings → Agents panel)
5050
{
5151
"agent_servers": {
5252
"Echo Agent (Python)": {
53+
"type": "custom",
5354
"command": "/abs/path/to/python",
5455
"args": [
5556
"/abs/path/to/agentclientprotocol/python-sdk/examples/echo_agent.py"
@@ -59,6 +60,21 @@ Add an Agent Server entry in `settings.json` (Zed → Settings → Agents panel)
5960
}
6061
```
6162

63+
Or, if using `uv`:
64+
65+
```json
66+
{
67+
"agent_servers": {
68+
"type": "custom",
69+
"command": "uv",
70+
"args": [
71+
"run",
72+
"/abs/path/to/agentclientprotocol/python-sdk/examples/echo_agent.py"
73+
],
74+
}
75+
}
76+
```
77+
6278
Open the Agents panel and start the session. Each message you send should be echoed back via streamed `session/update` notifications.
6379

6480
### Other clients

0 commit comments

Comments
 (0)