mirror of
https://github.com/NousResearch/hermes-agent.git
synced 2026-05-13 03:52:00 +00:00
docs: update VS Code setup instructions for ACP Client integration
This commit is contained in:
parent
f97d022149
commit
0d945d1541
1 changed files with 13 additions and 7 deletions
|
|
@ -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"]
|
||||||
}
|
}
|
||||||
]
|
}
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue