TL;DR
Anthropic’s Claude Code team published a June 30, 2026 guide that defines an AI loop as an agent repeating work until a stop condition is met. Thorsten Meyer AI’s July 1 analysis frames the four loop types as a “delegation ladder,” showing what developers and businesses can hand off at each stage while warning that not every task needs autonomy.
Anthropic’s Claude Code team has published a new guide defining AI agent loops as repeated cycles of work that continue until a stop condition is reached, a framework that matters because it gives developers and businesses a clearer way to decide how much control to hand to automated systems.
The guide, titled “Getting started with loops” and credited in the source material to Delba de Oliveira and Michael Segner, describes several loop patterns available in or around Claude Code. Thorsten Meyer AI’s July 1 dispatch interprets those patterns as a four-rung delegation ladder: turn-based skills, goal-based loops, time-based loops and proactive workflows.
The confirmed framework starts with turn-based skills, where a person still starts each task but can encode checks so the agent verifies its own work. It then moves to goal-based loops, where a success condition and turn cap tell the agent when to keep working or stop.
The higher rungs hand off more control. Time-based loops start from a schedule or interval rather than a fresh human prompt, while proactive workflows are described as event-driven systems that can start work without a person present in real time. The source material says some features are research previews, so availability and behavior may vary.
The delegation ladder: four agentic loops, and what each lets you stop doing
Strip the hype and a “loop” is simple — an agent repeating work until a stop condition is met. The useful lens isn’t the mechanics, it’s what you hand off. Four loop types = four rungs of delegation, from a tool you operate to a process that runs.
The whole framework reduces to one question about your own work: where am I the bottleneck, and which single piece can I hand off? Can you write the check? Is the goal concrete? Does the work arrive on a schedule? That answer picks your rung — and you climb one step at a time. The real skill isn’t operating a loop; it’s the judgment of what to delegate and how far — enough hands off to gain leverage, enough on the wheel that “runs without you” doesn’t become “runs away from you.”
A Clearer Autonomy Scale
The framework matters because it shifts the question from better prompting to controlled delegation. Instead of treating an AI agent as a tool that waits for instructions, the model asks which part of the work a person no longer wants to handle: the check, the stop condition, the trigger or the prompt itself.
For developers, the main impact is operational. A self-verifying skill can reduce repeated manual inspection, while a goal-based loop can keep iterating against a measurable target such as a passing test suite or a performance score. For organizations, the larger question is governance: more autonomy can save time, but it also requires clear limits, cost controls and review paths.
The source material also flags a financial and operational constraint: autonomy is metered. Longer loops and many-agent runs can increase usage costs, so historical results from pilots should not be treated as guarantees of future cost or performance.

AI Workflow Automation for Bloggers: Build a Simple Content System to Research, Write, Optimize, and Repurpose Posts Faster with AI and No-Code Tools (AI Toolkit for Bloggers 2026 Book 8)
As an affiliate, we earn on qualifying purchases.
As an affiliate, we earn on qualifying purchases.
From Prompting To Processes
The Thorsten Meyer AI dispatch says the phrase “designing loops instead of prompting” has become current in AI engineering, but definitions often vary. Anthropic’s contribution, according to the source material, is a plain definition: an agent repeats cycles of work until a defined stopping point.
The first rung, turn-based work, resembles the agent usage many developers already know: a person prompts, the agent acts, checks and returns a result, and the person chooses the next step. The dispatch says the upgrade is to encode verification in a Skill, such as requiring a UI change to be tested in a browser before it is treated as complete.
The second rung, goal-based work, addresses a known problem in agentic systems: an agent may stop too early if it judges the result as good enough. In Anthropic’s described pattern, a separate evaluator model checks the stated goal and can send the agent back to work until the condition is met or a maximum turn count is reached.
“Strip the hype and a “loop” is simple — an agent repeating work until a stop condition is met.”
— Thorsten Meyer AI dispatch
AI task management software
As an affiliate, we earn on qualifying purchases.
As an affiliate, we earn on qualifying purchases.
Limits Still Need Testing
Several details remain developing. The source material says some features are research previews, but does not specify which teams, plans or environments can use every loop type today. It is also not clear from the provided material how the described patterns will perform across different codebases, teams or regulated workflows.
The framework gives a structure for delegation, but it does not remove the need for human review. Outcomes will depend on the quality of the checks, the clarity of the goal, the suitability of the model and the safeguards around cost, permissions and failure handling.
AI scheduling and trigger systems
As an affiliate, we earn on qualifying purchases.
As an affiliate, we earn on qualifying purchases.
Pilots Before Broad Runs
The next step for teams is likely small-scale testing. The source material recommends using the right primitive, the cheapest capable model, clear stop criteria and pilots before large runs involving many agents.
Developers will also need to watch usage closely through tools such as /usage, according to the dispatch, and prefer scripts over repeated reasoning where deterministic automation is enough. The practical test is whether a loop removes a real bottleneck without creating new review, cost or control problems.
AI self-checking code assistants
As an affiliate, we earn on qualifying purchases.
As an affiliate, we earn on qualifying purchases.
Key Questions
What did Anthropic publish?
Anthropic’s Claude Code team published a June 30, 2026 guide called “Getting started with loops”, according to the source material. It defines loops as agent work cycles that repeat until a stop condition is met.
What is the “delegation ladder”?
The delegation ladder is Thorsten Meyer AI’s framing of Anthropic’s loop types. It describes four steps where a person hands off the check, then the stop condition, then the trigger, and finally the prompt.
What are the four loop types?
The four types in the source material are turn-based skills, goal-based loops, time-based loops and proactive workflows. Each gives the agent a different level of responsibility.
Why does this matter for businesses?
It gives businesses a clearer way to decide where AI agents can save time and where human control should remain. The main tradeoff is between leverage and oversight, especially when usage costs and quality checks are involved.
Is every task suited to an AI loop?
No. The source material says Anthropic’s caution is to start with the simplest method and move up the ladder only when the task justifies more autonomy.
Source: Thorsten Meyer AI