The Delegation Ladder: The Four Agentic Loops, and What Each One Lets You Stop Doing

TL;DR

Anthropic’s Claude Code team published a June 30 guide defining agentic loops as repeated work cycles that run until a stop condition is met. Thorsten Meyer AI’s July 1 dispatch reframes the guide as a four-rung delegation ladder: turn-based, goal-based, time-based and proactive workflows.

Anthropic’s Claude Code team has published new guidance on agentic loops, defining them as repeated AI work cycles that continue until a stop condition is met, a framing that matters as developers and businesses weigh how much work to delegate to AI systems.

The source article, published by Thorsten Meyer AI on July 1, 2026, builds on Anthropic’s June 30 Claude blog post, Getting started with loops, by Delba de Oliveira and Michael Segner. It says Anthropic’s definitions, primitives and examples come from Claude Code, while the delegation ladder framing is the author’s interpretation.

The article identifies four loop types: turn-based skills, goal-based /goal loops, time-based /loop and /schedule runs, and proactive workflows using auto mode. In that order, the user hands off more of the process: the check, the stop condition, the trigger and, at the highest rung, the prompt itself.

Anthropic’s own caution, as relayed in the source, is that not every task needs a loop. The recommended approach is to start with the simplest working method and move to more autonomous patterns only when the task justifies the added cost and control tradeoffs.

At a glance
analysisWhen: Anthropic guide published June 30, 2026…
The developmentAnthropic’s Claude Code team published guidance on agentic loops, and Thorsten Meyer AI analyzed it as a four-step model for deciding what work to hand off to AI 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

AI Workflows Move Toward Delegation

The framing matters because it shifts the discussion from better prompting to process design. A loop is not only a way to make an AI agent repeat work; it is a choice about which part of human supervision the system is allowed to take over.

For developers, the practical issue is verification. The source says turn-based skills can encode checks, such as starting a dev server, using a browser, checking screenshots and reviewing console output before calling a task done. For businesses, the same idea turns a quality standard into a repeatable process rather than a manual review step after every request.

The article also flags cost and control as central concerns. Autonomy is metered, and the source recommends using the right primitive, the cheapest capable model, clear stop criteria, scripts where possible and pilot runs before large agent deployments.

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.

Four Rungs Of Agent Control

At the first rung, turn-based skills leave the user in control of each prompt while handing off verification. The agent gathers context, acts, checks its own work and returns a result, after which the human decides the next move.

At the second rung, goal-based loops hand off the stop condition. The user defines a measurable target, such as a performance score above 90, and an evaluator model checks whether the goal has been met or whether a turn cap has been reached.

At the third rung, time-based loops hand off the trigger. A clock starts the work, locally with /loop or in the cloud with /schedule, and the process continues until it is cancelled or the task is complete. At the fourth rung, proactive workflows are event-driven and may orchestrate multiple agents without a human prompt in real time.

“A loop is an agent repeating cycles of work until a stop condition is met.”

— Thorsten Meyer AI

Designing Multi-Agent Systems: Principles, Patterns, and Implementation for AI Agents

Designing Multi-Agent Systems: Principles, Patterns, and Implementation for AI Agents

As an affiliate, we earn on qualifying purchases.

As an affiliate, we earn on qualifying purchases.

Open Questions Around Autonomy

Several details remain developing. The source says some Claude Code features discussed in the framework are research previews, which means their final behavior, availability and limits may change.

It is also not yet clear how widely teams will adopt the full ladder. The source presents the model as a way to choose delegation levels, but the right rung depends on task clarity, measurable outcomes, budget limits and risk tolerance.

Robotic Process Automation: Guide To Building Software Robots, Automate Repetitive Tasks & Become An RPA Consultant

Robotic Process Automation: Guide To Building Software Robots, Automate Repetitive Tasks & Become An RPA Consultant

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 readers is practical: identify where they are the bottleneck and decide which single part of the work can be handed off. The source suggests asking whether the check can be written down, whether the goal is concrete, and whether the work arrives on a schedule.

Claude Code users are likely to test these patterns through skills, /goal, /loop, /schedule and proactive workflows, while watching usage and keeping stop rules clear. Anthropic’s documentation at code.claude.com/docs is cited as the place for implementation details.

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.

Key Questions

What is the confirmed news development?

Anthropic’s Claude Code team published a guide on agentic loops on June 30, 2026, and Thorsten Meyer AI published a July 1 analysis framing those loops as a delegation ladder.

What are the four agentic loops?

The four types described are turn-based skills, goal-based loops, time-based loops and proactive workflows. Each hands off a different part of the work.

What does the delegation ladder mean?

It means moving from a tool the user operates to a process that runs. The user first hands off checking, then completion judgment, then triggering and finally the prompt itself.

Does every AI task need a loop?

No. The source says Anthropic cautions that not every task needs a loop and recommends starting with the simplest working setup before adding more autonomy.

What remains uncertain?

Some features are described as research previews, and it remains unclear how broadly teams will adopt higher-autonomy workflows or how they will manage cost, review and failure cases at scale.

Source: Thorsten Meyer AI

Wellness content on this site is informational and not a substitute for professional medical guidance.

You May Also Like

Apple’s iPhone 18 Pro Features: Everything We Know So Far

Detailed overview of confirmed and rumored features for Apple’s upcoming iPhone 18 Pro, including design, hardware, and release expectations.

The SSD Squeeze: Why Storage Joined the Party

Consumer and enterprise SSD prices have surged in 2026 as AI demand, tight NAND supply and HBM competition reshape storage markets.

Capital: The Lever Beneath the Levers

Thorsten Meyer AI’s finale argues capital is the AI industry’s core chokepoint as private risk moves toward public markets.

Meta to sell excess AI computing capacity via cloud business, Bloomberg News reports

Meta plans to monetize surplus AI computing resources by offering them through its cloud business, according to Bloomberg News reports.