@hydra-acp/cli 0.1.147 → 0.1.149
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 +4 -7
- package/dist/cli.js +41 -41
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -25,6 +25,8 @@
|
|
|
25
25
|
|
|
26
26
|
> **Status: experimental.** One daemon owns your coding agents, so a session isn't tied to the window that started it. Built on the [Agent Client Protocol (ACP)](https://agentclientprotocol.com/).
|
|
27
27
|
|
|
28
|
+

|
|
29
|
+
|
|
28
30
|
## What it is
|
|
29
31
|
|
|
30
32
|
`hydra-acp` is a **session manager, multiplexer, and TUI** for AI coding agents. Many clients — a terminal TUI, your editor, a browser, Slack — attach to the same live session at once and see it update in real time. Start a session at your desk, follow it from your phone, hand it off to a teammate.
|
|
@@ -192,18 +194,13 @@ compaction` prints them.
|
|
|
192
194
|
|
|
193
195
|
## CLI
|
|
194
196
|
|
|
195
|
-
|
|
197
|
+
Four of these carry most of the daily traffic:
|
|
196
198
|
|
|
197
199
|
```sh
|
|
198
200
|
hydra-acp # open the TUI (picker if you have sessions, else a new one)
|
|
199
|
-
hydra-acp session # list sessions
|
|
200
201
|
hydra-acp --reattach # back into this terminal's last session
|
|
201
|
-
hydra-acp
|
|
202
|
-
hydra-acp agent set claude # change the default agent
|
|
203
|
-
hydra-acp cat -p "..." # one-shot / piped, no TUI
|
|
202
|
+
hydra-acp session # list sessions
|
|
204
203
|
hydra-acp session info <id> # what happened in a session
|
|
205
|
-
hydra-acp daemon log -f # follow the daemon log
|
|
206
|
-
hydra-acp config set <k> <v> # change a setting
|
|
207
204
|
```
|
|
208
205
|
|
|
209
206
|
The full surface:
|