@hydra-acp/cli 0.1.66 → 0.1.67
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 -0
- package/dist/cli.js +326 -324
- package/dist/index.d.ts +36 -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`:
|