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

16 lines • 969 B
/** * Python backend debugging formatter utilities * Provides consistent formatting for Python debugging output */ export declare function formatKeyValue(key: string, value: string | number): string; export declare function formatSection(title: string, items: string[]): string[]; export declare function formatList(items: string[]): string[]; export declare function formatRecommendations(recommendations: string[]): string[]; export declare function formatTestResults(results: any): string[]; export declare function formatPythonError(error: any): string[]; export declare function formatPydanticValidation(validation: any): string[]; export declare function formatDatabaseSchema(schema: any): string[]; export declare function formatApiEndpoint(endpoint: any): string[]; export declare function formatCodeAnalysis(analysis: any): string[]; export declare function formatDependencyAnalysis(deps: any): string[]; //# sourceMappingURL=python-formatter-utils.d.ts.map