@hydra-acp/cli 0.1.45 → 0.1.47
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 -4
- package/dist/cli.js +526 -108
- package/dist/index.d.ts +22 -1
- package/dist/index.js +402 -44
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -235,13 +235,13 @@ hydra-acp extension [list] # list configured extensions and live
|
|
|
235
235
|
hydra-acp extension add <name> # add to config (--command, --args, --env, --disabled)
|
|
236
236
|
hydra-acp extension remove <name> # remove from config
|
|
237
237
|
hydra-acp extension start|stop|restart <n> # lifecycle on a running extension
|
|
238
|
-
hydra-acp extension
|
|
238
|
+
hydra-acp extension log <name> [-f] [-n] # tail (default 50) or follow an extension's log
|
|
239
239
|
|
|
240
240
|
hydra-acp transformer [list] # list configured transformers and live state
|
|
241
241
|
hydra-acp transformer add <name> # add to config (--command, --args, --env, --enabled; disabled by default)
|
|
242
242
|
hydra-acp transformer remove <name> # remove from config
|
|
243
243
|
hydra-acp transformer start|stop|restart <n> # lifecycle on a running transformer
|
|
244
|
-
hydra-acp transformer
|
|
244
|
+
hydra-acp transformer log <name> [-f] [-n] # tail (default 50) or follow a transformer's log
|
|
245
245
|
|
|
246
246
|
hydra-acp agent [list] # list agents in the registry
|
|
247
247
|
hydra-acp agent install <id> # pre-install an agent (else lazy on first use)
|
|
@@ -431,7 +431,7 @@ While the daemon is running you can manage extensions without bouncing it:
|
|
|
431
431
|
```text
|
|
432
432
|
hydra-acp extension list
|
|
433
433
|
hydra-acp extension restart hydra-acp-slack
|
|
434
|
-
hydra-acp extension
|
|
434
|
+
hydra-acp extension log hydra-acp-slack --follow
|
|
435
435
|
```
|
|
436
436
|
|
|
437
437
|
`stop` suppresses the auto-restart backoff; the extension stays down until the next `start`, `restart`, or daemon bounce. `add`/`remove` are config-only — restart the daemon to apply.
|
|
@@ -490,7 +490,7 @@ hydra-acp extension start hydra-acp-archiver
|
|
|
490
490
|
|
|
491
491
|
See the [package README](https://github.com/smagnuso/hydra-acp-archiver#readme) for backend setup (Drive OAuth, filesystem path).
|
|
492
492
|
|
|
493
|
-
Per-extension config (env vars, args, custom command paths) goes in the same `extensions` block in `~/.hydra-acp/config.json` — see the snippet above. `hydra-acp extension
|
|
493
|
+
Per-extension config (env vars, args, custom command paths) goes in the same `extensions` block in `~/.hydra-acp/config.json` — see the snippet above. `hydra-acp extension log <name> -f` tails an extension's stdout/stderr if you need to debug.
|
|
494
494
|
|
|
495
495
|
### Transformers
|
|
496
496
|
|