@hydra-acp/cli 0.1.53 → 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 +12 -0
- package/dist/cli.js +10486 -9030
- package/dist/index.d.ts +256 -78
- package/dist/index.js +3110 -2370
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -214,6 +214,18 @@ hydra-acp daemon restart # stop then start the daemon
|
|
|
214
214
|
hydra-acp daemon logs [-f] [-n N] # tail (default 50) or follow the daemon log
|
|
215
215
|
|
|
216
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.
|
|
217
229
|
hydra-acp session kill <id> # close a live session (keeps the on-disk record so it can be resurrected)
|
|
218
230
|
hydra-acp session remove <id> # remove a session entirely (live or cold)
|
|
219
231
|
hydra-acp session export <id> [--out <file>|.]
|