/** * Hydro methodology prompt generators. * * These generate the governance reasoning prompts for the Hydro methodology * (wave-based, 5 Unbreakable Principles). Each function takes a PromptContext * and returns the full prompt text for one of the 7 prompt slots. * * Extracted from index.ts to support methodology-specific prompt dispatch. */ import type { PromptContext } from './prompt-context.js'; import type { PromptGenerators } from './types.js'; /** * Generate principle-specific validation instructions for the compliance audit. * Falls back to generic instructions for principles not recognized by name. */ export declare function getPrincipleValidationInstructions(principleName: string, ctx: PromptContext): string; export declare function generateStandupPrompt(ctx: PromptContext): string; export declare function generatePlanContainerPrompt(ctx: PromptContext): string; export declare function generateBoardPrompt(ctx: PromptContext): string; export declare function generateCompliancePrompt(ctx: PromptContext): string; export declare function generateHealthPrompt(ctx: PromptContext): string; export declare function generateRetroPrompt(ctx: PromptContext): string; export declare function generateReviewPrompt(ctx: PromptContext): string; export declare function generateExecutePrompt(ctx: PromptContext): string; export declare const HYDRO_GENERATORS: PromptGenerators; //# sourceMappingURL=hydro-prompts.d.ts.map