@slowcook-ai/cli 0.19.5 → 0.19.6
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 +184 -28
- package/dist/cli.js +53 -73
- package/dist/cli.js.map +1 -1
- package/dist/commands/serve/config.d.ts +140 -0
- package/dist/commands/serve/config.d.ts.map +1 -0
- package/dist/commands/serve/config.js +174 -0
- package/dist/commands/serve/config.js.map +1 -0
- package/dist/commands/serve/detect.d.ts +31 -0
- package/dist/commands/serve/detect.d.ts.map +1 -0
- package/dist/commands/serve/detect.js +56 -0
- package/dist/commands/serve/detect.js.map +1 -0
- package/dist/commands/serve/dev.d.ts +51 -0
- package/dist/commands/serve/dev.d.ts.map +1 -0
- package/dist/commands/serve/dev.js +126 -0
- package/dist/commands/serve/dev.js.map +1 -0
- package/dist/commands/serve/index.d.ts +28 -0
- package/dist/commands/serve/index.d.ts.map +1 -0
- package/dist/commands/serve/index.js +216 -0
- package/dist/commands/serve/index.js.map +1 -0
- package/dist/commands/serve/mock.d.ts +39 -0
- package/dist/commands/serve/mock.d.ts.map +1 -0
- package/dist/commands/serve/mock.js +132 -0
- package/dist/commands/serve/mock.js.map +1 -0
- package/dist/commands/serve/staging.d.ts +39 -0
- package/dist/commands/serve/staging.d.ts.map +1 -0
- package/dist/commands/serve/staging.js +190 -0
- package/dist/commands/serve/staging.js.map +1 -0
- package/dist/commands/stories/index.d.ts +15 -0
- package/dist/commands/stories/index.d.ts.map +1 -0
- package/dist/commands/stories/index.js +280 -0
- package/dist/commands/stories/index.js.map +1 -0
- package/dist/commands/stories/status.d.ts +74 -0
- package/dist/commands/stories/status.d.ts.map +1 -0
- package/dist/commands/stories/status.js +176 -0
- package/dist/commands/stories/status.js.map +1 -0
- package/dist/commands.manifest.d.ts +37 -0
- package/dist/commands.manifest.d.ts.map +1 -0
- package/dist/commands.manifest.js +289 -0
- package/dist/commands.manifest.js.map +1 -0
- package/dist/help.d.ts +43 -0
- package/dist/help.d.ts.map +1 -0
- package/dist/help.js +131 -0
- package/dist/help.js.map +1 -0
- package/package.json +3 -3
|
@@ -0,0 +1,289 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* `packages/cli/src/commands.manifest.ts`
|
|
3
|
+
*
|
|
4
|
+
* Single source of truth for slowcook's user-facing command surface.
|
|
5
|
+
* Drives BOTH `slowcook help` output AND the auto-generated command
|
|
6
|
+
* catalog in `packages/cli/README.md`.
|
|
7
|
+
*
|
|
8
|
+
* Adding a command: append an entry below. Update both `slowcook help`
|
|
9
|
+
* AND README sync at the same time via the CI gate in
|
|
10
|
+
* `.github/workflows/readme-help-sync.yml`.
|
|
11
|
+
*
|
|
12
|
+
* Removing a command: don't. Mark `status: "deprecated"` + keep the
|
|
13
|
+
* entry for one release with a deprecation warning, then remove.
|
|
14
|
+
* Backward compat is a public commitment.
|
|
15
|
+
*/
|
|
16
|
+
export const COMMANDS = [
|
|
17
|
+
// --- Pipeline ---
|
|
18
|
+
{
|
|
19
|
+
name: "refine",
|
|
20
|
+
usage: "slowcook refine --issue <number> [--cwd <path>] [--owner <login>] [--repo <name>]",
|
|
21
|
+
description: "Drive a GitHub issue through a clarifying-question loop until a frozen spec PR is emitted.",
|
|
22
|
+
group: "pipeline",
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
name: "recipe",
|
|
26
|
+
usage: "slowcook recipe [--spec <id>] [--all] [--cwd <path>]",
|
|
27
|
+
description: "Generate Vitest tests from merged specs — the test contract brew follows.",
|
|
28
|
+
group: "pipeline",
|
|
29
|
+
aliases: ["testgen"],
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
name: "vibe",
|
|
33
|
+
usage: "slowcook vibe --spec <id> [--cwd <path>] [--owner <login>] [--repo <name>] [--dry-run]",
|
|
34
|
+
description: "Design-first mockup generator. Emits a runnable React mockup PR from spec + brownfield context.",
|
|
35
|
+
group: "pipeline",
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
name: "plate",
|
|
39
|
+
usage: "slowcook plate --pr <number> [--cwd <path>] [--owner <login>] [--repo <name>] [--review-comment-id <id>]",
|
|
40
|
+
description: "Mockup amendment agent. Triggered by /plate PR comments on slowcook-mockup PRs; force-pushes amendments.",
|
|
41
|
+
group: "pipeline",
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
name: "brew",
|
|
45
|
+
usage: "slowcook brew --story <id> [--budget-usd <n>] [--max-iterations <n>] [--model <id>]",
|
|
46
|
+
description: "Ratcheted implementation loop: iterate src/ until all of one story's tests are green.",
|
|
47
|
+
group: "pipeline",
|
|
48
|
+
},
|
|
49
|
+
{
|
|
50
|
+
name: "chef",
|
|
51
|
+
usage: "slowcook chef --pr <number> [--cwd <path>]",
|
|
52
|
+
description: "PR-CI failure classifier — dispatches retry / escalate based on check status.",
|
|
53
|
+
group: "pipeline",
|
|
54
|
+
},
|
|
55
|
+
{
|
|
56
|
+
name: "chef-drift",
|
|
57
|
+
usage: "slowcook chef-drift [--pr <number>] [--story <id>] [--cwd <path>]",
|
|
58
|
+
description: "Surgical drift-fixer. Triggered by mock-isolation / recon / brew / navigator halts.",
|
|
59
|
+
group: "pipeline",
|
|
60
|
+
},
|
|
61
|
+
{
|
|
62
|
+
name: "chef-orchestrate",
|
|
63
|
+
usage: "slowcook chef-orchestrate --pr <number> --story <id> [--cwd <path>]",
|
|
64
|
+
description: "Pipeline orchestrator. Decides redispatch_brew / rebase / escalate / close on a halted PR.",
|
|
65
|
+
group: "pipeline",
|
|
66
|
+
},
|
|
67
|
+
// --- Plumbing ---
|
|
68
|
+
{
|
|
69
|
+
name: "init",
|
|
70
|
+
usage: "slowcook init [--owner <handle>] [--force] [--dry-run] [--cwd <path>]",
|
|
71
|
+
description: "Scaffold .brewing/, .github/workflows/slowcook-*, and CODEOWNERS in a consumer project.",
|
|
72
|
+
group: "plumbing",
|
|
73
|
+
},
|
|
74
|
+
{
|
|
75
|
+
name: "refresh-knowledge",
|
|
76
|
+
usage: "slowcook refresh-knowledge [--cwd <path>] [--auto-only] [--curated-only]",
|
|
77
|
+
description: "Rebuild .brewing/repo-knowledge/{auto,curated}/ — code-shape digests + git-history mining.",
|
|
78
|
+
group: "plumbing",
|
|
79
|
+
},
|
|
80
|
+
{
|
|
81
|
+
name: "upsert-agent-docs",
|
|
82
|
+
usage: "slowcook upsert-agent-docs [--cwd <path>] [--dry-run]",
|
|
83
|
+
description: "Write the managed slowcook block in the consumer's AGENTS.md (or create one).",
|
|
84
|
+
group: "plumbing",
|
|
85
|
+
},
|
|
86
|
+
{
|
|
87
|
+
name: "knowledge",
|
|
88
|
+
usage: "slowcook knowledge add <topic> \"<entry>\" [--evidence-pr <n>] [--evidence-file <path>]",
|
|
89
|
+
description: "Add a curated entry to .brewing/repo-knowledge/curated/.",
|
|
90
|
+
group: "knowledge",
|
|
91
|
+
},
|
|
92
|
+
{
|
|
93
|
+
name: "cost",
|
|
94
|
+
usage: "slowcook cost log --story <id> --usd <n> --agent <name> [--apply-to-spec]",
|
|
95
|
+
description: "Stamp a cost marker on a story for non-Actions agents (Claude Code, Cursor, manual runs).",
|
|
96
|
+
group: "knowledge",
|
|
97
|
+
},
|
|
98
|
+
{
|
|
99
|
+
name: "stories",
|
|
100
|
+
usage: "slowcook stories status [--cwd <path>] [--owner <login>] [--repo <name>] [--json]",
|
|
101
|
+
description: "Per-story pipeline-stage table (refine / testgen / vibe / brew / chef) from specs/_index.yaml + GitHub state.",
|
|
102
|
+
group: "knowledge",
|
|
103
|
+
status: "alpha",
|
|
104
|
+
},
|
|
105
|
+
// --- Checks ---
|
|
106
|
+
{
|
|
107
|
+
name: "guard",
|
|
108
|
+
usage: "slowcook guard --base <ref> --head <ref> [--override] [--config <path>]",
|
|
109
|
+
description: "Check for frozen-path violations between two git refs. CI step.",
|
|
110
|
+
group: "checks",
|
|
111
|
+
},
|
|
112
|
+
{
|
|
113
|
+
name: "manifest",
|
|
114
|
+
usage: "slowcook manifest (record|verify) [--stack-config <path>] [--manifest <path>] [--story <id>]",
|
|
115
|
+
description: "Record or verify the set of discoverable tests so agents can't silently exclude them.",
|
|
116
|
+
group: "checks",
|
|
117
|
+
},
|
|
118
|
+
{
|
|
119
|
+
name: "check",
|
|
120
|
+
usage: "slowcook check (mock-isolation|spec) [file...] [--cwd <path>]",
|
|
121
|
+
description: "Static structural checks. `check spec` re-runs spec validators on PR amendments; `check mock-isolation` enforces the mock-vs-prod boundary.",
|
|
122
|
+
group: "checks",
|
|
123
|
+
},
|
|
124
|
+
{
|
|
125
|
+
name: "recon",
|
|
126
|
+
usage: "slowcook recon [--story <id>] [--cwd <path>] [--reuse-scan] [--stub-scan] [--exclude <glob>]",
|
|
127
|
+
description: "Pre-brew structural divergence check. Surfaces missing components / testid gaps / brownfield rename hazards.",
|
|
128
|
+
group: "checks",
|
|
129
|
+
},
|
|
130
|
+
{
|
|
131
|
+
name: "map",
|
|
132
|
+
usage: "slowcook map (generate|check) [--cwd <path>] [--out <path>] [--md <path>]",
|
|
133
|
+
description: "Generate / check the repo-wide code map (APIs, pages, components, helpers, types).",
|
|
134
|
+
group: "checks",
|
|
135
|
+
},
|
|
136
|
+
// --- Ops ---
|
|
137
|
+
{
|
|
138
|
+
name: "serve",
|
|
139
|
+
usage: "slowcook serve <profile> (up|sync|down|logs|reset) [--branch <name>] [--scenario <name>] [--service <name>] [--follow] [--prune]",
|
|
140
|
+
description: "Multi-mode dev / mock / staging on a shared box. `dev` bind-mounts source; `mock` runs vite-dev (auto-skip if no scripts.dev); `staging` is built-image with named-scenario seed reset.",
|
|
141
|
+
group: "ops",
|
|
142
|
+
status: "alpha",
|
|
143
|
+
},
|
|
144
|
+
{
|
|
145
|
+
name: "dev-env",
|
|
146
|
+
usage: "slowcook dev-env (push|switch|up|sync|reset) [--story <id>] [--branch <name>]",
|
|
147
|
+
description: "Legacy alias for `slowcook serve dev`. Bind-mount source push + per-story preview switch. Kept for backward compat.",
|
|
148
|
+
group: "ops",
|
|
149
|
+
status: "deprecated",
|
|
150
|
+
},
|
|
151
|
+
{
|
|
152
|
+
name: "preview",
|
|
153
|
+
usage: "slowcook preview (deploy|teardown) --pr <number> [--ssh-key <path>] [--cwd <path>]",
|
|
154
|
+
description: "SSH preview deploy. `deploy --pr N`: build + run the mock app on the consumer's box; post URL to PR.",
|
|
155
|
+
group: "ops",
|
|
156
|
+
},
|
|
157
|
+
{
|
|
158
|
+
name: "run-mock",
|
|
159
|
+
usage: "slowcook run-mock <story-id> [--no-poll] [--poll-seconds <n>] [--branch <ref>]",
|
|
160
|
+
description: "One-command mock launch + auto-pull. Polls origin + git pull --ff-only on plate amendments.",
|
|
161
|
+
group: "ops",
|
|
162
|
+
},
|
|
163
|
+
{
|
|
164
|
+
name: "dispatch",
|
|
165
|
+
usage: "slowcook dispatch <step> [inputs...]",
|
|
166
|
+
description: "Trigger a slowcook GitHub Actions workflow remotely (brew / testgen / refine).",
|
|
167
|
+
group: "ops",
|
|
168
|
+
},
|
|
169
|
+
{
|
|
170
|
+
name: "port",
|
|
171
|
+
usage: "slowcook port --story <id> [--cwd <path>] [--dry-run] [--force]",
|
|
172
|
+
description: "Deterministic mock/ → src/ copy. Pre-brew CI step; applies the useScenarioFixture → useDataDomain rewrite.",
|
|
173
|
+
group: "ops",
|
|
174
|
+
},
|
|
175
|
+
// --- Lifecycle hooks (workflow-driven, not usually invoked by humans) ---
|
|
176
|
+
{
|
|
177
|
+
name: "on-spec-merged",
|
|
178
|
+
usage: "slowcook on-spec-merged --pr <number> [--cwd <path>]",
|
|
179
|
+
description: "Transition source-issue labels + post audit-trail comment after a spec PR merges.",
|
|
180
|
+
group: "plumbing",
|
|
181
|
+
},
|
|
182
|
+
{
|
|
183
|
+
name: "on-tests-merged",
|
|
184
|
+
usage: "slowcook on-tests-merged --pr <number> [--cwd <path>]",
|
|
185
|
+
description: "Post audit-trail comment after a tests PR merges.",
|
|
186
|
+
group: "plumbing",
|
|
187
|
+
},
|
|
188
|
+
{
|
|
189
|
+
name: "on-brew-merged",
|
|
190
|
+
usage: "slowcook on-brew-merged --pr <number> [--cwd <path>]",
|
|
191
|
+
description: "Post final \"shipped\" audit-trail comment after a brew PR merges. Warns when merge target isn't main.",
|
|
192
|
+
group: "plumbing",
|
|
193
|
+
},
|
|
194
|
+
{
|
|
195
|
+
name: "on-mockup-approved",
|
|
196
|
+
usage: "slowcook on-mockup-approved --pr <number> [--cwd <path>]",
|
|
197
|
+
description: "Hook fired when a mockup PR gets the slowcook-mockup-approved label.",
|
|
198
|
+
group: "plumbing",
|
|
199
|
+
},
|
|
200
|
+
// --- Bug flow ---
|
|
201
|
+
{
|
|
202
|
+
name: "investigate",
|
|
203
|
+
usage: "slowcook investigate --issue <number> [--cwd <path>]",
|
|
204
|
+
description: "Diagnose a bug from a GitHub issue and emit a bug-profile.",
|
|
205
|
+
group: "experimental",
|
|
206
|
+
status: "alpha",
|
|
207
|
+
},
|
|
208
|
+
{
|
|
209
|
+
name: "sift",
|
|
210
|
+
usage: "slowcook sift --bug-profile <path> [--cwd <path>]",
|
|
211
|
+
description: "Narrow red→green ratchet for a bug fix; bounded by bug-profile fix_scope.",
|
|
212
|
+
group: "experimental",
|
|
213
|
+
status: "alpha",
|
|
214
|
+
},
|
|
215
|
+
// --- Misc + experimental ---
|
|
216
|
+
{
|
|
217
|
+
name: "extract",
|
|
218
|
+
usage: "slowcook extract [--schema] [--tokens] [--cwd <path>]",
|
|
219
|
+
description: "Brownfield extracts (schema.mmd, tokens.md) for refine/investigate context. Fast, no node_modules.",
|
|
220
|
+
group: "knowledge",
|
|
221
|
+
},
|
|
222
|
+
{
|
|
223
|
+
name: "catchup",
|
|
224
|
+
usage: "slowcook catchup [--dry-run] [--cwd <path>]",
|
|
225
|
+
description: "Detect + run pipeline steps that should have triggered but didn't.",
|
|
226
|
+
group: "plumbing",
|
|
227
|
+
},
|
|
228
|
+
{
|
|
229
|
+
name: "refactor",
|
|
230
|
+
usage: "slowcook refactor [--scope <name>] [--cwd <path>]",
|
|
231
|
+
description: "Rank refactor proposals from .brewing/refactor/proposals.json by benefit/cost.",
|
|
232
|
+
group: "experimental",
|
|
233
|
+
},
|
|
234
|
+
{
|
|
235
|
+
name: "garnish",
|
|
236
|
+
usage: "slowcook garnish [--cwd <path>]",
|
|
237
|
+
description: "Local commit-gate for human tweaks on agent work. Runs tests, commits with learning-signal trailers.",
|
|
238
|
+
group: "experimental",
|
|
239
|
+
},
|
|
240
|
+
{
|
|
241
|
+
name: "budget",
|
|
242
|
+
usage: "slowcook budget [show|set|rm] [--monthly <usd>] [--start-day <1-31>] [--story <usd>] [--cwd <path>]",
|
|
243
|
+
description: "Manage the project monthly budget for the fuel gauge.",
|
|
244
|
+
group: "plumbing",
|
|
245
|
+
},
|
|
246
|
+
{
|
|
247
|
+
name: "brand",
|
|
248
|
+
usage: "slowcook brand [--brief <prose>] [--refresh] [--dry-run] [--model <id>] [--cwd <path>]",
|
|
249
|
+
description: "Design-system foundation agent. Emits mock/src/design-system/{tokens.ts, css.ts} from a brand brief.",
|
|
250
|
+
group: "pipeline",
|
|
251
|
+
},
|
|
252
|
+
{
|
|
253
|
+
name: "fixtures",
|
|
254
|
+
usage: "slowcook fixtures check [--max-age-days <n>] [--story <id>]",
|
|
255
|
+
description: "Sanity-check the test-fixture set against the spec.",
|
|
256
|
+
group: "checks",
|
|
257
|
+
},
|
|
258
|
+
{
|
|
259
|
+
name: "eval",
|
|
260
|
+
usage: "slowcook eval (--all | --fixture <id> | --list) [--fixtures-dir <path>]",
|
|
261
|
+
description: "Run the agent eval suite against committed fixtures.",
|
|
262
|
+
group: "checks",
|
|
263
|
+
},
|
|
264
|
+
{
|
|
265
|
+
name: "docs",
|
|
266
|
+
usage: "slowcook docs [--cwd <path>]",
|
|
267
|
+
description: "Docs generation helper.",
|
|
268
|
+
group: "plumbing",
|
|
269
|
+
},
|
|
270
|
+
// --- Hidden built-ins ---
|
|
271
|
+
{ name: "version", usage: "slowcook version", description: "Print the CLI version.", group: "plumbing", hidden: true },
|
|
272
|
+
{ name: "help", usage: "slowcook help [<command>]", description: "Show this help (or per-command usage).", group: "plumbing", hidden: true },
|
|
273
|
+
];
|
|
274
|
+
const NAME_OR_ALIAS_INDEX = (() => {
|
|
275
|
+
const m = new Map();
|
|
276
|
+
for (const cmd of COMMANDS) {
|
|
277
|
+
m.set(cmd.name, cmd);
|
|
278
|
+
for (const alias of cmd.aliases ?? [])
|
|
279
|
+
m.set(alias, cmd);
|
|
280
|
+
}
|
|
281
|
+
return m;
|
|
282
|
+
})();
|
|
283
|
+
export function findCommand(nameOrAlias) {
|
|
284
|
+
return NAME_OR_ALIAS_INDEX.get(nameOrAlias);
|
|
285
|
+
}
|
|
286
|
+
export function visibleCommands() {
|
|
287
|
+
return COMMANDS.filter((c) => !c.hidden);
|
|
288
|
+
}
|
|
289
|
+
//# sourceMappingURL=commands.manifest.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"commands.manifest.js","sourceRoot":"","sources":["../src/commands.manifest.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;GAcG;AA6BH,MAAM,CAAC,MAAM,QAAQ,GAAgC;IACnD,mBAAmB;IACnB;QACE,IAAI,EAAE,QAAQ;QACd,KAAK,EAAE,mFAAmF;QAC1F,WAAW,EAAE,4FAA4F;QACzG,KAAK,EAAE,UAAU;KAClB;IACD;QACE,IAAI,EAAE,QAAQ;QACd,KAAK,EAAE,sDAAsD;QAC7D,WAAW,EAAE,2EAA2E;QACxF,KAAK,EAAE,UAAU;QACjB,OAAO,EAAE,CAAC,SAAS,CAAC;KACrB;IACD;QACE,IAAI,EAAE,MAAM;QACZ,KAAK,EAAE,wFAAwF;QAC/F,WAAW,EAAE,iGAAiG;QAC9G,KAAK,EAAE,UAAU;KAClB;IACD;QACE,IAAI,EAAE,OAAO;QACb,KAAK,EAAE,0GAA0G;QACjH,WAAW,EAAE,0GAA0G;QACvH,KAAK,EAAE,UAAU;KAClB;IACD;QACE,IAAI,EAAE,MAAM;QACZ,KAAK,EAAE,qFAAqF;QAC5F,WAAW,EAAE,uFAAuF;QACpG,KAAK,EAAE,UAAU;KAClB;IACD;QACE,IAAI,EAAE,MAAM;QACZ,KAAK,EAAE,4CAA4C;QACnD,WAAW,EAAE,+EAA+E;QAC5F,KAAK,EAAE,UAAU;KAClB;IACD;QACE,IAAI,EAAE,YAAY;QAClB,KAAK,EAAE,mEAAmE;QAC1E,WAAW,EAAE,qFAAqF;QAClG,KAAK,EAAE,UAAU;KAClB;IACD;QACE,IAAI,EAAE,kBAAkB;QACxB,KAAK,EAAE,qEAAqE;QAC5E,WAAW,EAAE,4FAA4F;QACzG,KAAK,EAAE,UAAU;KAClB;IAED,mBAAmB;IACnB;QACE,IAAI,EAAE,MAAM;QACZ,KAAK,EAAE,uEAAuE;QAC9E,WAAW,EAAE,yFAAyF;QACtG,KAAK,EAAE,UAAU;KAClB;IACD;QACE,IAAI,EAAE,mBAAmB;QACzB,KAAK,EAAE,0EAA0E;QACjF,WAAW,EAAE,4FAA4F;QACzG,KAAK,EAAE,UAAU;KAClB;IACD;QACE,IAAI,EAAE,mBAAmB;QACzB,KAAK,EAAE,uDAAuD;QAC9D,WAAW,EAAE,+EAA+E;QAC5F,KAAK,EAAE,UAAU;KAClB;IACD;QACE,IAAI,EAAE,WAAW;QACjB,KAAK,EAAE,yFAAyF;QAChG,WAAW,EAAE,0DAA0D;QACvE,KAAK,EAAE,WAAW;KACnB;IACD;QACE,IAAI,EAAE,MAAM;QACZ,KAAK,EAAE,2EAA2E;QAClF,WAAW,EAAE,2FAA2F;QACxG,KAAK,EAAE,WAAW;KACnB;IACD;QACE,IAAI,EAAE,SAAS;QACf,KAAK,EAAE,mFAAmF;QAC1F,WAAW,EAAE,+GAA+G;QAC5H,KAAK,EAAE,WAAW;QAClB,MAAM,EAAE,OAAO;KAChB;IAED,iBAAiB;IACjB;QACE,IAAI,EAAE,OAAO;QACb,KAAK,EAAE,yEAAyE;QAChF,WAAW,EAAE,iEAAiE;QAC9E,KAAK,EAAE,QAAQ;KAChB;IACD;QACE,IAAI,EAAE,UAAU;QAChB,KAAK,EAAE,8FAA8F;QACrG,WAAW,EAAE,uFAAuF;QACpG,KAAK,EAAE,QAAQ;KAChB;IACD;QACE,IAAI,EAAE,OAAO;QACb,KAAK,EAAE,+DAA+D;QACtE,WAAW,EAAE,6IAA6I;QAC1J,KAAK,EAAE,QAAQ;KAChB;IACD;QACE,IAAI,EAAE,OAAO;QACb,KAAK,EAAE,8FAA8F;QACrG,WAAW,EAAE,8GAA8G;QAC3H,KAAK,EAAE,QAAQ;KAChB;IACD;QACE,IAAI,EAAE,KAAK;QACX,KAAK,EAAE,2EAA2E;QAClF,WAAW,EAAE,oFAAoF;QACjG,KAAK,EAAE,QAAQ;KAChB;IAED,cAAc;IACd;QACE,IAAI,EAAE,OAAO;QACb,KAAK,EAAE,kIAAkI;QACzI,WAAW,EAAE,yLAAyL;QACtM,KAAK,EAAE,KAAK;QACZ,MAAM,EAAE,OAAO;KAChB;IACD;QACE,IAAI,EAAE,SAAS;QACf,KAAK,EAAE,+EAA+E;QACtF,WAAW,EAAE,qHAAqH;QAClI,KAAK,EAAE,KAAK;QACZ,MAAM,EAAE,YAAY;KACrB;IACD;QACE,IAAI,EAAE,SAAS;QACf,KAAK,EAAE,oFAAoF;QAC3F,WAAW,EAAE,sGAAsG;QACnH,KAAK,EAAE,KAAK;KACb;IACD;QACE,IAAI,EAAE,UAAU;QAChB,KAAK,EAAE,gFAAgF;QACvF,WAAW,EAAE,6FAA6F;QAC1G,KAAK,EAAE,KAAK;KACb;IACD;QACE,IAAI,EAAE,UAAU;QAChB,KAAK,EAAE,sCAAsC;QAC7C,WAAW,EAAE,gFAAgF;QAC7F,KAAK,EAAE,KAAK;KACb;IACD;QACE,IAAI,EAAE,MAAM;QACZ,KAAK,EAAE,iEAAiE;QACxE,WAAW,EAAE,4GAA4G;QACzH,KAAK,EAAE,KAAK;KACb;IAED,2EAA2E;IAC3E;QACE,IAAI,EAAE,gBAAgB;QACtB,KAAK,EAAE,sDAAsD;QAC7D,WAAW,EAAE,mFAAmF;QAChG,KAAK,EAAE,UAAU;KAClB;IACD;QACE,IAAI,EAAE,iBAAiB;QACvB,KAAK,EAAE,uDAAuD;QAC9D,WAAW,EAAE,mDAAmD;QAChE,KAAK,EAAE,UAAU;KAClB;IACD;QACE,IAAI,EAAE,gBAAgB;QACtB,KAAK,EAAE,sDAAsD;QAC7D,WAAW,EAAE,wGAAwG;QACrH,KAAK,EAAE,UAAU;KAClB;IACD;QACE,IAAI,EAAE,oBAAoB;QAC1B,KAAK,EAAE,0DAA0D;QACjE,WAAW,EAAE,sEAAsE;QACnF,KAAK,EAAE,UAAU;KAClB;IAED,mBAAmB;IACnB;QACE,IAAI,EAAE,aAAa;QACnB,KAAK,EAAE,sDAAsD;QAC7D,WAAW,EAAE,4DAA4D;QACzE,KAAK,EAAE,cAAc;QACrB,MAAM,EAAE,OAAO;KAChB;IACD;QACE,IAAI,EAAE,MAAM;QACZ,KAAK,EAAE,mDAAmD;QAC1D,WAAW,EAAE,2EAA2E;QACxF,KAAK,EAAE,cAAc;QACrB,MAAM,EAAE,OAAO;KAChB;IAED,8BAA8B;IAC9B;QACE,IAAI,EAAE,SAAS;QACf,KAAK,EAAE,uDAAuD;QAC9D,WAAW,EAAE,oGAAoG;QACjH,KAAK,EAAE,WAAW;KACnB;IACD;QACE,IAAI,EAAE,SAAS;QACf,KAAK,EAAE,6CAA6C;QACpD,WAAW,EAAE,oEAAoE;QACjF,KAAK,EAAE,UAAU;KAClB;IACD;QACE,IAAI,EAAE,UAAU;QAChB,KAAK,EAAE,mDAAmD;QAC1D,WAAW,EAAE,gFAAgF;QAC7F,KAAK,EAAE,cAAc;KACtB;IACD;QACE,IAAI,EAAE,SAAS;QACf,KAAK,EAAE,iCAAiC;QACxC,WAAW,EAAE,sGAAsG;QACnH,KAAK,EAAE,cAAc;KACtB;IACD;QACE,IAAI,EAAE,QAAQ;QACd,KAAK,EAAE,qGAAqG;QAC5G,WAAW,EAAE,uDAAuD;QACpE,KAAK,EAAE,UAAU;KAClB;IACD;QACE,IAAI,EAAE,OAAO;QACb,KAAK,EAAE,wFAAwF;QAC/F,WAAW,EAAE,sGAAsG;QACnH,KAAK,EAAE,UAAU;KAClB;IACD;QACE,IAAI,EAAE,UAAU;QAChB,KAAK,EAAE,6DAA6D;QACpE,WAAW,EAAE,qDAAqD;QAClE,KAAK,EAAE,QAAQ;KAChB;IACD;QACE,IAAI,EAAE,MAAM;QACZ,KAAK,EAAE,yEAAyE;QAChF,WAAW,EAAE,sDAAsD;QACnE,KAAK,EAAE,QAAQ;KAChB;IACD;QACE,IAAI,EAAE,MAAM;QACZ,KAAK,EAAE,8BAA8B;QACrC,WAAW,EAAE,yBAAyB;QACtC,KAAK,EAAE,UAAU;KAClB;IAED,2BAA2B;IAC3B,EAAE,IAAI,EAAE,SAAS,EAAE,KAAK,EAAE,kBAAkB,EAAE,WAAW,EAAE,wBAAwB,EAAE,KAAK,EAAE,UAAU,EAAE,MAAM,EAAE,IAAI,EAAE;IACtH,EAAE,IAAI,EAAE,MAAM,EAAK,KAAK,EAAE,2BAA2B,EAAE,WAAW,EAAE,wCAAwC,EAAE,KAAK,EAAE,UAAU,EAAE,MAAM,EAAE,IAAI,EAAE;CAChJ,CAAC;AAEF,MAAM,mBAAmB,GAA8B,CAAC,GAAG,EAAE;IAC3D,MAAM,CAAC,GAAG,IAAI,GAAG,EAAwB,CAAC;IAC1C,KAAK,MAAM,GAAG,IAAI,QAAQ,EAAE,CAAC;QAC3B,CAAC,CAAC,GAAG,CAAC,GAAG,CAAC,IAAI,EAAE,GAAG,CAAC,CAAC;QACrB,KAAK,MAAM,KAAK,IAAI,GAAG,CAAC,OAAO,IAAI,EAAE;YAAE,CAAC,CAAC,GAAG,CAAC,KAAK,EAAE,GAAG,CAAC,CAAC;IAC3D,CAAC;IACD,OAAO,CAAC,CAAC;AACX,CAAC,CAAC,EAAE,CAAC;AAEL,MAAM,UAAU,WAAW,CAAC,WAAmB;IAC7C,OAAO,mBAAmB,CAAC,GAAG,CAAC,WAAW,CAAC,CAAC;AAC9C,CAAC;AAED,MAAM,UAAU,eAAe;IAC7B,OAAO,QAAQ,CAAC,MAAM,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC;AAC3C,CAAC"}
|
package/dist/help.d.ts
ADDED
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* `packages/cli/src/help.ts` — render the command manifest into the
|
|
3
|
+
* two surfaces consumers see:
|
|
4
|
+
*
|
|
5
|
+
* 1. `slowcook help` — plain-text terminal output (what `cli.ts` emits)
|
|
6
|
+
* 2. README catalog block — markdown spliced into packages/cli/README.md
|
|
7
|
+
*
|
|
8
|
+
* Both come from `COMMANDS` in `./commands.manifest.ts`. Adding a
|
|
9
|
+
* command in one place updates both surfaces.
|
|
10
|
+
*/
|
|
11
|
+
/**
|
|
12
|
+
* Plain-text help block for `slowcook help`.
|
|
13
|
+
*
|
|
14
|
+
* Format (preserves the existing 0.19 shape — backward compat with any
|
|
15
|
+
* tool that greps `slowcook help` output):
|
|
16
|
+
*
|
|
17
|
+
* slowcook — TDD-first agentic development harness
|
|
18
|
+
*
|
|
19
|
+
* Usage:
|
|
20
|
+
* <usage lines>
|
|
21
|
+
*
|
|
22
|
+
* Commands available in <version>:
|
|
23
|
+
* <name> <description>
|
|
24
|
+
*
|
|
25
|
+
* Docs: https://github.com/aminazar/slowcook
|
|
26
|
+
*/
|
|
27
|
+
export declare function renderHelp(version: string): string;
|
|
28
|
+
/**
|
|
29
|
+
* Per-command help (shown by `slowcook help <cmd>` or future
|
|
30
|
+
* standardized `slowcook <cmd> --help` shims). Returns `undefined`
|
|
31
|
+
* if the name is unknown so the caller can decide on the fallback.
|
|
32
|
+
*/
|
|
33
|
+
export declare function renderCommandHelp(nameOrAlias: string): string | undefined;
|
|
34
|
+
/**
|
|
35
|
+
* Markdown catalog block spliced into packages/cli/README.md between
|
|
36
|
+
* `<!-- COMMANDS BLOCK BEGIN -->` and `<!-- COMMANDS BLOCK END -->` by
|
|
37
|
+
* `scripts/sync-readme-help.sh`.
|
|
38
|
+
*
|
|
39
|
+
* Grouped by `CommandGroup`; one bullet per command with name + usage
|
|
40
|
+
* + description. Hidden commands (version, help) excluded.
|
|
41
|
+
*/
|
|
42
|
+
export declare function renderReadmeBlock(): string;
|
|
43
|
+
//# sourceMappingURL=help.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"help.d.ts","sourceRoot":"","sources":["../src/help.ts"],"names":[],"mappings":"AAAA;;;;;;;;;GASG;AA0CH;;;;;;;;;;;;;;;GAeG;AACH,wBAAgB,UAAU,CAAC,OAAO,EAAE,MAAM,GAAG,MAAM,CAuBlD;AAED;;;;GAIG;AACH,wBAAgB,iBAAiB,CAAC,WAAW,EAAE,MAAM,GAAG,MAAM,GAAG,SAAS,CAczE;AAED;;;;;;;GAOG;AACH,wBAAgB,iBAAiB,IAAI,MAAM,CAgB1C"}
|
package/dist/help.js
ADDED
|
@@ -0,0 +1,131 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* `packages/cli/src/help.ts` — render the command manifest into the
|
|
3
|
+
* two surfaces consumers see:
|
|
4
|
+
*
|
|
5
|
+
* 1. `slowcook help` — plain-text terminal output (what `cli.ts` emits)
|
|
6
|
+
* 2. README catalog block — markdown spliced into packages/cli/README.md
|
|
7
|
+
*
|
|
8
|
+
* Both come from `COMMANDS` in `./commands.manifest.ts`. Adding a
|
|
9
|
+
* command in one place updates both surfaces.
|
|
10
|
+
*/
|
|
11
|
+
import { visibleCommands, findCommand } from "./commands.manifest.js";
|
|
12
|
+
const GROUP_ORDER = [
|
|
13
|
+
"pipeline",
|
|
14
|
+
"checks",
|
|
15
|
+
"plumbing",
|
|
16
|
+
"knowledge",
|
|
17
|
+
"ops",
|
|
18
|
+
"experimental",
|
|
19
|
+
];
|
|
20
|
+
const GROUP_LABELS = {
|
|
21
|
+
pipeline: "Pipeline (agent-driven)",
|
|
22
|
+
checks: "Checks + guards",
|
|
23
|
+
plumbing: "Setup + lifecycle plumbing",
|
|
24
|
+
knowledge: "Knowledge + accounting",
|
|
25
|
+
ops: "Ops (preview, dev-env, etc.)",
|
|
26
|
+
experimental: "Experimental",
|
|
27
|
+
};
|
|
28
|
+
function statusBadge(status) {
|
|
29
|
+
switch (status) {
|
|
30
|
+
case "alpha": return " [alpha]";
|
|
31
|
+
case "experimental": return " [experimental]";
|
|
32
|
+
case "deprecated": return " [DEPRECATED]";
|
|
33
|
+
case "stable":
|
|
34
|
+
case undefined:
|
|
35
|
+
default: return "";
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
function groupBy(cmds) {
|
|
39
|
+
const out = {
|
|
40
|
+
pipeline: [], checks: [], plumbing: [], knowledge: [], ops: [], experimental: [],
|
|
41
|
+
};
|
|
42
|
+
for (const c of cmds)
|
|
43
|
+
out[c.group].push(c);
|
|
44
|
+
return out;
|
|
45
|
+
}
|
|
46
|
+
/**
|
|
47
|
+
* Plain-text help block for `slowcook help`.
|
|
48
|
+
*
|
|
49
|
+
* Format (preserves the existing 0.19 shape — backward compat with any
|
|
50
|
+
* tool that greps `slowcook help` output):
|
|
51
|
+
*
|
|
52
|
+
* slowcook — TDD-first agentic development harness
|
|
53
|
+
*
|
|
54
|
+
* Usage:
|
|
55
|
+
* <usage lines>
|
|
56
|
+
*
|
|
57
|
+
* Commands available in <version>:
|
|
58
|
+
* <name> <description>
|
|
59
|
+
*
|
|
60
|
+
* Docs: https://github.com/aminazar/slowcook
|
|
61
|
+
*/
|
|
62
|
+
export function renderHelp(version) {
|
|
63
|
+
const cmds = visibleCommands();
|
|
64
|
+
const usageLines = cmds.map((c) => ` ${c.usage}`).join("\n");
|
|
65
|
+
// Description block: align names in a column. Longest visible name width.
|
|
66
|
+
const nameWidth = Math.max(...cmds.map((c) => c.name.length)) + 2;
|
|
67
|
+
const descLines = cmds
|
|
68
|
+
.map((c) => ` ${c.name.padEnd(nameWidth)}${c.description}${statusBadge(c.status)}`)
|
|
69
|
+
.join("\n");
|
|
70
|
+
return `
|
|
71
|
+
slowcook — TDD-first agentic development harness
|
|
72
|
+
|
|
73
|
+
Usage:
|
|
74
|
+
${usageLines}
|
|
75
|
+
|
|
76
|
+
Commands available in ${version}:
|
|
77
|
+
${descLines}
|
|
78
|
+
|
|
79
|
+
For per-command details: slowcook help <command> or slowcook <command> --help
|
|
80
|
+
|
|
81
|
+
Docs: https://github.com/aminazar/slowcook
|
|
82
|
+
`;
|
|
83
|
+
}
|
|
84
|
+
/**
|
|
85
|
+
* Per-command help (shown by `slowcook help <cmd>` or future
|
|
86
|
+
* standardized `slowcook <cmd> --help` shims). Returns `undefined`
|
|
87
|
+
* if the name is unknown so the caller can decide on the fallback.
|
|
88
|
+
*/
|
|
89
|
+
export function renderCommandHelp(nameOrAlias) {
|
|
90
|
+
const cmd = findCommand(nameOrAlias);
|
|
91
|
+
if (!cmd)
|
|
92
|
+
return undefined;
|
|
93
|
+
const aliases = cmd.aliases?.length ? `\nAliases: ${cmd.aliases.join(", ")}` : "";
|
|
94
|
+
return `
|
|
95
|
+
slowcook ${cmd.name}${statusBadge(cmd.status)}
|
|
96
|
+
|
|
97
|
+
${cmd.description}
|
|
98
|
+
|
|
99
|
+
Usage:
|
|
100
|
+
${cmd.usage}${aliases}
|
|
101
|
+
|
|
102
|
+
Group: ${GROUP_LABELS[cmd.group]}
|
|
103
|
+
`;
|
|
104
|
+
}
|
|
105
|
+
/**
|
|
106
|
+
* Markdown catalog block spliced into packages/cli/README.md between
|
|
107
|
+
* `<!-- COMMANDS BLOCK BEGIN -->` and `<!-- COMMANDS BLOCK END -->` by
|
|
108
|
+
* `scripts/sync-readme-help.sh`.
|
|
109
|
+
*
|
|
110
|
+
* Grouped by `CommandGroup`; one bullet per command with name + usage
|
|
111
|
+
* + description. Hidden commands (version, help) excluded.
|
|
112
|
+
*/
|
|
113
|
+
export function renderReadmeBlock() {
|
|
114
|
+
const grouped = groupBy(visibleCommands());
|
|
115
|
+
const sections = [];
|
|
116
|
+
for (const g of GROUP_ORDER) {
|
|
117
|
+
const entries = grouped[g];
|
|
118
|
+
if (entries.length === 0)
|
|
119
|
+
continue;
|
|
120
|
+
sections.push(`### ${GROUP_LABELS[g]}\n`);
|
|
121
|
+
for (const c of entries) {
|
|
122
|
+
sections.push(`- **\`${c.name}\`**${statusBadge(c.status)} — ${c.description}`);
|
|
123
|
+
sections.push(` \`\`\``);
|
|
124
|
+
sections.push(` ${c.usage}`);
|
|
125
|
+
sections.push(` \`\`\``);
|
|
126
|
+
}
|
|
127
|
+
sections.push("");
|
|
128
|
+
}
|
|
129
|
+
return sections.join("\n");
|
|
130
|
+
}
|
|
131
|
+
//# sourceMappingURL=help.js.map
|
package/dist/help.js.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"help.js","sourceRoot":"","sources":["../src/help.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@slowcook-ai/cli",
|
|
3
|
-
"version": "0.19.
|
|
3
|
+
"version": "0.19.6",
|
|
4
4
|
"description": "CLI for the slowcook brewing harness",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "aminazar",
|
|
@@ -43,9 +43,9 @@
|
|
|
43
43
|
"@slowcook-ai/core": "^0.14.0",
|
|
44
44
|
"@slowcook-ai/stack-ts": "^0.9.9",
|
|
45
45
|
"@slowcook-ai/forge-github": "^0.12.3",
|
|
46
|
+
"@slowcook-ai/recorder": "^0.9.1",
|
|
46
47
|
"@slowcook-ai/llm-anthropic": "^0.16.3",
|
|
47
|
-
"@slowcook-ai/review-overlay": "^0.5.5"
|
|
48
|
-
"@slowcook-ai/recorder": "^0.9.1"
|
|
48
|
+
"@slowcook-ai/review-overlay": "^0.5.5"
|
|
49
49
|
},
|
|
50
50
|
"devDependencies": {
|
|
51
51
|
"@types/node": "^25.9.1"
|