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 • 933 B
/** * Comprehensive Tool Dependency Mapping * Maps every tool to its required dependencies for lazy loading */ export declare const COMPREHENSIVE_TOOL_DEPENDENCIES: Record<string, string[]>; /** * Dependency modules and their lazy loaders */ export declare const DEPENDENCY_LOADERS: Record<string, () => Promise<any>>; /** * Get all dependencies required for a tool */ export declare function getComprehensiveToolDependencies(toolName: string): string[]; /** * Load all dependencies for a tool */ export declare function loadToolDependencies(toolName: string): Promise<Map<string, any>>; /** * Check if a tool requires any external dependencies */ export declare function requiresExternalDependencies(toolName: string): boolean; /** * Get memory usage estimate for tool dependencies */ export declare function getToolMemoryEstimate(toolName: string): number; //# sourceMappingURL=comprehensive-tool-dependencies.d.ts.map