ae81e4b5ac
CI / check (pull_request) Successful in 1m44s
Implement the 3 read commands for eval framework: - report: read eval-run from CAS, render formatted text (task, overall, config, judges table, thread ID) - diff: side-by-side comparison with ▲/▼ delta indicators and config change markers - list: scan @uwf/eval/*/latest variables, sort by timestamp desc, --task filter, --limit pagination Architecture: pure formatting functions (format.ts) + data access (read.ts) + thin CLI handlers. Types in types.ts. 11 new tests (formatReport, formatDiff, formatList, selectEntries) Refs #72
8 lines
388 B
TypeScript
8 lines
388 B
TypeScript
export { registerDiffCommand } from "./diff.js";
|
|
export { formatDiff, formatList, formatReport, selectEntries } from "./format.js";
|
|
export { registerListCommand } from "./list.js";
|
|
export { readEvalEntries, readEvalRun } from "./read.js";
|
|
export { registerReportCommand } from "./report.js";
|
|
export { registerRunCommand } from "./run.js";
|
|
export type { EvalListEntry } from "./types.js";
|