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

28 lines • 912 B
/** * QA Orchestrator - Quality Assurance workflows * * Handles code review, security scanning, compliance checking, and documentation validation */ import { OrchestratorResult } from '../types/orchestrator-types.js'; export interface QATask { task?: string; description?: string; scope?: 'code-review' | 'security' | 'compliance' | 'documentation' | 'full'; target?: string; standards?: string[]; severity?: 'strict' | 'balanced' | 'lenient'; } export declare class QAOrchestrator { private subAgents; orchestrate(task: QATask): Promise<OrchestratorResult>; private analyzeTask; private createExecutionPlan; private executePlan; private getMockDataForAction; private synthesizeResults; private createSummary; private generateSuggestions; private calculateQAScore; private determineNextSteps; } //# sourceMappingURL=qa-orchestrator.d.ts.map