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 • 814 B
TypeScript
/**
* Performance Orchestrator - Performance analysis and optimization
*
* Coordinates performance profiling, metrics collection, and optimization suggestions
*/
import { OrchestratorResult } from '../types/orchestrator-types.js';
export interface PerformanceTask {
task?: string;
description?: string;
url?: string;
targets?: {
loadTime?: number;
bundleSize?: number;
memoryUsage?: number;
};
}
export declare class PerformanceOrchestrator {
private subAgents;
orchestrate(task: PerformanceTask): Promise<OrchestratorResult>;
private analyzeTask;
private createExecutionPlan;
private executePlan;
private getMockDataForAction;
private synthesizeResults;
private createSummary;
}
//# sourceMappingURL=performance-orchestrator.d.ts.map