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
28 lines • 933 B
TypeScript
/**
* Clean Tool Discovery - AI-Optimized Tool Definitions
*
* SOLUTIONS IMPLEMENTED:
* 1. ✅ Remove tool duplication - keep only base tools (445 → ~44 unique)
* 2. ✅ Write specific, differentiated descriptions for each tool
* 3. ✅ Add context scoping for project-specific tools
* 4. ✅ Implement AI-discoverable usage guidance metadata
*/
export interface CleanTool {
name: string;
description: string;
inputSchema: any;
contexts?: string[];
projectTypes?: string[];
usageGuidance: {
whenToUse: string;
whenNotToUse: string;
commonMistakes: string[];
alternatives: string[];
};
category: 'core' | 'analysis' | 'framework' | 'testing' | 'specialized';
complexity: 'basic' | 'intermediate' | 'advanced';
prerequisites?: string[];
}
declare const CLEAN_TOOLS: CleanTool[];
export { CLEAN_TOOLS };
//# sourceMappingURL=clean-tool-discovery.d.ts.map