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

25 lines • 999 B
/** * Flutter Session Stability Handler * Addresses Flutter-specific feedback: accessibility timeouts, quantum debugging prerequisites * Integrates SessionStabilityManager, EnhancedErrorHandler, and ToolDependencyManager */ import { Tool } from '@modelcontextprotocol/sdk/types.js'; import { BaseToolHandler } from './base-handler.js'; export declare class FlutterSessionStabilityHandler extends BaseToolHandler { private sessionManager; private errorHandler; private dependencyManager; constructor(); tools: Tool[]; handle(toolName: string, args: any, sessions?: Map<string, any>): Promise<any>; private getSessionDiagnostics; private validateToolPrerequisites; private getFlutterWorkflowGuidance; private recoverFailedSession; private analyzeFlutterError; private createStableFlutterSession; private setupSessionEventHandlers; private getStatusEmoji; destroy(): void; } //# sourceMappingURL=flutter-session-stability-handler.d.ts.map