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
27 lines • 818 B
TypeScript
/**
* Debug Orchestrator - High-level debugging coordination
*
* This is the main entry point for all debugging tasks.
* It analyzes the user's request and delegates to appropriate sub-agents.
*/
import { OrchestratorResult } from '../types/orchestrator-types.js';
export interface DebugTask {
task?: string;
description?: string;
url?: string;
errorMessage?: string;
symptoms?: string[];
context?: any;
}
export declare class DebugOrchestrator {
private subAgents;
orchestrate(task: DebugTask): Promise<OrchestratorResult>;
private analyzeTask;
private createExecutionPlan;
private executePlan;
private synthesizeResults;
private createSummary;
private determineNextSteps;
private calculateConfidence;
}
//# sourceMappingURL=debug-orchestrator.d.ts.map