Teams shipping LLM agents almost always add a check: a validator, a schema, an exit code, a review step. The check passes. The work looks done.
Then something wrong reaches production anyway, and the postmortem finds the check was never capable of catching it. It wasn't bypassed. It wasn't broken. It was asked a question that couldn't tell right from wrong.
This is the failure mode I work on, and it is badly under-measured because every symptom of it looks like success.
Evidence, from systems I run
What I do
| Engagement | What you get |
|---|---|
| Reliability audit 1–2 weeks |
I take your agent pipeline and find where it reports success while producing wrong output. Deliverable: reproducible failure cases with the exact input, the green signal it produced, and why the existing check couldn't see it. |
| Gate hardening 2–4 weeks |
I build the missing layer: deterministic checks, negative controls that prove each guard can fail, and comparison against the input where output should be a pure function of it. Zero-noise, fail-open, no added latency at generation time. |
| Adoption measurement 1 week |
You wrote the practices doc. I tell you, with a number, how many of them your agents actually follow — read from the telemetry you already generate. |
How I work
- Evidence over assertion. Every finding ships with a reproduction. If I can't reproduce it, I tell you it didn't reproduce — including when that undercuts something I said earlier.
- Negative controls by default. Every guard I build is shown failing on material it must reject before it is trusted on material it should pass.
- Your stack, not mine. I don't sell a framework. The layer lives in your codebase and outlives the engagement.
- Nothing leaves without a gate. I've built the approval and provenance layers I'd want applied to my own work — hash-locked artifacts, human confirmation on outbound actions, audit trails.
Where I come from
I run four production systems on a fleet of coding agents, with the enforcement layer I built underneath them. The measurements above are from that work, not from a lab. I write about it publicly — including the times the measurement itself turned out to be wrong.
Start with the audit
Tell me about your agent pipeline and where you suspect it's reporting success it hasn't earned. If I don't think I can find anything worth your money, I'll say so before you spend any.