@dadado/agent-kit-cli 5.7.0 → 5.8.0
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 +5 -4
- package/dist/index.js +2516 -1205
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -14,10 +14,10 @@ Agent Kit CLI: HITL operating-layer install and tooling for AI-assisted IDEs (ru
|
|
|
14
14
|
From your project root (Node.js 20+):
|
|
15
15
|
|
|
16
16
|
```bash
|
|
17
|
-
npx @dadado/agent-kit-cli install
|
|
17
|
+
npx @dadado/agent-kit-cli@latest install
|
|
18
18
|
```
|
|
19
19
|
|
|
20
|
-
|
|
20
|
+
Use `@latest` so npx does not reuse a stale cached CLI. Pin a version when you need a reproducible install:
|
|
21
21
|
|
|
22
22
|
```bash
|
|
23
23
|
npx @dadado/agent-kit-cli@x.y.z install
|
|
@@ -26,7 +26,7 @@ npx @dadado/agent-kit-cli@x.y.z install
|
|
|
26
26
|
Optional L1 packs:
|
|
27
27
|
|
|
28
28
|
```bash
|
|
29
|
-
npx @dadado/agent-kit-cli install --pack clean-code,context-management
|
|
29
|
+
npx @dadado/agent-kit-cli@latest install --pack clean-code,context-management
|
|
30
30
|
```
|
|
31
31
|
|
|
32
32
|
Install writes L0 kit files under `.cursor/`, plus `autogit/` and `.cursor/agent-kit.json`. It does not copy the Agent Kit monorepo into your project.
|
|
@@ -62,7 +62,7 @@ NO_COLOR=1 agent-kit
|
|
|
62
62
|
# → plain text (no ANSI); also plain when stdout is not a TTY or CI=1
|
|
63
63
|
```
|
|
64
64
|
|
|
65
|
-
Subcommands and `agent-kit --version` are unchanged.
|
|
65
|
+
Subcommands and `agent-kit --version` are unchanged. `agent-kit run <slash>` starts those project slashes headless from `.cursor/commands/` (numbered-list HITL). `/git-prod` and `/kit-prod` stay operator-gated and are omitted from that catalog.
|
|
66
66
|
|
|
67
67
|
On an interactive TTY, long-running commands (`init`, `install`, `doctor`, `update`, `run-plan` ticks) show an in-process ANSI spinner plus a rotating Mission Kit tip. Set `AGENT_KIT_REDUCED_MOTION=1` for static text on a capable TTY. Runtime dependencies stay `@clack/prompts`, `citty`, and `kolorist` (no `ora` / `figlet` / `chalk` / `ink`). Window titles for `agent-kit dashboard` and `agent-kit dashboard-broadcast` use the workspace basename, not the CLI package folder.
|
|
68
68
|
|
|
@@ -78,6 +78,7 @@ On an interactive TTY, long-running commands (`init`, `install`, `doctor`, `upda
|
|
|
78
78
|
| `agent-kit dashboard` | Start Mission Control for this workspace (browser panel) |
|
|
79
79
|
| `agent-kit mission-control` | ASCII Mission Control TUI (`--once` for one frame) |
|
|
80
80
|
| `agent-kit add <id>` | Install a skill or L1 pack |
|
|
81
|
+
| `agent-kit run <slash>` | One headless session from an L0 slash file (numbered-list HITL; never git-prod) |
|
|
81
82
|
| `agent-kit run-plan` | Headless continuous plan runner (never promotes to production) |
|
|
82
83
|
|
|
83
84
|
Run `agent-kit --help` or `agent-kit <command> --help` for the full surface.
|