/** * System prompt for the test-gen agent (Phase B2, as of 0.7.0). * * Turns a frozen spec YAML into a **bundle**: one tier-1 integration test * file plus any missing route stubs (so vitest can collect the tests) and * any missing mock helpers (so the tests have intent-level fakes to call). * Output is multi-artifact via XML-tagged blocks; slowcook parses each * block, writes the files, and skips anything that already exists. * * Before B2, consumers had to hand-author stubs + helpers (the story-N * manual intervention on item). B2 automates both so an issue can flow * refine → spec → testgen → brew with zero human touchpoints between * "merge tests PR" and "review implementation PR." */ export declare const TESTGEN_SYSTEM: (projectContext: string) => string; //# sourceMappingURL=testgen.d.ts.map