Contract checks
Catches: Malformed output — broken JSON, a missing field, a tool call with the wrong argument shape.
Blind to: Whether a well-formed answer is actually correct.
Runs when: Every request, inline, before the response is used
Six layers, 24 named checks, five ways an LLM judge lies, and the numbers worth putting on a dashboard. This is the discipline behind the evaluate stage of the Handbook, not a pitch for a tool.
A demo proves a system can work once, on the cases you picked to show it off. An eval proves it works on the cases you don't get to pick: the ones a real user actually sends, including the ones that already broke it before. Most teams ship on vibes, discover the regression in production, and then can't say whether the fix helped, because nothing was measuring in the first place.
Evaluation isn't one gate. It's a stack of layers, and each one catches a class of failure the layer below it is blind to. Skipping a layer doesn't lower your score. It means you stop measuring that class of failure entirely, and find out about it in production instead.
Each layer catches something the one below it can't see. None of them replace each other.
Catches: Malformed output — broken JSON, a missing field, a tool call with the wrong argument shape.
Blind to: Whether a well-formed answer is actually correct.
Runs when: Every request, inline, before the response is used
Catches: A prompt, model, or retrieval change that quietly makes real cases worse.
Blind to: Retrieval quality in isolation, and any case shape the set doesn't include.
Runs when: Every change to a prompt, model, or retrieval config, in CI
Catches: The retriever handing the generator the wrong context, or none at all.
Blind to: How well the generator uses good context once it actually has it.
Runs when: Alongside golden-set evals, scored as its own number
Catches: An agent that loops, calls the wrong tool, or never terminates.
Blind to: Whether the final answer, once it stops, was any good.
Runs when: Pre-release, against scripted multi-step scenarios
Catches: Everything the offline suite never saw, because this is real traffic.
Blind to: Anything that fails silently and never gets reported or escalated.
Runs when: Continuous, on live production traffic
Catches: Prompt injection, jailbreaks, PII leakage, and tool misuse — under deliberate attack.
Blind to: Ordinary quality; it only answers whether the system can be made to misbehave on purpose.
Runs when: Pre-release, and after any change to tools or the system prompt
Filter by when it runs (pre-merge, pre-release, continuous), then copy the visible list as a Markdown checklist.
Showing all 24 checks
The cheapest layer and the one most teams already half-have: does the response even parse. A schema check can't tell you the answer is right, only that it's shaped the way the next piece of code expects — but a wrongly-shaped response breaks that next step regardless of whether the content was good, so it runs on every single request, not just the ones in a test suite.
The layer most people mean when they say "we have evals": a fixed, labelled set of real cases, each with a checkable pass/fail condition, run as a required CI gate. It answers "did this change help or hurt" with a number instead of a re-run of whichever two examples happened to be open in a tab. It says nothing about a case shape the set never included — which is exactly why the next four layers exist.
Retrieval and generation fail independently, so they need separate scores or a regression in one hides behind a passing average from the other. Recall@k, precision, and groundedness are measured against the retrieved chunk itself, before the generator ever gets a turn — the only way to tell "the model wrote a bad answer" apart from "the model wrote a good answer to the wrong context."
Once a system takes more than one step, the run itself becomes something to grade, separately from the answer at the end of it: did it terminate, how many steps did it take, which tools did it call, at what cost. A trajectory eval catches the run that technically reached a correct answer by way of three unnecessary tool calls and a near-infinite retry — a defect the golden-set layer above never sees, because it only grades the final output.
No offline set, however carefully built, covers every input production will actually throw at the system — this is the layer that measures what happens once it does. Task completion, escalation to a human, how much a person had to edit an accepted answer, cost and latency per task, and whether any of those numbers are drifting over time: production truth, not a proxy for it.
A system can pass every quality check above and still be talked into something it shouldn't do, because none of those checks were trying to attack it. This layer runs the labelled, adversarial equivalent of the golden set — injected instructions, known jailbreak patterns, PII-extraction attempts — against the same tool-enabled path a real user reaches, and answers a narrower question than the rest of the stack on purpose.
No checks match that combination. Clear a filter to see more.
Every one of these produces a confidently wrong number, not an obviously broken one.
Looks like: A judge from the same model family as the generator rates that family's output a little higher, across the board, for no stated reason.
Guardrail: Use a judge from a different model family than the generator, or budget for periodic cross-family spot checks.
Looks like: In a side-by-side comparison, the judge favors whichever answer it saw first — or second — regardless of content.
Guardrail: Randomize answer order per comparison and average both orderings before trusting a verdict.
Looks like: The longer answer wins even when it says the same thing at greater length.
Guardrail: Score against a rubric that names length as a non-factor explicitly, and spot-check whether shorter correct answers are losing to longer ones.
Looks like: The same rubric, applied a month apart, grades a static test case differently — the judge model or its default settings changed underneath you.
Guardrail: Pin the judge model and version; treat a judge upgrade as a breaking change that needs re-baselining, not a free improvement.
Looks like: The judge's pass rate looks stable, and nobody has checked it against a human rater in months.
Guardrail: Re-run a human-labelled holdout against the judge periodically and confirm agreement, not just internal consistency.
Every one of these is measurable today. None of them is trustworthy read alone. Pair it with the number next to it.
No invented benchmark numbers, no client names. Just what's already documented on this site.
A Ship Audit runs this stack against your specific system and tells you which layers are live risks, not just which ones are theoretically incomplete.
What teams ask us before they scope an eval stack.
50–100 real cases is a reasonable starting bar, pulled from production traffic and past incidents rather than invented — see the golden-set layer above. A held-out slice the prompt author never sees matters more than raw count.
No — start with contract checks and a golden-set gate in CI. Both are cheap and catch the two failure modes that do the most damage. Add trajectory and adversarial evals once there's an agent and real tool access worth protecting.
Yes, with guardrails — pin the judge model and version, randomize comparison order, and calibrate against a human-labelled holdout periodically. See the five ways a judge lies above; each one is a way a judge score can look fine while being quietly wrong.
Evals catch a regression before it ships; observability — the online-signals layer — catches the one that got through anyway. Neither replaces the other.
Scope it to what the feature can do. A read-only summarizer barely needs the retrieval and trajectory layers; something that can send messages or issue refunds needs the full stack, adversarial checks included.
That page is the three-step summary; this is the full stack behind it — six layers, 24 named checks, the ways a judge lies, and the numbers worth putting on a dashboard.