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.

At a glance
analysisWhen: Anthropic guide published June 30, 2026…
The developmentAnthropic’s Claude Code team has published a new guide to AI loops, and Thorsten Meyer AI has framed its four loop types as a practical ladder for deciding how much work to delegate to agents.
AI Dispatch · Insights · 1 July 2026

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 reframe
Climb the ladder and you stop doing one more piece yourself: first the check, then the stop condition, then the trigger, and finally the prompt itself. Anthropic’s own rule first: not every task needs a loop — start simplest, climb only when the work earns it.
The four loops, as rungs of delegation
↓ You drive (manual)It runs (autonomous) ↑
Turn-basedskills
You hand off the check — encode verification in a Skill so it validates its own work.
trigger: your prompt
stop: it judges done
Goal-based/goal
You hand off the stop condition — an evaluator model keeps it working until “done” is met or a turn cap hits.
trigger: your prompt
stop: goal / max turns
Time-based/loop · /schedule
You hand off the trigger — a clock starts the work; local with /loop, cloud with /schedule.
trigger: an interval
stop: you cancel / done
Proactiveworkflows + auto mode
You hand off the prompt itself — event-driven, no human in real time; orchestrates many agents.
trigger: event / schedule
stop: per-task goals
Keep the output good — the system > the loop
Clean codebase — it copies your patterns Self-verify via skills A 2nd fresh-context agent reviews Fix the system, not just the instance
Keep the bill sane — autonomy is metered
Right primitive + cheapest capable model Clear stop criteria Pilot before a big run (100s of agents) Scripts > re-reasoning · watch /usage
The take

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.”

Source: “Getting started with loops,” Delba de Oliveira & Michael Segner (Anthropic), Claude blog, 30 June 2026. Definitions, primitives & examples are Anthropic’s; the “delegation ladder” framing is the author’s. Some features are research previews. Docs: code.claude.com/docs.
thorstenmeyerai.com

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)

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

Amazon

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.

Amazon

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.

Amazon

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

This content is for general information only and is not financial, tax or legal advice. Consult a qualified professional for decisions about your money.
You May Also Like

The Rise of Contactless Payments: What Businesses Need to Know

Get ready to transform your business with contactless payments—discover the key insights that could elevate your customer experience and boost sales.

The unbundling of the budget app. Why a conversational finance surface absorbs what the personal-finance apps charge for, and what survives the absorption.

OpenAI’s launch of a conversational finance feature inside ChatGPT marks a significant shift, absorbing core functions of standalone budget apps. What it means for the industry.

The Forward-Deploy Pivot: Why Anthropic and OpenAI Are Becoming Consulting Firms in the Same Week

Anthropic and OpenAI are establishing enterprise services firms, signaling a strategic move into consulting and AI-driven outcomes, challenging traditional industry players.