/** * run 命令 - runtime 兼容入口 * CLI 仅负责参数解析和结果渲染,真正执行交给 core/runtime。 */ import { Command } from 'commander'; export interface RunOptions { dryRun?: boolean; limit?: number; phase?: string; worker?: string; auto?: boolean; superpowers?: boolean; execution?: 'subagent' | 'inline'; session?: string; } export declare function createRunCommand(): Command; export declare function runCommand(options: RunOptions, basePath?: string): Promise; export declare function createDeliverablesCommand(basePath?: string): Command; //# sourceMappingURL=run.d.ts.map