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

26 lines • 1.08 kB
import { Tool } from '@modelcontextprotocol/sdk/types.js'; import { BaseToolHandler } from './base-handler.js'; import { TDDDebugEngine } from '../tdd-debug-engine.js'; /** * TDD Handler - Revolutionary Test-Runtime Bridging with Full-Stack Validation * * Addresses critical AI-Debug tool enforcement gap: * - Backend refactoring + frontend validation combined approach * - Ensures ai-debug MCP tools are used for comprehensive validation * - Visual documentation enforcement during refactoring */ export declare class TDDHandler extends BaseToolHandler { private tddEngine; tools: Tool[]; constructor(tddEngine: TDDDebugEngine); getTools(): Tool[]; handle(toolName: string, args: any, sessions: Map<string, any>): Promise<any>; handleTool(name: string, args: any): Promise<any>; private handleEnableTDDMode; private handleRunTestsWithCoverage; private handleTestImpactAnalysis; private handleRegressionDetection; private handleFullStackTDDWorkflow; private handleCloseTDDSession; } //# sourceMappingURL=tdd-handler.d.ts.map