export declare function generatePlanName(description: string, date?: Date): Promise; /** * Write plan content to PLAN.md file in the plans directory * @param planName - Name of the plan (e.g., "2025_10_06_customer_order_processing") * @param content - Plan content to write * @param projectRoot - Root directory of the project * @returns Full path to the created PLAN.md file */ export declare function writePlanFile(planName: string, content: string, projectRoot: string): Promise; /** * Update agent templates by reinitializing with force flag * This recreates all agent configuration files, overwriting existing ones * @param projectRoot - Root directory of the project */ export declare function updateAgentTemplates(projectRoot: string): Promise;