/** * `packages/cli/src/help.ts` — render the command manifest into the * two surfaces consumers see: * * 1. `slowcook help` — plain-text terminal output (what `cli.ts` emits) * 2. README catalog block — markdown spliced into packages/cli/README.md * * Both come from `COMMANDS` in `./commands.manifest.ts`. Adding a * command in one place updates both surfaces. */ /** * Plain-text help block for `slowcook help`. * * Format (preserves the existing 0.19 shape — backward compat with any * tool that greps `slowcook help` output): * * slowcook — TDD-first agentic development harness * * Usage: * * * Commands available in : * * * Docs: https://github.com/aminazar/slowcook */ export declare function renderHelp(version: string): string; /** * Per-command help (shown by `slowcook help ` or future * standardized `slowcook --help` shims). Returns `undefined` * if the name is unknown so the caller can decide on the fallback. */ export declare function renderCommandHelp(nameOrAlias: string): string | undefined; /** * Markdown catalog block spliced into packages/cli/README.md between * `` and `` by * `scripts/sync-readme-help.sh`. * * Grouped by `CommandGroup`; one bullet per command with name + usage * + description. Hidden commands (version, help) excluded. */ export declare function renderReadmeBlock(): string; //# sourceMappingURL=help.d.ts.map