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

19 lines • 673 B
/** * Real Implementation Bridge * * This provides actual working implementations for key tools while maintaining * the stateless architecture benefits. Uses original logic with v2 wrappers. */ import { Tool, Handler } from './complete-tool-registry.js'; export declare class RealImplementationHandler implements Handler { name: string; tools: Tool[]; canHandle(toolName: string): boolean; execute(toolName: string, params: any, context: any): Promise<any>; private injectDebugging; private takeScreenshot; private runAudit; private getDebugReport; private monitorRealtime; } //# sourceMappingURL=real-implementation-bridge.d.ts.map