@hydra-acp/cli 0.1.66 → 0.1.68
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 +11 -1
- package/dist/cli.js +325 -323
- package/dist/index.d.ts +41 -1
- package/dist/index.js +55 -55
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -266,6 +266,16 @@ hydra-acp extension start hydra-acp-archiver
|
|
|
266
266
|
|
|
267
267
|
See the [package README](https://github.com/smagnuso/hydra-acp-archiver#readme) for backend setup (Drive OAuth, filesystem path).
|
|
268
268
|
|
|
269
|
+
**[`@hydra-acp/planner`](https://github.com/smagnuso/hydra-acp-planner) — multi-agent project orchestrator.** Invoked via `/hydra planner create <description>` from any session: asks the host agent to decompose the project into a task DAG, then spawns N worker sessions and drives them in parallel by prompt management, with progress streaming back into your original chat. Boards persist under `~/.hydra-acp/planner/projects/<id>/` so plans survive daemon restarts. Strictly speaking it's a [transformer](#transformers), not an extension — it sits in the daemon's message pipeline rather than attaching as a client — but it installs and configures the same way.
|
|
270
|
+
|
|
271
|
+
```sh
|
|
272
|
+
npm install -g @hydra-acp/planner
|
|
273
|
+
hydra-acp transformer add hydra-acp-planner
|
|
274
|
+
hydra-acp transformer start hydra-acp-planner
|
|
275
|
+
```
|
|
276
|
+
|
|
277
|
+
See the [package README](https://github.com/smagnuso/hydra-acp-planner#readme) for the full set of `/hydra planner` verbs (status, retry, cancel, …) and the task-DAG format.
|
|
278
|
+
|
|
269
279
|
### Configuring extensions
|
|
270
280
|
|
|
271
281
|
Configure in `~/.hydra-acp/config.json`:
|
|
@@ -334,7 +344,7 @@ hydra-acp daemon [status] # output status of daemon
|
|
|
334
344
|
hydra-acp daemon start [--foreground] # detached by default; --foreground to attach
|
|
335
345
|
hydra-acp daemon stop # stop running daemon
|
|
336
346
|
hydra-acp daemon restart # stop then start the daemon
|
|
337
|
-
hydra-acp daemon
|
|
347
|
+
hydra-acp daemon log [-f] [-n N] # tail (default 50) or follow the daemon log
|
|
338
348
|
|
|
339
349
|
hydra-acp session [list] # list sessions
|
|
340
350
|
hydra-acp session info <id> [--verbose] [--json] [--diff] [--fold] [--no-color] [--no-pager]
|