docs: update VS Code setup instructions for ACP Client integration

This commit is contained in:
Jun Han 2026-04-19 17:33:33 +08:00 committed by Teknium
parent f97d022149
commit 0d945d1541

View file

@ -67,18 +67,24 @@ Hermes logs to stderr so stdout remains reserved for ACP JSON-RPC traffic.
### VS Code ### VS Code
Install an ACP client extension, then point it at the repo's `acp_registry/` directory. Install the [ACP Client](https://marketplace.visualstudio.com/items?itemName=formulahendry.acp-client) extension.
Example settings snippet: To connect:
1. Open the ACP Client panel from the Activity Bar.
2. Select **Hermes Agent** from the built-in agent list.
3. Connect and start chatting.
If you want to define Hermes manually, add it through VS Code settings under `acp.agents`:
```json ```json
{ {
"acpClient.agents": [ "acp.agents": {
{ "Hermes Agent": {
"name": "hermes-agent", "command": "hermes",
"registryDir": "/path/to/hermes-agent/acp_registry" "args": ["acp"]
} }
] }
} }
``` ```