Evaluators
An evaluator is one reusable, versioned scorer — editing one writes a newversion row, so past runs keep meaning what they meant. Five kinds exist:
- LLM judge (llm_judge)
- Deterministic (deterministic)
- Trajectory (trajectory)
- Agentic (agentic)
- Statistical (statistical)
A model grades the response against a rubric you write in plain language. The rubric is compiled into a checklist of atomic, weighted yes/no questions; on a boolean evaluator an item can be a gate that fails the verdict regardless of the rest. Judges return reasoning and per-item sub-scores. The managed Correctness and Faithfulness judges use a proportional mode instead: they enumerate the output’s claims and score the share that holds. Judge responses are cached content-addressed, so re-scoring identical inputs is free.
final_output, turn, step, trajectory, sample, or dataset), a score type (numeric, categorical, or boolean) with a pass_threshold, an evidence requirement (model_output, harness_artifact, trajectory, or reference), and a surface — model, harness, or any — that says where it may run: a model grader never runs on live trace scoring, a harness grader never runs on a generate variant. If a run cannot supply the required evidence, the evaluator abstains or is marked not-applicable instead of producing a number.
Claims
Every evaluator also carries a claim: what it asserts and at which grain. The claim is what trace scoring uses to compose one execution score out of many verdicts.
The grain is the slice a claim is judged on:
unit (one turn or step), trajectory (the path through the behaviour), terminal (the deliverable), or session (the whole conversation). Grains land in three weighted phases — steps, trajectory, output — and no single evaluator vetoes the composite.
Behaviour bindings
An evaluator can be bound to one of the capability’s behaviours with a role: an outcome evaluator judges the behaviour’s deliverable, a step evaluator judges one anchor segment of its route. The Eval library groups evaluators by behaviour (the Console labels it “Task”), shows each behaviour’s coverage (outcome plus every step), and lists the rest under Unassigned.GET /api/behaviours/coverage/?capability={id} returns the same rollup.
Judges are authored behaviour-scoped from the behaviour’s group in the Eval library or through the upsert_evaluator MCP tool: POST /api/evaluators/author/ takes behaviour, behaviour_role (outcome or step), and — for a step judge — the anchor_segment, validated against the behaviour’s contract. GET /api/behaviours/{id}/authoring-context/ grounds the authoring with the behaviour’s latest contract: anchor sequence, steps, tool set, and terminal. A judge whose applicable_roles include trace_scoring must be bound to a behaviour, and eval_set plus eval_set_role attach the new judge to an eval set in the same call. PUT /api/evaluators/{id}/author/ re-authors an existing judge.
Authoring
Author from the Eval library by hand, or describe what you want to test and let Overmind generate the evaluator (POST /api/evaluators/generate-prompt/). The generated prompt template references the agent’s output as {{output.<path>}} and dataset fields as {{reference.<path>}}, and everything stays editable before saving.
overmind scan push preloads the capability’s Default eval set for every capability it created, remounted, or whose card changed, in tiers: Tier 0, rule-based checks compiled from the capability’s card (its output contract, fields, and constraints — no model call); Tier 1, generative LLM judges grounded in the card, the prompt, and the behaviour map; and the behaviour outcome and step judges for trace scoring. When Tier 1 authors nothing for the generative role, one floor judge fills the role until a later push covers it. Authoring reads the capability’s evidence profile — what its telemetry carries (declared behaviours, explicit units, real tool spans, provenance tags, a declared deliverable) — and refuses a spec whose evidence the traces cannot supply.

The Eval library grouped by behaviour, with each behaviour's outcome and step coverage.
Eval sets
An eval set is a named group of a capability’s evaluators. Each member carries a role:generativemembers score outputs produced during eval runs and optimisation runs.trace_scoringmembers run on every production trace, per task execution, writing verdicts and the execution score into Observability. The mechanics are on Trace scoring.
POST /api/eval-sets/{id}/activate/); it is what trace scoring, optimisation runs and training runs default to. POST /api/eval-sets/{id}/members/ adds members.
Eval runs
An eval run is one experiment: one data source × N variants × M evaluators.- Data source —
dataset(the version is used and frozen, so the run stays reproducible as the dataset evolves) ortrace_filter, drawing directly from captured traffic.max_itemscaps how many rows are drawn. - Variants — the columns of the experiment. A variant’s
modeisgenerate(re-run a model over each row) orexisting(grade the recorded output as-is). Each pins a model (a catalogue model, a registered endpoint, or one of your trained models) and optionally a prompt; one variant is the baseline (is_baseline) every other is measured against. - Evaluators — attached as frozen snapshots at creation, so later library edits cannot change what a completed run measured.
run_evaluation MCP tool.
status moves pending → running → completed, or ends failed or cancelled.
For recorded conversations, a generated variant can set params.generation_strategy to per_assistant_turn. The model produces one decision for each recorded assistant turn, using the conversation recorded before that turn as context. Tool calls are evaluated as decisions without executing their tools. Each subsequent turn uses the recorded history, keeping its context independent of the candidate’s previous decisions. Such a run attaches a per-turn judge automatically, and params.replay_dimensions names what it grades. This also applies to conversations containing a single recorded assistant turn; a tool-only decision does not require a final answer.
A sample that exceeds the generation worker’s time limit records an error and is excluded from scoring. Scoring starts after sample preparation finishes, so a run can be generating while its score count is still zero.
Reading the report

A finished run: per-evaluator pass rates and mean scores per variant, the score distributions, and cost and latency per model.

Datapoint drill-down: each evaluator's score with reasoning. A check that could not be applied is not-applicable and does not enter the averages.
- Outcomes are typed. Every score’s
outcomeisscored,abstained,not_applicable,skipped, orerror— and onlyscoredresults feed averages and pass rates. - Samples can be degraded. Each trace is normalised into a canonical transcript before scoring; if it cannot be reconstructed, the sample is marked
degradedwith adegraded_reasonand excluded from aggregates. Failure scores also carry afailure_role—root_causeorpropagated— so one upstream failure does not read as five independent ones.
GET /api/evaluators/score-history/) that powers the trend chart on the capability page.
Calibrating judges
Samples accept annotations — human labels with an optional note, written through theannotate_evaluation_sample MCP tool — giving you ground truth to compare judge behaviour against. When a judge and your annotations disagree consistently, tighten the rubric; the compiled checklist shows which criterion is drifting.