UNPKG

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

33 lines • 967 B
/** * Debug Orchestrator - Real Implementation * High-level debugging coordination with actual sub-agent execution */ import { OrchestratorResult } from '../types/orchestrator-types.js'; export interface DebugTask { task?: string; description?: string; url?: string; errorMessage?: string; symptoms?: string[]; context?: any; handler?: any; } export declare class DebugOrchestrator { name: string; description: string; private subAgentExecutor?; private subAgents; orchestrate(task: DebugTask): Promise<OrchestratorResult>; private analyzeTask; private createExecutionPlan; private executePlan; private executePlanFallback; private synthesizeResults; private createSummary; private determineNextSteps; private calculateConfidence; private prioritizeSuggestions; private getSuggestionPriority; private estimateEffort; } //# sourceMappingURL=debug-orchestrator-real.d.ts.map