@hermespilot/link 0.1.6 → 0.1.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +10 -1
- package/dist/{chunk-VCQJ5DSN.js → chunk-L2NM2XMX.js} +446 -141
- package/dist/chunk-L2NM2XMX.js.map +1 -0
- package/dist/cli/index.js +16 -3
- package/dist/cli/index.js.map +1 -1
- package/dist/http/app.js +1 -1
- package/package.json +1 -1
- package/dist/chunk-VCQJ5DSN.js.map +0 -1
package/README.md
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
## Requirements
|
|
6
6
|
|
|
7
7
|
- Node.js 22.14.0 or newer
|
|
8
|
-
- A local hermes-agent setup on the same machine
|
|
8
|
+
- A local hermes-agent setup on the same machine. HermesPilot Link uses the Hermes Agent API Server on `127.0.0.1:8642`.
|
|
9
9
|
|
|
10
10
|
## Install
|
|
11
11
|
|
|
@@ -33,6 +33,15 @@ hermeslink logs
|
|
|
33
33
|
|
|
34
34
|
After a successful QR claim, `hermeslink pair` starts Hermes Link in the background and enables boot autostart. Boot autostart does not configure launchd/systemd restart policies; if the user stops Hermes Link, the operating system should not automatically relaunch it until the next login/boot autostart cycle.
|
|
35
35
|
|
|
36
|
+
When the App sends a message, Hermes Link prepares `~/.hermes/config.yaml` for the Hermes API Server and attempts to start Hermes Gateway with `hermes gateway run --replace` if the API Server is not already reachable. If Hermes Agent is missing or too old to provide `/v1/runs`, Link returns an actionable error and the user should run:
|
|
37
|
+
|
|
38
|
+
```bash
|
|
39
|
+
hermes update
|
|
40
|
+
hermes gateway run
|
|
41
|
+
```
|
|
42
|
+
|
|
43
|
+
If Hermes Agent is configured through `~/.hermes/.env`, Link follows the same `API_SERVER_*` overrides when calling the local API Server.
|
|
44
|
+
|
|
36
45
|
CLI output follows the current system language when it is Chinese or English. You can override it for a single command with `HERMESLINK_LANG=zh-CN` or `HERMESLINK_LANG=en`.
|
|
37
46
|
|
|
38
47
|
## Runtime data
|