loop-verifier-designlisted
Install: claude install-skill NITISH-R-G/graph-engineering-skills
# Loop Engineering: The Verifier Is the Bottleneck
**Source**: AI Builder Club, "Loop Engineering Guide (2026)" — industry-practitioner synthesis citing Andrew Ng's June 2026 "Batch" letter and Anthropic's Claude Code documentation. **Independently corroborated by academic work**: "Verified Multi-Agent Orchestration" (arXiv 2603.11445) finds that decoupling verification from individual agent generation — an independent model assessing whether results adequately address the goal — is what produced its measured quality gains (completeness 3.1→4.2, source quality 2.6→4.1 on a 1-5 scale versus single-agent baselines). Both sources converge on the same core claim from different directions.
## The core claim
*"A loop is just a generator wired to a verifier, and the generator was never the bottleneck."* Models now iterate cheaply — generating another attempt costs little. What actually determines whether that iteration produces value is whether the verifier can tell good output from bad. A weak verifier doesn't fail loudly: it confidently approves poor output across many iterations, silently converting compute into expensive garbage.
## Don't let the agent self-verify
Stated directly in the source: *"Don't let an agent self-verify. It doesn't work well."* An agent judging its own output shares the same blind spots and failure modes that produced the output in the first place — self-verification has a structural incentive-alignment problem, not just an occasional-mistake problem