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
49 lines • 1.48 kB
TypeScript
/**
* Code Quality Integration Handler
* Implements file change detection, visual validation, and refactoring safety net
* Based on user feedback for systematic development cycle enhancement
*/
import { Tool } from '@modelcontextprotocol/sdk/types.js';
import { ToolHandler } from './base-handler.js';
export declare class CodeQualityIntegrationHandler implements ToolHandler {
tools: Tool[];
private fileChangeMonitor;
private visualValidationEngine;
private refactoringSafetyNet;
constructor();
handle(toolName: string, args: any, sessions: Map<string, any>): Promise<any>;
/**
* Start monitoring file changes with automatic screenshot capture
*/
private startFileChangeMonitoring;
/**
* Stop file change monitoring and generate report
*/
private stopFileChangeMonitoring;
/**
* Capture baseline before refactoring
*/
private captureRefactoringBaseline;
/**
* Validate changes after refactoring
*/
private validateAfterRefactoring;
/**
* Setup visual test integration
*/
private setupVisualTestIntegration;
/**
* Analyze UI stability
*/
private analyzeUIStability;
/**
* Set code quality gates
*/
private setCodeQualityGates;
/**
* Get change impact analysis
*/
private getChangeImpactAnalysis;
}
export default CodeQualityIntegrationHandler;
//# sourceMappingURL=code-quality-integration-handler.d.ts.map