Install any skill in seconds. Free to start, no credit card required.
Get Started Free →Universal discipline for any LM-driven loop — agent retries, plan-act-observe, multi-agent handoffs, optimiser passes, test-fix cycles. Encodes the one rule every framework documents quietly and every team relearns expensively: the LM in the loop is NEVER a reliable terminator. Termination must be provided by an explicit counter + exit predicate + stagnation signal + escalation path that live OUTSIDE the LM's control. This is a tool- level, framework-agnostic skill. It maps onto LangGraph (recur
.claude/skills/agentsope-agentsop-bounded-loop/SKILL.md| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-01 | ✗→✓ | ▲ Improved | 265% | 0% |
| case-02 | ✗→✓ | ▲ Improved | 312% | 0% |
| case-03 | ✗→✓ | ▲ Improved | 243% | 0% |
| case-06 | ✗→✓ | ▲ Improved | 273% | 0% |
| case-18 | ✗→✓ | ▲ Improved | 317% | 0% |
> Source posture: every load-bearing claim is cited inline with a short tag > resolved against references/R1-source-evidence.md and > references/R2-cross-framework.md. Examples cite the real GitHub issues > they're distilled from.
Activate this skill when any of the following is true:
→ retry, plan → act → observe → re-plan, draft → critique → revise, test → fix → re-test.
GRAPH_RECURSION_LIMIT (LangGraph), MaxIterationsExceeded (LangChain AgentExecutor), "agent exceeded max_iter" (CrewAI), max_turns reached (OpenAI Agents SDK), stop_reason="max_tokens" mid-tool-use (Anthropic).
recursion_limit=200 — this is the canonical anti-pattern this skill exists to prevent.
or supervisor patterns — these are exposure-multipliers for unbounded loops (see [gh/crewai-330]).
RLHF, self-refining agent) where "stop when good enough" is the termination criterion — this is never sufficient on its own.
iterative refinement workflow — every code-agent in production (Cursor, Aider, Devin, Claude Code) ships with an explicit step budget.
Do not activate for: single LLM calls, one-shot RAG queries, stateless tool pipelines, or flows where the cycle is provably bounded by data (e.g., "iterate once per row in this fixed list").
Every loop body must produce a state change that proves progress — and the proof must be checkable without calling another LM.
Read that twice. It contains four claims:
output) is the definition of a stuck loop. If your body might return the same value twice, the loop is already broken; the safety net just hasn't fired yet.
tried again, same error" is a change but not progress. The witness has to be monotone: counter strictly increasing, error list strictly shrinking, confidence strictly rising, or a new fact added to the plan.
dict.get("retries") < N,not await llm.ainvoke("are we done?"). If you ask the LM to evaluate termination, you've recreated the problem one level up — now that loop needs bounding.
(stop_reason="end_turn", final_answer tool, etc.) but the framework must verify against the predicate before terminating. Otherwise an LM that always says "let me try once more" runs forever.
Every framework ships a default cap:
recursion_limit=25 [lc-docs/errors]Agent.max_iter=20, Crew.max_rpm [crewai-docs/agents]AgentExecutor: max_iterations=15 (deprecated default)Run.max_turnsmax_tokens per call (per-call, not per-loop)These are billing safety nets, not control flow. The LangGraph docs say so explicitly:
> "If you are not expecting your graph to go through many iterations, you > likely have a cycle. Check your logic for infinite loops." > — [lc-docs/errors] https://docs.langchain.com/oss/python/langgraph/errors/GRAPH_RECURSION_LIMIT
And the cheatsheet adds:
> "Hitting the limit typically indicates an underlying design flaw. The > recursion limit is a safety net for runaway code, not a primary control > flow mechanism." > — [cheatsheet/gotchas]
When you raise the limit to "fix" the error, you've moved the bug further away, not removed it. The text-to-SQL agent in [gh/6731] would have hit recursion_limit=100 after burning 5× the Databricks quota.
A bounded loop has three independent termination axes; you need at least two firing in series:
┌─── (a) success predicate met → exit success
│
[loop body] ────┼─── (b) counter / budget exhausted → exit escalation
│
└─── (c) stagnation detected → exit escalationIf you only have (a), the LM controls termination — it doesn't. If you only have (b), you'll burn the budget on N identical iterations. If you only have (c), one-shot flake will look like success.
Compose all three.
A coder agent walks this top-down. Each step has a decision gate — answer "no" and you go back, not forward.
Before adding any bound, write down on paper:
this to be progress? That field is your progress witness.
Gate: if you can't name the witness, you don't yet understand the loop well enough to bound it. Don't add a counter — go think.
Common witnesses by workflow shape:
| Workflow | Witness | |---|---| | Tool-call → error → retry | last_error text must change (or counter increments) | | Plan → act → observe | plan_revision: int strictly increases | | Draft → critique → revise | critique length shrinks OR revision_count increments with non-empty diff | | Test → fix → re-test | failing_tests set strictly shrinks | | Optimiser sweep | best_metric strictly improves (with patience) | | Multi-agent handoff | task_status transitions through a state machine, not "in_progress → in_progress → ..." |
Counter discipline:
agents can call each other (CrewAI delegation, LangGraph subgraphs), the counter must live in the shared state, not per-agent max_iter — that is the CrewAI ping-pong bug [gh/crewai-330].
Annotated[int, operator.add] in LangGraph,not a state replace.
can't see in LangSmith / Maxim / Datadog is a counter you'll forget is there.
Pseudocode (framework-agnostic):
pythondef loop_body(state): new_state = do_one_iteration(state) new_state["retries"] = state.get("retries", 0) + 1 return new_state def should_continue(state) -> Literal["continue", "give_up"]: if state["retries"] >= MAX_RETRIES: return "give_up" if success_predicate(state): return "end" return "continue"
The counter alone wastes (N-1) iterations on identical work. Add a progress witness comparison:
pythondef should_continue(state): if state.get("last_witness") == state.get("witness"): return "give_up_stagnant" if state["retries"] >= MAX_RETRIES: return "give_up_budget" if success_predicate(state): return "end" return "continue"
Stagnation signals worth detecting:
last_error two iterations running.tool_calls hash (same tool, same args) two iterations.plan_revision did not increment.failing_tests did not shrink (test-fix loop).When stagnation fires, always escalate — don't retry.
The LM must see the loop counter and the last error / last witness. If it doesn't, it will happily repeat. Concretely:
retries and last_error in the messagespassed to the LLM node — or render them into the system prompt at each iteration.
context=[...], not in Crew.memory (which is muddier).
include "Attempt {n} of {N}. Previous error: {err}. If you cannot fix it on this attempt, return final_answer with status=failed."
Without this, the LM thinks it's on iteration 1 forever. The framework's counter is in your code; the behavioural counter must be in the prompt.
The framework's safety net exists for a reason — runaway billing. Don't disable it. Instead, build the graceful give-up that catches the counter/stagnation exit:
give_up node that calls interrupt({"reason": ...}),preserving the full state for a human or outer agent to inspect.
Task with human_input=True that fires when themain task fails the validation in expected_output.
human_escalation tool that the model is forced tocall when attempt == N.
Run.status == "incomplete" /incomplete_reason == "max_turns" in the caller and surface to user.
Rule of thumb: a loop without a give-up branch is a loop that fails to a stack trace. That's not graceful.
Even with counter + witness + escalation, each individual iteration can be expensive (one tool call doing a 200k-token web search). Add:
asyncio.wait_for(loop, timeout=T) at theoutermost caller.
max_rpm, OpenAI tier limits, Anthropicrequests_per_minute. Hit these before you hit the model's rate-limit error which adds backoff + more retries.
These are not redundant with the counter — they're orthogonal axes. A 3-iteration loop where one iteration runs for 4 hours still wedges your system.
Write a regression test that injects a permanent failure and asserts:
This is the same shape as [gh/6731]'s recommended fix: "Add a regression test that injects a permanent SQL error and asserts the graph terminates within 3 iterations." Steal that pattern.
Each operation is a primitive a coder agent can invoke. Format: Trigger → Action → Output → Evidence.
with a monotonic semantics (LangGraph: Annotated[int, operator.add]; CrewAI: shared dict in Crew context or Flow state; Claude SDK: app variable). Increment inside the loop body; check in the exit predicate.
behaviour.
[gh/6731] (text-to-SQL fix), [lc-docs/errors]("explicit termination conditions are the right answer").
iterations on identical retries.
(last_error, last_tool_call_hash, last_witness) in state. In the exit predicate, compare current vs previous before checking the counter. Same → exit stagnant, don't increment.
cases where iterations are progressing slowly.
[gh/6731] (LLM was retrying identical query 20 times —stagnation would have fired after 1).
LangGraph: give_up node → interrupt({"reason", "state"}). CrewAI: fallback Task(human_input=True) or Flow @listen("failed") branch. Claude SDK: human_escalation tool injection. OpenAI Agents: catch incomplete_reason == "max_turns" in caller.
or outer agent to diagnose.
[lc-blog/interrupt] four-pattern table; Aider's REPLreturn-to-human on failed test.
search, code execution).
asyncio.wait_for at outer caller; enforce per-model requests_per_minute. Any one tripping → escalation (OP-3).
expensive iteration" can run away.
max_rpm;OpenAI max_completion_tokens / max_prompt_tokens on Run.
iterations to prove progress. Declare it as a typed field. The exit predicate verifies it changed; the LM's prompt is told to set it.
no-op.
[cheatsheet/gotchas] "Treat each node like a purefunction — return a partial state update"; LangChain best practices.
recursion_limit / max_iter."(b) is there a witness? (c) does the LM see the previous error? Add what's missing. Leave the framework default in place — it's a circuit breaker, not a control knob.
of papering over the failure.
[gh/6731] maintainer marked "not planned" — i.e., thisis by design. [cheatsheet/gotchas] "indicates an underlying design flaw."
[gh/6731](https://github.com/langchain-ai/langgraph/issues/6731), maintainer labelled "not planned."
the Databricks query returned an error, the agent retried the same broken SQL 20 times until the default recursion_limit=25 fired. It had worked on 0.6.x; the upgrade exposed the missing exit condition.
recursion_limit to 100." That makes thebleeding worse and confirms the cheatsheet's diagnosis [cheatsheet/gotchas].
python class S(TypedDict): messages: Annotated[list[AnyMessage], add_messages] retries: Annotated[int, operator.add] last_error: str | None
state["last_error"] is the sameas the new error, route to give-up — don't burn 2 more attempts on the identical broken query.
last_error into the next LLM prompt — the content ofthe SQL error usually tells the LLM whether to retry or abandon.
interrupt() to ask the user:"Tried 3 times, got: {last_error}. Should I rewrite the query differently or stop?"
asserting termination within 3 iterations.
iteration 2 (same query, same error). Quota cost capped. Failure mode observable in LangSmith. Maintainer-labelled-"not-planned" issue becomes a non-issue without an upstream patch.
graph. The LM is never the terminator.
github.com/crewAIInc/crewAI/issues/330 + related issues #4783, #2606 + azguards.com writeup on "the delegation ping-pong".
allow_delegation=True on all 3 worker agents. Agent A delegated to B; B delegated back to A; A delegated to C; C delegated back to A. The per-agent max_iter=20 did NOT propagate across the handoffs — every delegation reset the count. Token bill 10× expected; the loop only ended when OpenAI rate-limited them.
need different specialists.
limitation but recommends "design your agents not to delegate circularly" — i.e., the framework's safety net is genuinely bypassed.
max_iter per agent to 100." The bug is thatmax_iter doesn't cross handoffs — raising it does nothing [gh/crewai-330].
allow_delegation=False on all worker agents. Only themanager agent gets delegation. This kills the cycle structurally — the CrewAI canonical advice from [azguards.com].
Crew context (Flow stateif using Flows). Each delegation increments; manager checks before dispatching.
(from_agent, to_agent, task_id) —if the same triple recurs, route to the manager's "I-can't-resolve-this" fallback Task with human_input=True.
timeout=600) — wall-clock cap regardless of token budget.
needs to be conditional — @listen gives explicit routing [crewai-docs/flows], eliminating the LM-driven handoff.
Token bill returns to expected level. Audit trail preserved (the manager owns dispatch; the handoff counter logs each).
state, not per-agent config. Per-agent max_iter is a useful inner net but not a sufficient outer net.
max_iter not crossing handoffs), the right move is to remove the primitive's source of failure (allow_delegation=False), not raise its limit.
Concrete don'ts. Each has a real-world example.
recursion_limit / max_iter / max_turns to "fix" aloop. This is the anti-pattern this skill exists to name. The framework defaults are circuit breakers; raising them moves the failure further away while doubling the cost. Source: [gh/6731] maintainer "not planned"; [cheatsheet/gotchas] "indicates an underlying design flaw."
llm.invoke("are we done?") to decide whether to exit recreates the problem one level up — and the answer is biased ("let me just check one more thing"). The LM may suggest finality (a final_answer tool, stop_reason="end_turn"); the framework code must verify.
hits the token cap and runs for hours. Token budget is one of three axes (OP-4), not the whole bound.
max_iter in multi-agent systems with delegation.CrewAI's Agent.max_iter does not propagate across delegation handoffs [gh/crewai-330]. The counter must be shared.
recursion_limit and raises is not "bounded" in any useful sense — it's "crashed with stacktrace." A bounded loop has a clean give-up branch (OP-3).
Python state but never surface "attempt N of M, previous error: X" in the LM's prompt, the LM thinks it's on attempt 1 forever and emits the same plan. Counter must be in the behaviour, not just the control plane.
Classic optimiser footgun. The metric can plateau and resume; the loop should be bounded by both a max-step count and a patience counter — DSPy and W&B sweeps document this. Source: optimiser docs across DSPy / Optuna / W&B.
the LM raises an exception inside the loop body and your retry decorator wraps the whole call, the bounded loop becomes an unbounded retry. Bound at every layer the framework gives you.
interrupt() / human_input=True only on success. Thegive-up branch is the most important place for human-in-the-loop — that's where the agent is admitting it's stuck. Routing the failure to a stack trace instead of a human wastes the diagnostic moment.
("iterate once per row in this 500-row CSV"). The bound is the data size; counters/witnesses are over-engineering.
The same termination contract expressed in each framework's vocabulary. Use this table when porting a bounded loop between frameworks — the shape is identical, only the names change.
| Concept | LangGraph | CrewAI | Claude SDK | OpenAI Agents | DSPy | |---|---|---|---|---|---| | Iteration counter | state["retries"]: Annotated[int, operator.add] | shared dict in Crew context or Flow state | app-side for i in range(max_iter): | Run(max_turns=N) config | optimiser max_bootstrapped_demos | | Exit predicate | conditional edge function returning "END" | manager Task validating expected_output | if stop_reason == "end_turn": break | Run.status == "completed" | metric early-stopping (with explicit patience) | | Safety-net default | recursion_limit=25 | Agent.max_iter=20 + Crew.max_rpm | max_tokens per call | max_turns (no default) | none (dataset size) | | Progress witness | typed state field updated by node | Task expected_output mandates delta | validator on tool output | function schema enforces non-empty delta | metric must strictly improve | | Stagnation signal | compare state["last_X"] == state["X"] in conditional edge | task callback hashes output → stored in context | compare tool_use blocks across iterations | compare tool_calls in Run steps | patience counter (steps since best) | | Escalation | interrupt({"reason": ...}) node | fallback Task with human_input=True | tool call to human channel | incomplete_reason == "max_turns" handler | terminate optimiser + log | | Resume after escalation | Command(resume=...) | re-kickoff() with appended human input | re-invoke with new user message | submit_tool_outputs(...) | re-run with adjusted config | | Outer safety bounds | wrap graph.ainvoke in asyncio.wait_for | Crew.max_rpm + outer wait_for | sum usage.input_tokens + usage.output_tokens across calls; wall-clock | Run(max_completion_tokens, max_prompt_tokens) | num_threads budget + wall-clock |
Translation example. "Text-to-SQL agent retries the broken query 20 times" expressed in three frameworks:
| | LangGraph | CrewAI | Claude SDK | |---|---|---|---| | Counter | retries: Annotated[int, operator.add] in TypedDict | Crew(memory=False, context={"retries": 0}) updated in callback | attempt = 0 in caller | | Increment | LLM node returns {"retries": 1} | Task on_complete callback updates dict | attempt += 1 after each Messages call | | Exit | conditional edge → END when retries >= 3 | manager Task aborts when context counter ≥ 3 | if attempt >= 3: break | | Witness | last_error: str field updated by tool node | last_error key in Crew context | track in caller variable | | Stagnation | edge function compares last_error | callback compares stored vs new | caller compares strings | | Escalation | interrupt({"err": state["last_error"]}) node | fallback Task(human_input=True) | tool call human_escalate(err) | | Outer net | recursion_limit=10 (leave default low) | Crew(max_rpm=30) + wait_for(60s) | max_tokens=2048 + wait_for(60s) |
The translation is mechanical because the contract is universal. That is the entire point of this skill.
Short tags resolved against references/R1-source-evidence.md and references/R2-cross-framework.md:
[gh/6731] = github.com/langchain-ai/langgraph/issues/6731 — text-to-SQLrecursion_limit, maintainer "not planned"
[gh/crewai-330] = github.com/crewAIInc/crewAI/issues/330 — delegationping-pong; related #4783, #2606
[lc-docs/errors] = docs.langchain.com/oss/python/langgraph/errors/GRAPH_RECURSION_LIMIT[lc-blog/interrupt] = www.langchain.com/blog/making-it-easier-to-build-human-in-the-loop-agents-with-interrupt[cheatsheet/gotchas] = sumanmichael.github.io/langgraph-cheatsheet/cheatsheet/faqs-gotchas/[crewai-docs/agents] = docs.crewai.com/en/concepts/agents[crewai-docs/flows] = docs.crewai.com/en/concepts/flows[azguards.com] = azguards.com/technical/the-delegation-ping-pong-breaking-infinite-handoff-loops-in-crewai-hierarchical-topologies/[anthropic-docs] = docs.anthropic.com/en/api/messages — Messages API +Agent SDK "step budget" pattern
[dspy-docs] = dspy.ai/docs/building-blocks/optimizers — declaredevaluation budget
[openai-agents-docs] = platform.openai.com/docs/assistants — Runconfig max_turns, max_completion_tokens, max_prompt_tokens
Every LM loop must carry an explicit counter in state, a progress witness the loop body must update, a stagnation detector that compares the witness across iterations, and a graceful escalation branch when either fires. Never raise the framework's recursion_limit / max_iter / max_turns to "fix" a loop — that limit is a billing safety net, not control flow, and raising it moves the failure further away while burning more tokens. The LM in the loop is never a reliable terminator. Source-of-truth case: LangGraph issue #6731 marked "not planned" — the framework will not save you; the discipline must.
| Case | Status | Duration (ms) | Turns | Tokens | Tool calls | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Without | With | Δ | Without | With | Δ | Without | With | Δ | Without | With | Δ | ||
case-01 | fail→pass | 36,095 | 37,395 | +4% | 1 | 1 | 0% | 3,173 | 11,568 | +265% | 0 | 0 | — |
case-02 | fail→pass | 14,612 | 13,016 | -11% | 1 | 1 | 0% | 2,451 | 10,105 | +312% | 0 | 0 | — |
case-03 | fail→pass | 16,768 | 12,803 | -24% | 1 | 1 | 0% | 2,932 | 10,071 | +243% | 0 | 0 | — |
case-04 | pass→pass | 15,053 | 16,092 | +7% | 1 | 1 | 0% | 2,345 | 10,541 | +350% | 0 | 0 | — |
case-05 | pass→pass | 15,264 | 11,361 | -26% | 1 | 1 | 0% | 2,311 | 9,585 | +315% | 0 | 0 | — |
case-06 | fail→pass | 17,071 | 18,789 | +10% | 1 | 1 | 0% | 2,976 | 11,099 | +273% | 0 | 0 | — |
case-07 | pass→pass | 17,164 | 17,695 | +3% | 1 | 1 | 0% | 2,683 | 10,479 | +291% | 0 | 0 | — |
case-08 | pass→pass | 16,479 | 20,567 | +25% | 1 | 1 | 0% | 2,569 | 10,893 | +324% | 0 | 0 | — |
case-09 | pass→pass | 15,386 | 10,650 | -31% | 1 | 1 | 0% | 2,376 | 9,523 | +301% | 0 | 0 | — |
case-10 | pass→pass | 8,545 | 6,059 | -29% | 1 | 1 | 0% | 1,249 | 8,722 | +598% | 0 | 0 | — |
case-11 | pass→pass | 15,608 | 16,247 | +4% | 1 | 1 | 0% | 2,512 | 10,379 | +313% | 0 | 0 | — |
case-12 | pass→pass | 21,470 | 20,440 | -5% | 1 | 1 | 0% | 3,946 | 11,644 | +195% | 0 | 0 | — |
case-13 | pass→pass | 16,117 | 16,242 | +1% | 1 | 1 | 0% | 2,632 | 10,569 | +302% | 0 | 0 | — |
case-14 | pass→pass | 14,489 | 12,929 | -11% | 1 | 1 | 0% | 2,357 | 9,755 | +314% | 0 | 0 | — |
case-15 | pass→pass | 17,730 | 18,928 | +7% | 1 | 1 | 0% | 2,703 | 10,940 | +305% | 0 | 0 | — |
case-16 | pass→pass | 10,349 | 7,151 | -31% | 1 | 1 | 0% | 1,765 | 9,073 | +414% | 0 | 0 | — |
case-17 | pass→fail | 18,729 | 18,613 | -1% | 1 | 1 | 0% | 2,252 | 10,446 | +364% | 0 | 0 | — |
case-18 | fail→pass | 16,606 | 18,056 | +9% | 1 | 1 | 0% | 2,537 | 10,588 | +317% | 0 | 0 | — |
case-19 | fail→pass | 16,630 | 15,501 | -7% | 1 | 1 | 0% | 2,499 | 10,324 | +313% | 0 | 0 | — |
case-20 | pass→pass | 10,729 | 6,526 | -39% | 1 | 1 | 0% | 2,060 | 9,040 | +339% | 0 | 0 | — |
case-21 | pass→pass | 11,521 | 14,123 | +23% | 1 | 1 | 0% | 2,131 | 10,176 | +378% | 0 | 0 | — |
case-22 | pass→pass | 9,031 | 6,374 | -29% | 1 | 1 | 0% | 1,731 | 8,851 | +411% | 0 | 0 | — |
DecimalAI ran this skill against gemini-3.6-flash twice over the same eval suite — once with the skill loaded and once without — and compared the two runs case by case. 22 cases were attempted. The headline lift of +23 percentage points is the difference between those two pass rates over the 22 comparable cases. 1 case got worse with the skill loaded, and it is included in that figure.
Without the skill loaded, the model failed this case. With it loaded, the same prompt on the same model passed. This is one improved case from the latest verified run; every case, including any that regressed, is in the table above.
Other measured skills in the registry, with their headline benchmark lift.