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

50 lines • 1.64 kB
/** * Debugging Intelligence Handler * Provides AI-guided debugging workflows and intelligent tool orchestration * * Core Features: * - Smart session orchestration with auto-detection * - Contextual debugging suggestions based on findings * - Workflow template creation and management * - Quality gates validation and enforcement */ import { Tool } from '@modelcontextprotocol/sdk/types.js'; import { ToolHandler } from './base-handler.js'; export declare class DebuggingIntelligenceHandler implements ToolHandler { tools: Tool[]; private workflowTemplates; constructor(); handle(toolName: string, args: any, sessions: Map<string, any>): Promise<any>; /** * Start an intelligent debugging session with framework detection and workflow suggestions */ private startSmartDebuggingSession; /** * Provide intelligent next step suggestions based on current findings */ private getDebuggingSuggestions; /** * Create a custom debugging workflow template */ private createDebuggingWorkflow; /** * Validate debugging session against quality gates */ private validateDebuggingSession; /** * Initialize default workflow templates */ private initializeDefaultWorkflows; /** * Helper methods for intelligence features */ private detectFramework; private analyzeProblemType; private getWorkflowForContext; private formatFrameworkName; private analyzeFindings; private calculateConfidence; private isValidTool; private getToolPurpose; } //# sourceMappingURL=debugging-intelligence-handler.d.ts.map