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

25 lines • 830 B
/** * Architecture Orchestrator - Code architecture and quality analysis * * Analyzes code structure, dependencies, patterns, and suggests improvements */ import { OrchestratorResult } from '../types/orchestrator-types.js'; export interface ArchitectureTask { task?: string; description?: string; focus?: 'structure' | 'dependencies' | 'patterns' | 'quality' | 'all'; path?: string; depth?: number; } export declare class ArchitectureOrchestrator { private subAgents; orchestrate(task: ArchitectureTask): Promise<OrchestratorResult>; private analyzeTask; private createExecutionPlan; private executePlan; private getMockDataForAction; private synthesizeResults; private createSummary; private determineNextSteps; } //# sourceMappingURL=architecture-orchestrator.d.ts.map