TL;DR

Anthropic’s Claude Code team has published a guide defining AI loops as repeated agent work cycles that run until a stop condition is met. Thorsten Meyer AI frames the guide as a four-step “delegation ladder,” showing what users stop doing as they move from turn-based skills to proactive workflows.

Anthropic’s Claude Code team has published a new guide to agentic AI loops, defining them as repeated cycles of agent work that continue until a stop condition is met, a framing that matters as more developers and businesses decide how much work to hand off to AI systems.

The guide, cited by Thorsten Meyer AI in a July 1 dispatch, groups loop patterns into four practical modes: turn-based skills, goal-based loops, time-based loops, and proactive workflows. Anthropic’s definitions and examples come from “Getting started with loops,” by Delba de Oliveira and Michael Segner, published on the Claude blog on June 30.

The confirmed core definition is narrow: a loop is an agent repeating work until a set endpoint is reached. Thorsten Meyer AI adds an interpretive frame, calling the sequence a delegation ladder: users first hand off checking, then the decision about when to stop, then the trigger that starts the work, and finally the prompt itself.

Anthropic’s caution is also part of the report: not every task needs a loop. The company’s recommended approach, as summarized by Thorsten Meyer AI, is to begin with the simplest workable pattern and climb only when the task justifies more autonomy.

At a glance
analysisWhen: Anthropic guide published June 30, 2026…
The developmentAnthropic’s Claude Code team published a June 30, 2026 guide on agentic loops, which Thorsten Meyer AI reframed on July 1 as a four-rung delegation model for AI work.
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

How Much Work Gets Delegated

The framework matters because it gives teams a clearer way to decide where humans remain in control and where AI systems can take over repeated work. In the first rung, a person still prompts the agent, but a Skill can encode verification steps so the system checks its own output before returning a result.

Higher rungs shift more responsibility away from the user. In a goal-based loop, an evaluator model can decide whether a success condition has been met. In a time-based loop, a schedule starts the work. In proactive workflows, events or schedules can trigger multi-agent work without a human prompt in real time.

For businesses, the key question is not whether AI can run longer, but which part of the process is safe and useful to delegate. Thorsten Meyer AI argues that the practical value is in finding the bottleneck: the check, the stop condition, the trigger, or the original request.

Amazon

AI workflow automation tools

As an affiliate, we earn on qualifying purchases.

As an affiliate, we earn on qualifying purchases.

From Prompting To Running Processes

The discussion lands amid wider interest in agentic engineering, where teams are moving from one-off prompts toward systems that can plan, act, verify, and retry. Thorsten Meyer AI says the phrase “designing loops instead of prompting” has become common, but definitions have varied.

The four-loop breakdown is meant to make those choices more concrete. Turn-based skills suit shorter tasks where the user still drives each round. Goal-based loops fit tasks with clear success criteria, such as passing tests or crossing a performance threshold. Time-based loops fit work that arrives on a schedule. Proactive workflows are positioned as the most autonomous pattern, using event-driven work and orchestration across agents.

The source material also flags cost and quality controls: use the right primitive, pick the cheapest capable model, define clear stop criteria, pilot before large runs, and monitor usage.

“Strip the hype and a loop is simple — an agent repeating work until a stop condition is met.”

— Thorsten Meyer AI dispatch, July 1, 2026

Amazon

AI process automation software

As an affiliate, we earn on qualifying purchases.

As an affiliate, we earn on qualifying purchases.

Limits Of Autonomous Runs

Several details remain unsettled. The source material says some features are research previews, so availability, behavior, and production readiness may vary by environment. It is also not yet clear how broadly teams will adopt these patterns outside Claude Code workflows.

The reliability of higher-autonomy loops depends on clear goals, measurable checks, and guardrails for cost and failure. Vague objectives can still leave room for an agent to stop too early or continue work without producing the result a user expected.

Amazon

AI task delegation platforms

As an affiliate, we earn on qualifying purchases.

As an affiliate, we earn on qualifying purchases.

Teams Test The Right Rung

The next step for developers and businesses is likely practical testing: choose one workflow, identify the human bottleneck, and decide which single duty can be delegated safely. Anthropic’s guide points readers to Claude Code documentation, while Thorsten Meyer AI’s framing pushes teams to move one rung at a time rather than treating autonomy as an all-or-nothing choice.

Amazon

AI loop management tools

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 guide called “Getting started with loops” on June 30, 2026, explaining loop patterns for agentic AI work.

What is an AI loop in this report?

An AI loop is described as an agent repeating cycles of work until a stop condition is met, such as a goal, cap, schedule, or task-specific completion check.

What are the four loop types?

The four types are turn-based skills, goal-based loops, time-based loops, and proactive workflows, according to the source material.

What is the delegation ladder?

Delegation ladder is Thorsten Meyer AI’s framing of Anthropic’s loop types. It describes what the user stops doing at each rung: checking, deciding when to stop, starting the work, and writing the prompt.

Does every AI task need a loop?

No. The cited guidance says teams should begin with the simplest workable setup and use loops only when the task benefits from repeated work, measurable checks, or scheduled automation.

Source: Thorsten Meyer AI

This article is for informational purposes only and is not medical advice. Always consult a qualified healthcare professional about your specific situation.
You May Also Like

Brazil: Pay the Family, Mind the Child

Thorsten Meyer AI’s atlas entry says Brazil’s Bolsa Família and Pix show how cash transfers can reach poor families at scale.

At Camp Breastie, Everyone Knows What It Means to Have Cancer

Camp Breastie provides a supportive environment where women affected by cancer share experiences and build community, emphasizing shared understanding.

Évian and the Fallout: What Europe Actually Wants From Amodei, Hassabis, and Altman

G7 leaders used the Évian AI lunch to seek safer access to frontier models after a U.S. directive forced Anthropic into a global shutdown.

Your Coding Agent Is an Attack Surface: The Claude Code Security Reckoning

Researchers linked Claude Code config and MCP paths to token theft and code execution risks in agentic development tools.