/** * Re-export shim + PR-body helpers. * * As of 0.13.1 (llm-agnosticism refactor): the four Anthropic-tuned * system prompts (SPEC_CHECKLIST_MD, RELATIONSHIP_ANALYST_SYSTEM, * REFINEMENT_ANALYST_SYSTEM, AMENDMENT_SYSTEM) live in * `@slowcook-ai/llm-anthropic/prompts/refine`. This file re-exports * them so existing imports keep working AND keeps the PR-body helpers * (`draftPrTitle`, `renderProposalsSection`, `draftPrBody`) which * aren't LLM-specific — they're plain markdown formatters. */ import type { Spec } from "@slowcook-ai/core"; export { SPEC_CHECKLIST_MD, RELATIONSHIP_ANALYST_SYSTEM, REFINEMENT_ANALYST_SYSTEM, AMENDMENT_SYSTEM, } from "@slowcook-ai/llm-anthropic"; /** Trivial, used only as a title for the draft PR. */ export declare function draftPrTitle(storyId: string, title: string): string; /** * Render the spec's `proposals` block as a human-readable markdown * section for the draft-spec PR body (0.11+). Empty when there are no * proposals. Schema proposals get a Mermaid ERD; other categories render * as bullet lists. Each proposal shows its status prominently so a human * reviewer can tell at a glance what still needs attention. */ export declare function renderProposalsSection(spec: Spec): string; export declare function draftPrBody(args: { storyId: string; issueNumber: number; supersedes: string[]; spec?: Spec; }): string; //# sourceMappingURL=prompts.d.ts.map