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
34 lines • 1.14 kB
TypeScript
/**
* Enhanced Tool Examples
* Shows how existing ai-debug tools can be upgraded with rich metadata
*/
import { EnhancedTool } from '../types/enhanced-tool-metadata';
/**
* Example: Enhanced inject_debugging tool with rich metadata
*/
export declare const enhancedInjectDebugging: EnhancedTool;
/**
* Example: Enhanced take_screenshot tool with background monitoring capability
*/
export declare const enhancedTakeScreenshot: EnhancedTool;
/**
* Example: Enhanced run_audit tool with comprehensive metadata
*/
export declare const enhancedRunAudit: EnhancedTool;
/**
* Example: Enhanced simulate_user_action tool with smart interaction patterns
*/
export declare const enhancedSimulateUserAction: EnhancedTool;
/**
* Collection of enhanced tool examples
*/
export declare const enhancedToolExamples: EnhancedTool[];
/**
* Utility function to convert existing tools to enhanced format
*/
export declare function enhanceExistingTool(existingTool: {
name: string;
description: string;
inputSchema: any;
}, metadata: Partial<EnhancedTool['metadata']>): EnhancedTool;
//# sourceMappingURL=enhanced-tool-examples.d.ts.map