/** * `are plan` CLI command handler. * * Orchestrates the full plan comparison workflow: * 1. Create worktree pair from current HEAD * 2. Strip artifacts from "without-docs" worktree * 3. Run AI planner in each worktree (without-docs first) * 4. Save results and render comparison * 5. Optionally run AI evaluator (--eval) * * @module */ import type { PlanOptions } from '../plan/types.js'; /** * Execute the `are plan` command. * * @param task - The task description to plan (or empty if using --list/--show) * @param targetPath - Project root directory * @param options - Command options */ export declare function planCommand(task: string, targetPath: string, options: PlanOptions): Promise; //# sourceMappingURL=plan.d.ts.map