/** * Prompt builders for implementation execution and evaluation. * * Constructs prompts for the agentic AI implementation phase and * the blind quality evaluator. * * @module */ /** * Build the prompt for an agentic AI implementation run. * * Asks the AI to implement a task following the provided plan text, * optionally including test/build/lint requirements. When no plan is * provided, the AI implements from the task description alone. * * @param task - The original task description * @param planText - The plan markdown from `are plan` (omit for plan-less runs) * @param options - Optional quality gates * @returns Prompt string for the Claude CLI */ export declare function buildImplementationPrompt(task: string, planText: string | undefined, options?: { runTests?: boolean; runBuild?: boolean; runLint?: boolean; }): string; /** * Build the prompt for the blind evaluator comparing two implementations. * * Randomization of plan A/B assignment happens in the evaluator module, * not here. This function simply takes the two implementations in order. * * @param task - The original task description * @param implementationA - Implementation log/diff for "Plan A" * @param implementationB - Implementation log/diff for "Plan B" * @returns Prompt string for the evaluator */ export declare function buildEvaluatorPrompt(task: string, implementationA: string, implementationB: string): string; //# sourceMappingURL=prompts.d.ts.map