pm-orchestrator-enhancement
Version:
PM Orchestrator Enhancement - Multi-agent parallel execution system
24 lines • 738 B
TypeScript
export interface SelfCheckResult {
success: boolean;
mode: 'team' | 'personal' | 'unknown';
checks: {
claudeDir: boolean;
settingsJson: boolean;
claudeMd: boolean;
agentFile: boolean;
commandFile: boolean;
hookScript: boolean;
hookSyntax: boolean;
hookOutput: boolean;
rulesFile: boolean;
};
errors: string[];
warnings: string[];
repaired: string[];
}
export interface SelfCheckOptions {
autoRepair?: boolean;
}
export declare function runSelfCheck(targetDir?: string, options?: SelfCheckOptions): Promise<SelfCheckResult>;
export declare function formatResult(result: SelfCheckResult): string;
//# sourceMappingURL=selfCheck.d.ts.map