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

29 lines • 863 B
/** * Test Orchestrator - Testing and validation workflows * * Coordinates test generation, execution, coverage analysis, and regression detection */ import { OrchestratorResult } from '../types/orchestrator-types.js'; export interface TestTask { task?: string; description?: string; scope?: 'unit' | 'integration' | 'e2e' | 'all'; target?: string; coverage?: { minimum?: number; branches?: boolean; }; } export declare class TestOrchestrator { private subAgents; orchestrate(task: TestTask): Promise<OrchestratorResult>; private analyzeTask; private createExecutionPlan; private executePlan; private getMockDataForAction; private synthesizeResults; private createSummary; private generateSuggestions; private determineNextSteps; } //# sourceMappingURL=test-orchestrator.d.ts.map