#!/usr/bin/env node /** * `chaosbringer recipes ` — operator-grade CLI for the recipe * layer (issue #94). Pattern matches `cli.ts`'s existing subcommand * convention: one entry function per sub, parsed by `parseArgs`. * * Supported subs (V1): * list — print recipes in the store * show — print one recipe (current or @version) * history — list a recipe's archived versions * promote — flip status to "verified" * demote — flip status to "demoted" * delete — remove a recipe from the store * prune — trim a recipe's history * rollback — restore a historical version * harvest — read window.__chaosbringer from a URL, upsert results * * Verify / repair / load-from-store are wired but require a live * server / API key so the CLI just forwards options to the * programmatic API. */ export declare function runRecipesCli(argv: string[]): Promise; //# sourceMappingURL=cli.d.ts.map