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
29 lines • 937 B
TypeScript
/**
* Smart Tool Deduplication - Preserve All Unique Tools
*
* This removes duplicate variants while preserving all unique base functionality.
* Fixes the issue where we accidentally consolidated 273 unique tools down to 22.
*/
export interface SmartTool {
name: string;
description: string;
inputSchema: any;
category: string;
contexts?: string[];
projectTypes?: string[];
usageGuidance?: {
whenToUse: string;
whenNotToUse: string;
commonMistakes: string[];
alternatives: string[];
};
}
export declare const SMART_DEDUPLICATED_TOOLS: SmartTool[];
export declare class SmartToolDiscovery {
getAllTools(): SmartTool[];
getToolsByCategory(category: string): SmartTool[];
getToolsForProject(projectType: string): SmartTool[];
getToolsForContext(context: string): SmartTool[];
getToolCount(): number;
}
//# sourceMappingURL=smart-deduplication.d.ts.map