@hydra-acp/cli 0.1.52 → 0.1.54
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 +16 -2
- package/dist/cli.js +8888 -6357
- package/dist/index.d.ts +289 -76
- package/dist/index.js +2826 -1767
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -71,6 +71,8 @@ Agents are sourced from the [ACP Registry](https://github.com/agentclientprotoco
|
|
|
71
71
|
│
|
|
72
72
|
hydra-acp daemon ← daemon (the body)
|
|
73
73
|
│
|
|
74
|
+
T1 → T2 → … → Tn ← transformers (per-session middleware)
|
|
75
|
+
│
|
|
74
76
|
┌─────────────┼─────────────┐
|
|
75
77
|
│ │ │
|
|
76
78
|
ACP agent A ACP agent B ACP agent C ← agents (the feet)
|
|
@@ -212,6 +214,18 @@ hydra-acp daemon restart # stop then start the daemon
|
|
|
212
214
|
hydra-acp daemon logs [-f] [-n N] # tail (default 50) or follow the daemon log
|
|
213
215
|
|
|
214
216
|
hydra-acp session [list] # list sessions
|
|
217
|
+
hydra-acp session info <id> [--verbose] [--json] [--diff] [--fold] [--no-color] [--no-pager]
|
|
218
|
+
# aggregate one session: turn count, tool histogram,
|
|
219
|
+
# files touched, cost/duration, synopsis.
|
|
220
|
+
# --diff appends the session diff under the summary
|
|
221
|
+
# and pages the whole thing on a TTY; honors --fold.
|
|
222
|
+
hydra-acp session diff <id> [--json] [--no-color] [--no-pager] [--fold]
|
|
223
|
+
# git-diff-shaped view of every file the session
|
|
224
|
+
# edited, reconstructed from history (no git, no fs).
|
|
225
|
+
# Pages through $HYDRA_ACP_PAGER → $PAGER → less on a TTY
|
|
226
|
+
# (LESS=FRX default); --no-pager bypasses.
|
|
227
|
+
# --fold collapses sequential hunks that rewrite the
|
|
228
|
+
# same region (agent thrash) into one net-effect hunk.
|
|
215
229
|
hydra-acp session kill <id> # close a live session (keeps the on-disk record so it can be resurrected)
|
|
216
230
|
hydra-acp session remove <id> # remove a session entirely (live or cold)
|
|
217
231
|
hydra-acp session export <id> [--out <file>|.]
|
|
@@ -397,8 +411,8 @@ Configure in `~/.hydra-acp/config.json`:
|
|
|
397
411
|
{
|
|
398
412
|
"extensions": {
|
|
399
413
|
"hydra-acp-slack": {},
|
|
400
|
-
"hydra-acp-
|
|
401
|
-
"command": ["hydra-acp-
|
|
414
|
+
"hydra-acp-browser": {
|
|
415
|
+
"command": ["hydra-acp-browser"],
|
|
402
416
|
"args": ["--port", "9999"],
|
|
403
417
|
"env": { "UI_THEME": "dark" }
|
|
404
418
|
}
|