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

36 lines • 1.29 kB
/** * Enhanced User Experience Handler * Integrates real-world feedback improvements: enhanced error context and intelligent workflows * Based on comprehensive production feedback from genetic analysis project debugging */ import { Tool } from '@modelcontextprotocol/sdk/types.js'; import { ToolHandler } from './base-handler.js'; export declare class EnhancedUserExperienceHandler implements ToolHandler { tools: Tool[]; private errorContextProvider; private workflowSequencer; constructor(); handle(toolName: string, args: any, sessions: Map<string, any>): Promise<any>; /** * Analyze error with enhanced context and provide actionable remediation */ private analyzeErrorWithContext; /** * Suggest intelligent debugging workflow based on context */ private suggestDebuggingWorkflow; /** * Execute complete intelligent debugging workflow */ private executeIntelligentWorkflow; /** * Provide session recovery guidance */ private getSessionRecoveryGuidance; /** * Auto-detect framework and suggest debugging approach */ private detectFrameworkAndSuggestApproach; } export default EnhancedUserExperienceHandler; //# sourceMappingURL=enhanced-user-experience-handler.d.ts.map