Disclosure up front: I build
[agentproto], which runs
checksinsidean agent's loop rather than only at the end. Everything about
why that matters you can verify without me β the sources are named and dated,
and I'll concede where the plain loop is exactly right. Corrections welcome,
file an issue.
You gave your agent a loop, closed the laptop, and went to bed.
The whole pitch of the overnight loop is that it keeps going. while true; do
β it wakes back up every time it stalls,
cat prompt.md | claude -p; done
re-reads the plan, and grinds on until a checklist is green. You come back to a
finished feature and a clean exit code. Sometimes that's a miracle. Sometimes
it's a very tidy way to have built the wrong thing four hundred times.
The one idea, if you remember nothing else:
A loop gives your agentpersistence, not correctness.And a wrong turn, held
with conviction and looped, is just a faster way to be wrong.
A loop is a liveness guarantee. It promises the process will keep running; it
promises nothing about whether the process is pointed the right way. Those are
two different properties, and the whole overnight-autonomy genre quietly conflates
them. "It's still going" feels like "it's still on track" at 2am. It isn't.
Geoffrey Huntley named the mechanism precisely when he described the Ralph
technique as a deterministic loop wrapped around a non-deterministic model β
the bet being that repeated attempts converge on a working solution. That bet is
real, and often it pays. But convergence has a direction, and the loop doesn't
supply it. The loop supplies fuel.
Why the direction can be wrong.Each Ralph iteration starts with a fresh
context window but inherits all prior work from the filesystem β code, commits,
notes β which it treats as ground truth and builds on (Sid Bharath,"the2026). That's the strength on a good
dumbest smart way to run coding agents,"
run. On a bad one, iteration two builds on iteration one's mistake, iteration
three trusts both, and the error stops looking like a bug and starts looking
like the codebase.
So an unsupervised loop doesn't self-correct. It self-reinforces. It pays
compound interest on your first wrong turn β confidently, on a timer, with every
pass making the mistake more load-bearing and more expensive to unwind. The scariest output of a runaway loop isn't a crash. It's a green checkmark on top of a bad foundation.
"Fine," you say, "I gated it β the loop only exits when the tests pass and it
prints COMPLETE
." Good instinct, wrong position. A terminal gate fires after
the loop has already burned the budget and stacked the tower. By the time your
end-of-run check has an opinion, the wrong thing is built, tall, and load-bearing.
And the completion signal you're trusting is more fragile than it looks.
The exit condition is a suggestion, not a safety mechanism.A completion
promise is typically a static exact-match string with no OR conditions β so it
can silently never fire if the wording drifts. The thing that actually bounds a
runaway loop is theiteration cap; long loops can plausibly cost $30β150 in
API spend, so you never run one without one (The AI Agent Factory, 2026).
Read that again: the mechanism keeping your loop from running forever is a
counter, not a judgment. It stops the spend. It doesn't check the work.
The deeper problem is that the failures that matter most are invisible to any single moment β including the last one. Apollo Research, whose Watcher tool
Two failure shapes, two different checks.Some failures live in a single
action β deleting files, leaking a secret, a force-push β and must be blocked
synchronously, before execution.Others only emerge over many turns β scope
creep, a confidently wrong diagnosis, premature "done" claims β and no single
action reveals them; they have to be judged over thetrajectory
([Apollo Research],
2026). A terminal gate sees exactly one moment. The drift that sinks you lives
in the shape it can't see.
Here's the one question that sorts every autonomous setup. When does your loop check its work β only at the very end, or partway through? If the only
Run the honest audit on your own harness. Between kickoff and the final green
check, how many times does something other than the agent look at where it's
going? For most overnight loops the answer is zero β the agent grades its own
progress every iteration, and a generator grading itself is the plateau the whole
supervision ladder is built to escape.
Receipt from the trajectory list.Apollo's rubric of multi-turn failure
modes reads like a confession of every bad overnight run: premature completion
claims without verification, ignoring user corrections, confidently wrong
diagnoses, scope overreach, fabricated APIs, and β my favorite βrepeating aA loop is a machine for
failing command 3+ times without changing strategy.
doing that last one at scale.
If your check lives only at the finish line, the loop's superpower β never giving
up β becomes its failure mode. It will never give up on the wrong path, either.
The reflex, when a loop misbehaves, is to make it more persistent: auto-restart
on stall, replay the last message in a fresh session, keep it alive through
context overflow and API errors. That's a watchdog, and it's genuinely necessary
plumbing for unattended runs β but it is the exact wrong tool for this problem.
A watchdog keeps the process breathing and says nothing about whether the process
is right. It will cheerfully restart a wrong loop into producing the same wrong answer until sunrise β the
Alive β on-track.Health-monitoring harnesses track context usage, idle
time, and error counts, then act: clear context below a threshold, restart
agents that stall, disable them after N consecutive errors (Claude Code Agent
Farm, 2026). Every one of those signals is aboutliveness. None of them asks
the only question that matters mid-flight: is this still the right thing to be
building?
So the fix can't be "keep it going better." It has to be something that can make
it stop going the wrong way β partway through, before the tower is tall.
The check has to move two places at once: outside the agent (a different
context, ideally a different model β a generator can't be its own skeptic) and
inside the timeline (running alongside the loop, not waiting at the exit).
That's the ladder's L3/L4 external-judge idea, but
applied continuously instead of only at turn-end.
This is precisely what a trailing monitor does, and Apollo measured the payoff
and its limit in the same breath.
Catch the drift early or don't bother.When a trailing monitor scores a
session over threshold on scope-overreach or premature-completion, injecting a
shortsystem-reminder
-style nudge β"you were asked to fix the login bug butβ generally steers the agent back.
are now refactoring the session module"
Buteffectiveness drops the further the agent has already committed to the, so the monitor must run frequently enough to catch drift early
wrong path
([Apollo Research],
2026). That sentence is the entire argument for killing the terminal-only gate:
the redirect that works cheaply at turn three is nearly useless at turn thirty.
The redirect gets weaker exactly as fast as the loop's confidence gets stronger.
Compound interest, running the other way. A check that only fires at the end isn't a safety net; it's an autopsy.
And because the monitor is a separate context, it can be a separate provider β
which is a feature, not an accident.
Don't let the agent pick its own referee.Models share blind spots with
themselves: a monitor from the same family tends to trust the agent's reasoning
patterns β Apollo observed Claude models being too trusting of their own
reasoning, GPT models over-suspicious as graders. Mixing providers across the
monitoring pipeline yields oversight that doesn't inherit the supervised
agent's biases. The skeptic works best when it isn't the defendant's cousin.
Concretely, the difference is one structural move. Here's the naive loop
everyone starts with β one check, at the very end:
while true; do
cat prompt.md | claude -p --dangerously-skip-permissions
grep -q "COMPLETE" progress.md && break # the ONLY check, and it's last
[ $((i++)) -ge 50 ] && break # the counter, not a judgment
done
Everything between kickoff and COMPLETE
is unsupervised. Now put a skeptic
inside the timeline β an external monitor that reads the trajectory at every
turn boundary and can halt-and-redirect partway through, even mid-way through a
sub-agent's run:
// A mid-flight monitor: runs alongside, can interrupt β not a watchdog
{
"sessionId": "sess_β¦",
"cadence": "every-turn", // not "on-exit"
"monitor": { "judge": {
"adapter": "gemini", // a DIFFERENT provider than the executor
"prompt": "Score scope-overreach, wrong-diagnosis, premature-completion 0β1. Quote the turn."
}},
"onDrift": { // trajectory failure β steer, early
"above": 0.6,
"action": "nudge",
"text": "You were asked to fix the retry test, not rewrite the queue. Return to the task."
},
"onIrreversible": { "action": "block" } // single dangerous action β stop, synchronously
}
That's the reversibility split in config: single dangerous actions get blocked
before they run; multi-turn drift gets caught early, while the redirect still
works. The monitor lives in a daemon, so it keeps checking after your screen
locks β and because it's an external adapter, it runs on any executor: Claude
Code, Codex, or a cheap GLM/DeepSeek model via Hermes. The loop keeps its persistence; you just stop letting it persist unsupervised.
This matters most where the money is. A mixed fleet β frontier model plans, cheap
model executes in a loop, the routing math its own post β
is where self-reinforcement is cheapest to trigger and most expensive to catch
late. The $0.10 executor will loop confidently into a wall; something external has
to notice before iteration thirty.
To be fair to the loop, because fairness is the point: for a low-stakes,
disposable, sandboxed project, the plain overnight loop is the right tool.
Someone shipped a full prompt-history feature to a React Native app from an
11-task list for about $1, exiting early at iteration 8 on the completion
sentinel β it compiled and worked (demo talk, 2026).
Well-scoped, throwaway, checked by real tests: loop away. The trouble starts the
moment it's code you're accountable for β "the loop wrote it" has never once
been a defense.
So "kill the loop" doesn't mean kill iteration β iteration is how these agents
converge at all. It means kill the unsupervised loop: the one whose only check
sits at the finish line, refueled by a watchdog, grading its own homework every
pass. Keep the while true
. Just put a skeptic inside it, running alongside,
allowed to interrupt.
Because a loop, on its own, is confidence with an exit code. Persistence isn't the
same as being right, and this whole series turns on one question first asked in
the hub piece: when your agent says
"done," what β other than the agent β decided that was true? A loop answers
"nothing, but enthusiastically." The only real answer is to have something that
isn't the agent look at where it's going before it gets there.
If your loop already checks itself mid-flight, or I've mis-drawn where the
terminal gate fails you, tell me where β I'll fix the piece.
Ten pieces, one argument. Start anywhere; each one cross-links the rest.
| Piece | The one idea | |
|---|---|---|
| 1 | ||
Written by the maintainer of agentproto (Apache-2.0, source). Same contract as our /compare page β dated facts, named strengths, corrections by issue. Got something wrong? File an issue.
Building agentproto in the open β follow @theagentproto and @agentik_ai on X.