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
51 lines • 1.52 kB
TypeScript
import { Page } from 'playwright';
import { MetaFrameworkDataCollection } from './meta-framework-data-collection.js';
import { MetaFrameworkAnalysis } from './meta-framework-analysis.js';
export interface FrameworkProblem {
problem: string;
severity: 'low' | 'medium' | 'high';
description: string;
solution: string;
}
/**
* Problem Detection Module
* Identifies common issues and anti-patterns in meta-frameworks
*/
export declare class MetaFrameworkProblemDetection {
private dataCollection;
private analysis;
constructor(dataCollection: MetaFrameworkDataCollection, analysis: MetaFrameworkAnalysis);
/**
* Detect framework-specific problems and issues
*/
detectMetaFrameworkProblems(page: Page, framework: string | null): Promise<FrameworkProblem[]>;
/**
* Detect Remix-specific problems
*/
private detectRemixProblems;
/**
* Detect Astro-specific problems
*/
private detectAstroProblems;
/**
* Detect Nuxt-specific problems
*/
private detectNuxtProblems;
/**
* Detect Qwik-specific problems
*/
private detectQwikProblems;
/**
* Detect SolidJS-specific problems
*/
private detectSolidJSProblems;
/**
* Detect SvelteKit-specific problems
*/
private detectSvelteKitProblems;
/**
* Detect general framework issues
*/
detectMetaFrameworkIssues(page: Page): Promise<FrameworkProblem[]>;
}
//# sourceMappingURL=meta-framework-problem-detection.d.ts.map