/** * Evaluation Suite * Vercel-methodology evals for measuring AGENTS.md effectiveness */ export interface EvalResult { framework: string; version: string; config: 'baseline' | 'skill-only' | 'agents-md'; metrics: { build: number; lint: number; test: number; }; passRate: number; details: EvalTaskResult[]; } export interface EvalTaskResult { name: string; api: string; build: boolean; lint: boolean; test: boolean; passed: boolean; error?: string; generatedCode?: string; } export interface EvalOptions { framework?: string; compare?: 'baseline' | 'skill-only' | 'agents-md'; verbose?: boolean; simulate?: boolean; model?: string; } /** * Run the evaluation suite */ export declare function runEval(cwd: string, options?: EvalOptions): Promise; /** * Get compression stats for display */ export declare function getCompressionStats(cwd: string): Promise; //# sourceMappingURL=index.d.ts.map