Decide whether an AI/LLM/agent/retrieval system needs an eval, where it fits in the dev process, which one to run, and how to read the result; then design, gate
复制下面这句话,粘贴给 Claude Code、Codex、Cursor 等 AI 编程工具,它会读取安装说明并在你确认后完成安装。
请阅读 https://ai.atlankj.com/install/asset/gh-eval-genius-eeb19ae43050 ,按照其中的说明把「eval-genius」安装到你(当前 AI 工具)中。执行前先告诉我将运行的命令和写入的位置,等我确认。
查看 AI 将读取的安装说明正在读取 GitHub 原文…
内容来自 GitHub 原始文件,由原作者维护。在 GitHub 查看
An eval is a claim you are willing to defend under hostile audit. You measure to earn the right to say "this is better" and have it hold when someone sharp pushes back. Behave like a measurement engineer: state the promise, fix the bar before looking, hold everything else constant, distrust the instrument first, report the number that hurts. Assume the user may be starting from zero; plain language first, jargon when it earns it.
Three questions decide it (references/00-start-here.md): does the output vary (model,
prompt, retriever)? will it change again, and would a quiet regression cost something?
is a decision or a public claim coming? No to all: a hand spot check, stop. Yes to any:
an eval, sized to the stage the project is in.
| Stage the user is at | Instrument | Smallest useful version |
|---|---|---|
| Exploring prompts and models | Spot check | 10 inputs, eyeball |
| First working version | Smoke eval | 20 to 50 real inputs, code-checked; this run is the baseline |
| Changing one thing | Paired eval vs baseline | Same items both arms, per-item diff, bar written first |
| Merging or shipping | CI gate | Held-out items, three-way outcome, a known-bad item that must fail |
| Comparing or claiming publicly | Benchmark | Versioned dataset and harness, intervals, report |
| In production | Monitor | Same scorer on sampled live traffic |
Build the first eval at "first working version", never before, rarely after. For a
first-timer, run the one-afternoon recipe in 00-start-here.md and touch nothing else.
Identify the job, then load only that reference. Every job still passes through Step 1.
| User needs to... | Load |
|---|---|
| Know if they need an eval, where it fits, which one, or how to start | references/00-start-here.md |
| Decide what to measure at all, or the ask is "make it better" | references/01-foundation.md |
| Pick a grader or metric for a task | references/02-grading-and-metrics.md |
| Use, prompt, or trust an LLM judge | references/03-judge-calibration.md |
| Choose between an existing benchmark and a custom one | references/04-search-vs-build.md |
| Assemble items, labels, negatives, splits; contamination, overfitting | references/05-dataset-construction.md |
| Write or fix the runner, scorer, or reporter | references/06-harness-design.md |
| Put an eval in CI or a release gate | references/07-gates-and-ci.md |
| Say whether a delta is real | references/08-statistics.md |
| Write results up, or retire a benchmark | references/09-reporting.md |
| Evaluate an agent, tool use, or multi-turn task | references/10-agentic-evals.md |
| Read a result file with no prior experience | references/11-reading-results.md |
Templates in templates/ get copied into the project, never edited in place. Scripts in
scripts/ are stdlib-only CLIs with --help, exiting nonzero with a readable message:
check_gate.py (per-item diff of treatment vs baseline; exits 0 PASS, 1 FAIL,
2 CANNOT-MEASURE; refuses a comparison across mismatched fixture or judge fingerprints),
paired_bootstrap.py (paired bootstrap interval on the delta, cluster-aware),
judge_agreement.py (Cohen's kappa and PASS precision/recall of a judge vs human labels),
hash_fixture.py (the canonical fixture content hash the manifest's fixture_hash wants,
so two runs hash the same fixture to the same string). Match effort to stakes: a spot check needs Step 0 and little else; a
release gate needs the whole chain. Load references on demand, not all at once.
Copy templates/preregistration.md next to the fixture and fill it before touching
data or code. A first-timer fills promise, lever, baseline, and bar; the rest follows.
Done when all five fields are filled and a baseline is named.
Push every check that can be code-graded down to code: exact match, regex, schema,
test suite, threshold. Free text gets decomposed (required facts present, forbidden
content absent, format) before any judge sees it. Reserve a model or human judge for
the edge no assertion captures. 80% deterministic / 20% judged is trusted; 100% judged
is an opinion with error bars. Report layers separately, never one blended number. A
judge is an instrument: calibrate against human labels, blind it, randomize order, pin
model and prompt hash (references/03-judge-calibration.md).
Search before building; an established benchmark buys ground truth nobody in the room
cooked. Build custom the moment the public one rewards a proxy the system does not
target, reusing public plumbing. Score candidates on templates/benchmark-assessment-scorecard.md:
what it rewards, contamination, label-error ceiling, whether it exercises this
mechanism, whether it is maintained.
check_gate.py).Full walk in references/11-reading-results.md; each check gates the next.
paired_bootstrap.py);
interval includes zero means "not established", never "no effect".Numbers are claims with tiers, measured / estimated / aspirational, never summed across
tiers. Three sentences minimum: the bar and whether it was met; the delta with interval,
n, and flip counts; the caveat that most weakens the claim. Say when a benchmark is
self-run. Retire what fails its bar, in writing. Template: templates/eval-report.md.
templates/quality-checklist.md.Source: alexgreensh/eval-genius, Apache-2.0.