/** * `slowcook sift --bug B-N` — bug-flow brew analogue. * * Reads a bug-profile + the regression test, runs an LLM ratchet to * make the regression go green, halts when: * - regression test passes (green = success) * - budget cap hit * - max iterations hit * - agent halts voluntarily * * Usage: * slowcook sift --bug B-1 [--cwd ] [--model ] * [--max-iterations ] [--budget-usd ] * [--dry-run] */ export declare function sift(argv: string[], cliVersion: string): Promise; /** * Find the regression test file for a bug. Looks for * `tests/regression/B-N-.test.ts` (matching what * recipe --regression emits). */ export declare function findRegressionTestForBug(repoRoot: string, bugId: string): string | null; //# sourceMappingURL=index.d.ts.map