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

35 lines • 1.1 kB
import { Page } from 'playwright'; import { MetaFrameworkDataCollection } from './meta-framework-data-collection.js'; /** * Analysis Module * Handles analysis and auditing of meta-framework performance and patterns */ export declare class MetaFrameworkAnalysis { private dataCollection; constructor(dataCollection: MetaFrameworkDataCollection); /** * Analyze Remix loader performance and patterns */ analyzeRemixLoaders(page: Page): Promise<any>; /** * Audit Astro island hydration patterns */ auditAstroIslands(page: Page): Promise<any>; /** * Analyze Nuxt payload and performance */ analyzeNuxtPayload(page: Page): Promise<any>; /** * Check Qwik resumability performance */ checkQwikResumability(page: Page): Promise<any>; /** * Monitor Vite HMR performance */ monitorViteHMR(page: Page): Promise<any>; /** * General framework performance analysis */ analyzeFrameworkPerformance(page: Page, framework: string): Promise<any>; } //# sourceMappingURL=meta-framework-analysis.d.ts.map