/** * Prompt templates for the `are plan` command. * * Contains the planning prompt (identical for both environments) and * the evaluator prompt used for `--eval` mode. * * @module */ /** * Build the planning prompt sent to the AI in each worktree. * * Both runs (with-docs and without-docs) receive the identical prompt; * only the environment (available files) differs. * * @param task - The user's task description * @returns The planning prompt string */ export declare function buildPlanningPrompt(task: string): string; /** * Build the evaluator prompt for `--eval` mode. * * Plans are presented in randomized order as "Plan A" / "Plan B" to * prevent position bias. The evaluator does NOT receive ARE docs -- * it judges on engineering merit alone. * * @param task - The original task description * @param planA - First plan text * @param planB - Second plan text * @returns The evaluator prompt string */ export declare function buildEvaluatorPrompt(task: string, planA: string, planB: string): string; //# sourceMappingURL=prompts.d.ts.map