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
30 lines • 1.09 kB
TypeScript
/**
* V2 Framework Detection for Project-Aware Loading
* Simplified framework detection optimized for stateless HTTP architecture
*/
import { Page } from 'playwright';
export interface V2FrameworkDetectionResult {
framework: string;
confidence: number;
detected_features: string[];
version?: string;
}
export declare class V2FrameworkDetector {
/**
* Detect framework from a Playwright page
*/
detectFramework(page: Page): Promise<V2FrameworkDetectionResult>;
/**
* Quick framework detection from URL patterns (for early optimization)
*/
detectFromUrl(url: string): V2FrameworkDetectionResult;
/**
* Merge URL-based detection with page-based detection
*/
mergeDetectionResults(urlResult: V2FrameworkDetectionResult, pageResult: V2FrameworkDetectionResult): V2FrameworkDetectionResult;
}
/**
* Simple framework detection for testing without browser
*/
export declare function detectFrameworkFromHeaders(headers: Record<string, string>): V2FrameworkDetectionResult;
//# sourceMappingURL=framework-detector.d.ts.map