| name | agent-eval |
| description | Run eval fixtures against review agents and grade results. Use this after adding or modifying a review agent, to validate detection accuracy, or when the user says "run the evals", "test the agents", "check for regressions", or "how accurate is the agent". |
| argument-hint | [--agent <name>] [--skill <name>] [--fixture <name>] [--trials <n>] [--in-session] [--integration] [--no-cache] [--verbose] |
| user-invocable | true |
| allowed-tools | Read, Grep, Glob, Bash(readlink *, ls *, date *, mkdir *, command -v claude, claude -p *,
python3 scripts/eval_cache.py *, python3 scripts/run_integration_eval.py *,
python3 scripts/citation_lint.py *),
Skill(review-agent *), Skill(test-design-advisor *) |
Agent Eval
Role: orchestrator. This skill dispatches fixtures to agents and
grades results — it does not review code itself.
You have been invoked with the /agent-eval skill. Run review agents
against eval fixtures and grade the results.
Orchestrator constraints
- Do not review or design yourself. Delegate reviews to
/review-agent and advisory analysis to the skill under eval (e.g.
test-design-advisor). Your job is dispatching and grading.
- Grade deterministically. Compare agent JSON output against
expected JSON using exact criteria (status match, count ranges,
keyword checks). Do not apply judgment.
- Minimize context per agent. Pass only the fixture file to the
agent — not the expected results, not other fixtures, not prior
transcripts.
- Track results. Save transcripts for saturation detection. Do
not modify fixtures or expected files.
- Be concise. Output the report table and failure details. No
narration of each fixture run — just the grades.
Parse Arguments
Arguments: $ARGUMENTS
--agent <name>: Run only the named review agent
(e.g., js-fp-review)
--skill <name>: Run only the named advisory skill
(e.g., test-design-advisor) against its skill fixtures
--fixture <name>: Run only the named fixture
(e.g., fp-array-mutations.ts)
--trials <n>: Run each fixture N times (default: 1). Enables
pass@k scoring.
--in-session: Dispatch agents in this session instead of a fresh
subprocess (see Dispatch mode below). Faster, but evaluates the
agent definitions as already loaded — use only for cheap re-grades
when no agent/skill file has been edited since they were loaded.
--integration: Dispatch the integration tier instead of the unit
tier (see Confidence pyramid below). Routes fixtures that declare an
integration block in their expected JSON through
scripts/run_integration_eval.py (orchestrator dispatched against a
spec in an ephemeral worktree, then the fixture's testCommands are
graded by the integration grader). Cannot be combined with --agent
or --skill — integration fixtures target the orchestrator, not a
single reviewer.
--no-cache: Bypass the fingerprint replay cache (see Cache
below). Default is cache-on, so a pair whose transitive inputs are
unchanged replays from evals/.eval-cache.json at zero token cost.
Use --no-cache when you suspect cache corruption or want a clean
cost baseline.
--verbose: Show full agent output for each fixture
- No arguments: run all agents against all applicable fixtures
Confidence pyramid
/agent-eval dispatches at one of three tiers, in increasing confidence and
cost. See ADR 0007
for the full vocabulary; this skill is responsible for selecting the tier and
routing to the right runner.
- Unit (default) — one reviewer or one advisory skill against one fixture,
graded by the
verdict or skill_gate grader. Cheap, deterministic, used
for every reviewer change. This is what runs when neither --integration
nor any tier-specific flag is set.
- Integration (
--integration) — the orchestrator builds against a
golden-repo spec in an ephemeral worktree; the fixture's testCommands must
all exit 0 (graded by the integration grader). Validates that a plan
produces code that compiles and passes tests, not just that a reviewer
flagged the right thing. Opt-in, costs orchestrator + builder tokens.
- Acceptance — production-style runs over real PRs / merged code,
scheduled outside this skill (the live regression gate in CI).
/agent-eval does not dispatch acceptance directly; mention it for
context only.
When the operator does not specify a tier, run unit and report in the
final table how many fixtures would have routed to integration (the count of
expected JSON files whose integration block is non-empty). That nudge keeps
integration coverage visible without forcing every run to pay for it.
Cache (fingerprint replay)
scripts/eval_cache.py SHAs each fixture::target over the target's
definition + the transitive closure of files it reaches (knowledge/,
skills/) + the fixture + expected JSON + grader version. An unchanged SHA
with a stored PASS replays at zero token cost; any changed input busts the
cache.
Default behaviour (cache-on):
- Before dispatch, run
python3 scripts/eval_cache.py --plan --replay-out replay.json over the resolved fixture/target pair list.
This produces the hit/miss split.
- Dispatch ONLY the misses through Step 3.
- After grading, run
python3 scripts/eval_cache.py --store --actuals actuals.json to memoize the new passes.
- Report
cache: <hits>/<total> replayed at $0 in the summary.
--no-cache skips steps 1-3 and dispatches everything. Use it only when you
suspect the cache is wrong; the cache busts automatically on any input
change, so there is normally no operator decision to make.
Cites: enforcement (drift prevention for the evals themselves)
This skill grades reviewers; if a reviewer carries thresholds with no
cites: declaration, /agent-eval is grading drift it cannot detect. Before
dispatching a --agent <name> run:
-
Probe python3 scripts/citation_lint.py --plugin-root plugins/dev-team plugins/dev-team/agents/<name>.md.
-
If it emits an advisory — states N normative token(s) ... declares no cites: warning, surface that once above the run report:
⚠ agent <name> states N numeric threshold(s) on RFC-2119 lines but has no
cites: frontmatter. Eval results will not catch drift in those
thresholds. Add a cites: list naming the canonical sources.
-
Continue with dispatch — the warning is advisory, never blocking (matches
the Phase-1 lint contract).
This makes the eval skill itself a regression guard against threshold drift,
not just a grader for it.
Dispatch mode
The agent and skill definitions under eval are plain files on disk. An
eval is only honest if it grades what is currently on disk, not a copy that
was loaded into this session before you started editing.
- Default — fresh subprocess (disk is authoritative). Each fixture/agent
pair is dispatched via a fresh
claude -p subprocess (Step 3). The
subprocess loads the agent/skill definitions from disk on every run, so a
definition you edited a moment ago is reflected immediately. This is the
correct mode after any edit and the default for that reason.
--in-session — fast path (no fresh load). Dispatches via the
in-session /review-agent and skill invocations. This reuses whatever was
already loaded, so it is cheaper and quicker, but it can evaluate a stale
definition if the file changed mid-session. Use it only for repeated grading
when you have not touched the agent/skill/knowledge files.
No silent fallback. Default mode requires the claude CLI on PATH. If
command -v claude finds nothing, stop with a clear error — do not quietly
run in-session, because that would grade a stale definition without the user
knowing:
error: /agent-eval default (fresh-subprocess) mode needs the `claude` CLI on
PATH, which was not found. Install it, or re-run with --in-session to dispatch
in this session (warning: --in-session can grade a stale, already-loaded
definition if you have edited agent/skill files this session).
Steps
1. Resolve eval corpus
Verify .claude/evals/fixtures/ exists. If not, error:
"Cannot find eval fixtures. Expected at .claude/evals/fixtures/."
2. Load fixtures and expected results
Read all files from .claude/evals/fixtures/ and corresponding JSON from
.claude/evals/expected/.
For each fixture:
- Match the fixture stem (filename without extension) to its
expected JSON
- For directory fixtures (cs-*), the directory name is the stem
- Parse
applicableAgents (review-agent fixtures) and/or
applicableSkills (advisory-skill fixtures, e.g. the tlg-*
test-layer-gates corpus) to know what to dispatch. A fixture is an
agent fixture, a skill fixture, or both, depending on which
keys its expected JSON declares.
If --agent is specified, filter to fixtures where that agent is in
applicableAgents.
If --skill is specified, filter to fixtures where that skill is in
applicableSkills.
If --fixture is specified, filter to that fixture only.
3. Run agents against fixtures
If --integration is set, skip the rest of this section and dispatch
through python3 scripts/run_integration_eval.py for every fixture whose
expected JSON declares an integration block. The runner builds the
ephemeral worktree from the fixture's goldenRepo tarball, dispatches the
orchestrator against the spec, runs the testCommands, records exit codes,
and tears the worktree down unconditionally. Pass the actuals it writes
directly to Step 4 — the integration grader will pick them up from the
expected JSON's integration block. Skip the cache pre-flight in this
branch for now (cache wiring for the integration tier is tracked separately
to keep the rollout small).
For unit-tier runs, first resolve the dispatch mode (see Dispatch mode
above) and consult the cache (see Cache above):
- Default (fresh subprocess). Run
command -v claude. If it is missing,
STOP with the error in Dispatch mode — do not fall back to in-session.
Otherwise dispatch each pair through a fresh subprocess so the definition is
re-read from disk every run.
--in-session. Skip the claude check and use the in-session
invocations described under each pair below.
For each fixture/agent pair (agent fixtures):
- Dispatch the named review agent against the fixture file/directory:
- Default: a fresh subprocess that reads the agent from disk —
claude -p "/review-agent <agent-name> <fixture-path>" --output-format json
(add --model per the agent's tier when known). Pass only the
fixture path, never the expected JSON.
--in-session: invoke /review-agent <agent-name> with the
fixture file/directory as the target.
- Parse the agent's JSON output to extract:
status, issues[],
summary
- If running multiple trials (
--trials), repeat and collect all
results
For each fixture/skill pair (skill fixtures, e.g. tlg-*):
- Dispatch the skill (e.g.
test-design-advisor) against the fixture file —
the fixture is a behavior description the advisor designs tests for. Pass
only the fixture file, never the expected JSON.
- Default: a fresh subprocess —
claude -p "/test-design-advisor <fixture-path>" --output-format json.
--in-session: invoke the skill in this session.
- Capture the advisor's report text — specifically the Pyramid
placement table (the
Gate column and recommended Layer(s)) and
the surrounding rationale.
- Repeat per
--trials as above.
4. Grade each result
Compare agent output against expected JSON:
Status match:
- Agent status matches
expectedStatus → PASS
- Agent status is "skip" and fixture is not in
applicableAgents → PASS (correct skip)
- Mismatch → FAIL
Issue count:
issues.length within issueCount.min to
issueCount.max → PASS
- Outside range → FAIL
Severity counts:
- For each severity in expected
severities, count matching issues
- Count within
min to max → PASS
- Outside range → FAIL
Keyword checks:
- For each keyword in
mustMention: at least one issue message
contains keyword (case-insensitive) → PASS
- For each keyword in
mustNotMention: no issue message contains
keyword → PASS
- Violation → FAIL
Skill fixtures (gate-firing grade): for a fixture graded against a
skill, compare the advisor's report (Step 3) to the skills.<name>
block:
- Gate firing — every gate in
expectedGates is reflected in the
report's Gate column / rationale; when expectedGates is [], the
report shows no escalation (Gate cell —, no ↑). Match → PASS.
- Layer(s) — every layer in
expectedLayers appears in the
Pyramid placement recommendation; escalations only raise the layer,
never lower it. Match → PASS. (expectedLayers: [] — e.g. the
ambiguity row — skips this check.)
- Keyword checks —
mustMention / mustNotMention are applied to
the full advisor report text (not issues[], which skills don't
emit), case-insensitive substring, same PASS/FAIL rule as above.
Grade deterministically: the ↑, REQUIRED, → cd-test-architecture,
approval/screenshot, and — sentinels are literal — match them as
written, do not paraphrase.
Each check produces PASS/FAIL. Overall fixture grade: PASS only if
all checks pass.
5. Compute pass@k (multi-trial)
If --trials > 1:
- pass@1: fraction of fixtures that passed on the first trial
- pass@k: fraction of fixtures that passed on at least one of k
trials
- Consistency: fraction of fixtures with identical results across
all trials
Persist the variance signal (#103). Write each trial's recorded actuals to a
directory (one JSON per trial — the same actuals shape eval_grade.py grades),
then aggregate deterministically and append to the trend so stability is tracked
over time, not recomputed and lost:
python3 ${CLAUDE_PLUGIN_ROOT}/../../scripts/eval_variance.py \
--trials-dir <dir-of-trial-actuals> \
--append metrics/eval-variance.jsonl -o memory/eval-variance.json
The report's quarantine list names pairs that flap (neither always pass nor
always fail). Flaky fixtures should inform the #99 CI gate — exclude them from
hard-blocking and report them — rather than cause spurious failures.
6. Detect eval saturation
Track the last 3 runs in .claude/evals/transcripts/. If the last 3
consecutive runs for an agent produce identical grades, flag as
"saturated" — the expected ranges may need tightening.
7. Save transcript
Create .claude/evals/transcripts/<timestamp>-<agent>.json:
{
"timestamp": "2026-03-01T12:00:00Z",
"agent": "<name>",
"trials": 1,
"results": [
{
"fixture": "<name>",
"grade": "pass|fail",
"checks": {
"status": "pass|fail",
"issueCount": "pass|fail",
"severities": "pass|fail",
"mustMention": "pass|fail"
},
"agentOutput": { "status": "...", "issues": [], "summary": "..." }
}
],
"summary": {
"total": 0,
"passed": 0,
"failed": 0,
"passRate": "N%",
"passAtK": "N%",
"saturated": ["agent-name"]
}
}
8. Generate report
Save to .claude/evals/reports/<timestamp>-report.md and display:
# Eval Report — <timestamp>
## Summary
| Metric | Value |
| --- | --- |
| Fixtures | N |
| Passed | N |
| Failed | N |
| Pass rate | N% |
| Pass@k | N% (k=N) |
| Saturated | N agents |
## Results by Agent
| Agent | Fixtures | Passed | Failed | Rate |
| --- | --- | --- | --- | --- |
| js-fp-review | 6 | 5 | 1 | 83% |
| ... | | | | |
## Failures
| Fixture | Agent | Check | Expected | Got |
| --- | --- | --- | --- | --- |
| fp-array-mutations.ts | js-fp-review | issueCount | 4-8 | 2 |
| ... | | | | |
## Saturation Warnings
- js-fp-review: 3 identical runs — consider tightening ranges
9. Progress tracking
Copy and update this checklist:
- [ ] Eval corpus resolved
- [ ] Fixtures loaded
- [ ] Expected results loaded
- [ ] Agents executed
- [ ] Results graded
- [ ] Transcript saved
- [ ] Report generated