ai-debug-local-mcp
Version:
🎯 ENHANCED AI GUIDANCE v4.1.2: Dramatically improved tool descriptions help AI users choose the right tools instead of 'close enough' options. Ultra-fast keyboard automation (10x speed), universal recording, multi-ecosystem debugging support, and compreh
26 lines • 822 B
TypeScript
/**
* Fix Orchestrator - Automated fixing and code generation
*
* Coordinates automated fixes for bugs, performance issues, and code quality problems
*/
import { OrchestratorResult } from '../types/orchestrator-types.js';
export interface FixTask {
task?: string;
description?: string;
issues?: string[];
autoApply?: boolean;
priority?: 'critical' | 'high' | 'medium' | 'low';
scope?: 'minimal' | 'comprehensive';
}
export declare class FixOrchestrator {
private subAgents;
orchestrate(task: FixTask): Promise<OrchestratorResult>;
private analyzeTask;
private createExecutionPlan;
private executePlan;
private getMockDataForAction;
private synthesizeResults;
private createSummary;
private determineNextSteps;
}
//# sourceMappingURL=fix-orchestrator.d.ts.map