Compare commits

...

1 Commits

Author SHA1 Message Date
NexVeridian
d6e9b48b5e docs(acp): fix zed config 2026-04-03 01:28:31 -07:00
2 changed files with 14 additions and 16 deletions

View File

@@ -76,14 +76,13 @@ Open Zed settings (`Cmd+,` on macOS or `Ctrl+,` on Linux) and add to your
```json ```json
{ {
"acp": { "agent_servers": {
"agents": [ "hermes-agent": {
{ "type": "custom",
"name": "hermes-agent", "command": "hermes",
"registry_dir": "/path/to/hermes-agent/acp_registry" "args": ["acp"],
} },
] },
}
} }
``` ```

View File

@@ -88,14 +88,13 @@ Example settings snippet:
```json ```json
{ {
"acp": { "agent_servers": {
"agents": [ "hermes-agent": {
{ "type": "custom",
"name": "hermes-agent", "command": "hermes",
"registry_dir": "/path/to/hermes-agent/acp_registry" "args": ["acp"],
} },
] },
}
} }
``` ```