TL;DR

Anthropic’s Claude Code team has published a framework describing AI loops as repeated work cycles that continue until a stop condition is met. Thorsten Meyer AI frames the model as a “delegation ladder,” showing how teams can hand off checking, stop conditions, triggers and prompts.

Anthropic’s Claude Code team has published a framework for four agentic AI loops, defining a loop as an agent repeating cycles of work until a stop condition is met. The development matters because it gives developers and business teams a clearer way to decide how much work to delegate to AI systems.

The framework, credited to Delba de Oliveira and Michael Segner on Anthropic’s Claude blog, describes loops as a practical engineering pattern rather than a new category of AI product. According to the source material, the four loop types are turn-based, goal-based, time-based and proactive.

Thorsten Meyer AI’s analysis frames those loop types as a delegation ladder. On the first rung, users hand off the check by encoding verification into a skill. On the second, they hand off the stop condition by using a goal and an evaluator model. On the third, they hand off the trigger through a timed loop or schedule. On the fourth, they hand off the prompt itself through event-driven workflows and auto mode.

The source material says Anthropic’s guidance starts with restraint: not every task needs a loop. Teams are advised to begin with the simplest method that works, then move to more autonomous patterns only when the task justifies the added cost, complexity and risk.

At a glance
analysisWhen: Anthropic published the source framewor…
The developmentAnthropic’s Claude Code team published a framework for four agentic loop types, and Thorsten Meyer AI reframed it as a delegation ladder 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

AI Work Moves Upstream

The framework gives teams a more precise way to discuss AI delegation. Instead of asking whether an AI system is autonomous in broad terms, the model asks which part of the workflow has been handed off: checking, completion judgment, starting the work or forming the request.

That distinction matters for software teams and business operators because each rung changes the user’s role. A turn-based loop still leaves a human driving each prompt. A goal-based loop reduces manual follow-up. A time-based loop lets scheduled work begin without a prompt. A proactive workflow can respond to events without a person present in real time.

The source material also links autonomy to cost control. It recommends clear stop criteria, turn caps, cheaper capable models where appropriate, scripts instead of repeated reasoning, and usage monitoring through tools such as /usage.

Agentic AI Engineering: Building AI Agents for Beginners: A Hands-On Guide to No-Code Workflows, LLM Tools, RAG, Automation, and Safe Multi-Agent Systems

Agentic AI Engineering: Building AI Agents for Beginners: A Hands-On Guide to No-Code Workflows, LLM Tools, RAG, Automation, and Safe Multi-Agent Systems

As an affiliate, we earn on qualifying purchases.

As an affiliate, we earn on qualifying purchases.

Claude Code Sets The Terms

Anthropic’s blog post, titled “Getting started with loops”, was published on June 30, 2026. Thorsten Meyer AI’s July 1, 2026 analysis uses Anthropic’s definitions, primitives and examples, while adding the delegation ladder framing.

The source material gives a front-end development example for the first rung. A skill can require the agent to start a dev server, click a new control, capture screenshots, check the browser console and run a performance trace before treating a UI change as complete.

For the goal-based rung, the example is a performance target: asking an agent to get a homepage score above 90 and stop after a set number of attempts. The analysis says deterministic goals such as passing tests or crossing a threshold work better than vague targets.

Workflow Automation with Microsoft Power Automate: Design and scale AI-powered cloud and desktop workflows using low-code automation

Workflow Automation with Microsoft Power Automate: Design and scale AI-powered cloud and desktop workflows using low-code automation

As an affiliate, we earn on qualifying purchases.

As an affiliate, we earn on qualifying purchases.

Research Preview Boundaries Persist

Several details remain limited by the source material. It says some features are research previews, but does not specify the full availability, pricing or production-readiness of each primitive across all users and environments.

It is also unclear how consistently these loops perform across different codebases, business workflows and risk levels. The analysis stresses that output quality depends on the system around the loop, including clean code patterns, self-verification, review by a fresh-context agent and fixes to the workflow rather than only the individual result.

Project Management with AI For Dummies

Project Management with AI For Dummies

As an affiliate, we earn on qualifying purchases.

As an affiliate, we earn on qualifying purchases.

Pilots Before Larger Agent Runs

The next step for teams is likely small-scale testing. The source material recommends pilots before big runs, especially before sending work to hundreds of agents or letting scheduled and event-driven workflows operate with less direct supervision.

Readers tracking the framework should watch Anthropic’s Claude Code documentation for feature status, examples and limits. For teams adopting the model now, the practical question is which single bottleneck can be handed off first without losing control of quality, cost or review.

EVENT-DRIVEN ENTERPRISE APPLICATIONS: Messaging workflows asynchronous coordination and business process automation

EVENT-DRIVEN ENTERPRISE APPLICATIONS: Messaging workflows asynchronous coordination and business process automation

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 framework describing AI loops as repeated work cycles that continue until a stop condition is met.

What are the four agentic loop types?

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

What is the delegation ladder?

Thorsten Meyer AI uses that phrase to describe how each loop hands off more work: first the check, then the stop condition, then the trigger, then the prompt itself.

Are all of these features generally available?

The source material says some features are research previews. Full availability and limits should be checked against Claude Code documentation.

What should teams do first?

The guidance is to start with the simplest working approach, add clear checks, set cost controls and use larger autonomous runs only after a smaller pilot succeeds.

Source: Thorsten Meyer AI

You May Also Like

The Model Is Only 10%: The Real Lesson of the New SDLC

A May 2026 Google paper says AI coding success depends less on models than on tests, tools, context and oversight.

Apple Is Reaching for Chinese Memory. Europe Doesn’t Even Have That Option.

Apple is reportedly seeking U.S. approval to buy CXMT memory chips, exposing Europe’s lack of domestic DRAM and HBM options.

Capability or Control: The European Enterprise AI Playbook for the AI Act Era

Thorsten Meyer AI published an enterprise AI playbook framed around capability and control in the EU AI Act era.

Candor as a Moat: A Critical Reading of Dario Amodei and Anthropic

A critical reading argues Dario Amodei’s transparency on AI risk also supports Anthropic’s market position.