/** * Log Evaluator - Evaluates conversation transcripts against harness compliance * * Analyzes how well a Claude Code session followed harness engineering practices. */ import type { TranscriptStats } from "./transcript.js"; export interface LogEvalCheck { id: string; name: string; pass: boolean; score: number; details: string; } export interface LogEvalReport { sessionId: string; timestamp: string; overallScore: number; grade: string; stats: TranscriptStats; checks: LogEvalCheck[]; } /** Evaluate a transcript's compliance with harness practices */ export declare function evaluateLog(stats: TranscriptStats): LogEvalReport; /** Format a log evaluation report as readable text */ export declare function formatLogEval(report: LogEvalReport): string; //# sourceMappingURL=log-evaluator.d.ts.map