/** * doctor 命令 — 项目健康检查 * * 检查 SpecPow 安装状态、配置正确性、依赖完整性 */ export interface DoctorCheck { name: string; status: 'ok' | 'warn' | 'error'; message: string; fix?: string; } /** * 执行项目健康检查 */ export declare function runDoctor(projectRoot: string): Promise; /** * CLI 入口:诊断 */ export declare function diagnose(): Promise; //# sourceMappingURL=doctor.d.ts.map