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
25 lines • 700 B
TypeScript
/**
* Live Svelte Debugger - Specialized tool for Phoenix LiveView + Svelte debugging
*
* Handles the unique challenges of debugging live_svelte components
*/
import { Page } from 'playwright';
export interface LiveSvelteDebugInfo {
liveViewState: any;
svelteComponents: any[];
hooks: any[];
props: any;
events: any[];
consoleErrors: any[];
}
export declare class LiveSvelteDebugger {
private page;
attachToPage(page: Page): Promise<void>;
getDebugInfo(): Promise<LiveSvelteDebugInfo>;
debugLiveSvelteIssue(): Promise<{
issue: string;
details: any;
suggestions: string[];
}>;
}
//# sourceMappingURL=live-svelte-debugger.d.ts.map