Learning / Agentic Operations / Lesson 0013

Agentic Operations · Lesson 0013 · Level 3 · Advanced · Build → gate

The Critic/Verifier Step

Agents fail silently and confidently. A critic converts silent failures into caught ones — and you measure by how many.

Your win for this lesson: a verifier stage added to your agent and a measured reduction in silent wrong answers — the rubric's third M3 exercise — then the M3 readiness check. Prerequisites: Lesson 0003, Lesson 0012 (you need the eval set).

1 · Establish the baseline

Run your agent across a test set that includes hard cases where it sometimes produces plausible-but-wrong answers (the dangerous M3 failure — Lesson 0003). Using your 0012 evals, record the silent wrong rate: answers that were wrong but looked confident and well-formed (no crash, no "I'm not sure").

Pass: you have a baseline number — e.g. "4 of 20 answers were confidently wrong." If your agent never errs on your set, make the set harder; you can't measure a reduction you can't first produce.

2 · Add the verifier

Insert a self-correction stage before the agent returns (Lesson 0003, Cluster C):

3 · Measure the delta

ConfigurationCorrectSilent wrongHonest "uncertain"Extra tokens/run
Baseline (no critic)
+ critic/verifier
Pass: silent wrong answers dropped, and you can state the cost — the critic adds tokens and latency, and may convert some right answers to "uncertain" (a real tradeoff). A verifier that halves silent-wrong at 1.5× cost is a decision you can now articulate, not just an instinct.
The M3 arc, complete: single-agent-default and the multi-agent bar (0011), tracing and trajectory evals (0012), self-correction measured (0013). You've turned "agents fail silently" from a warning into an instrumented, mitigated, quantified property of your system.

4 · The M3 readiness check

Bring to your teaching agent: a failing agent you can debug from traces alone (they'll hand you a broken run — or you replay a 0012 plant — and you find the fault by reading), and your eval suite catching a planted regression. Both are the literal M3 gate.

Pass and M3 closes — the M4 hands-on arc (SLO dashboard, guardrails, HITL, full improvement loop) is the ownership stage.

Next

Lesson 0014 — the SLO dashboard: put your live agent under production targets.