/** * execute 命令 — 直接执行任务(跳过规范流程) * * 用于快速执行单个任务,不经过完整的 propose → apply 流程 * 适用于:紧急修复、小改动、实验性修改 */ export interface ExecuteOptions { task: string; files?: string[]; model?: string; dryRun?: boolean; } /** * 直接执行任务 */ export declare function executeTask(projectRoot: string, options: ExecuteOptions): Promise; /** * CLI 入口:执行 SDD */ export declare function executeSDD(planFile: string, options: { model?: string; maxFixRounds?: string; parallel?: boolean; }): Promise; //# sourceMappingURL=execute.d.ts.map