TL;DR

Anthropic’s Claude Code team published a plain definition of agentic loops on June 30, 2026, and Thorsten Meyer AI followed on July 1 with a four-rung delegation framework. The confirmed material identifies turn-based skills, goal-based /goal, time-based /loop or /schedule, and proactive workflows with auto mode, while source notes say some features remain research previews. The practical issue for readers is how much checking, stopping, triggering and prompting they are ready to hand to agents.

Thorsten Meyer AI published an Insights AI Dispatch on July 1, 2026 that recasts Anthropic’s new Claude Code guidance on loops as a four-rung delegation ladder, giving developers and business teams a structured way to decide how much work to hand to AI agents.

The dispatch says the base definition comes from Anthropic’s Claude blog: an agent repeats cycles of work until a stop condition is met. Thorsten Meyer AI’s contribution is the delegation ladder framing, which classifies loops by what the user stops doing: checking, deciding when to stop, starting the run or writing the prompt.

The first rung is turn-based skills, where a person still starts each turn but encodes verification into a Skill. The example cited from Anthropic is a front-end skill that checks a UI change by starting the server, clicking the control, comparing screenshots, checking the console and running a performance trace before treating the task as done.

The higher rungs add more autonomy: goal-based /goal uses an evaluator model and a turn cap, time-based /loop or /schedule starts work on an interval, and proactive workflows with auto mode can respond to events without a human prompt in real time. The source note says some of these features are research previews.

At a glance
analysisWhen: Anthropic source published June 30, 202…
The developmentThorsten Meyer AI published a July 1, 2026 analysis that reframes Anthropic’s new Claude Code loop guidance as four levels of AI delegation.
Top Steam deals right now
Red Dead Redemption 2-75%$14.99
Cyberpunk 2077-70%$17.99
Grand Theft Auto V Enhanced-50%$14.99
Grand Theft Auto V Enhanced-50%$14.99
Sekiro™: Shadows Die Twice – GOTY Edition-50%$29.99
Cyberpunk 2077: Phantom Liberty-40%$17.99
Marvel’s Spider-Man 2-33%$40.19
Baldur’s Gate 3-25%$44.99
Live · Steam store (current discounts)
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

Teams Get a Delegation Map

The practical takeaway for readers is that the framework turns agentic AI from a vague label into a set of delegation choices. A team can ask which bottleneck it wants to remove: manual review, repeated prompting, scheduled starts or the need for a person to ask in the first place.

That distinction matters for cost and control. The dispatch advises using the right primitive, the cheapest capable model, clear stop criteria and pilot runs before scaling to hundreds of agents. Those are cost controls, not confirmed savings figures.

OpenCode Custom Workflows: Building Intelligent Automation with AI Agents (AI Agent Tools)

OpenCode Custom Workflows: Building Intelligent Automation with AI Agents (AI Agent Tools)

As an affiliate, we earn on qualifying purchases.

As an affiliate, we earn on qualifying purchases.

Anthropic’s Four Loop Types

The source material ties the framework to Getting started with loops, a Claude blog post by Delba de Oliveira and Michael Segner published June 30, 2026. According to Thorsten Meyer AI, Anthropic supplied the definitions, primitives and examples, while the delegation ladder is the site’s own framing.

The ladder runs from manual turn-based work to autonomous proactive workflows. At the lowest rung, the user still prompts and inspects. At the highest, an event or schedule can trigger a multi-agent workflow, with each task governed by its own goal.

The dispatch also says output quality depends more on the surrounding system than the loop itself: a clean codebase, reusable Skills, fresh-context review agents and fixes to the workflow after failed runs. That guidance is presented as operating advice, not a measured benchmark.

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

— Anthropic Claude blog, Delba de Oliveira and Michael Segner

Preview Status and Open Costs

Several points remain unsettled. The dispatch’s source note says some features are research previews, so availability, product limits and production support may vary by account or release channel. The article does not provide independent tests of /goal, /loop, /schedule or proactive workflows.

It is also unclear how broadly teams will adopt the ladder framing, how reliable event-driven workflows will be across messy real-world tasks, or how quickly costs rise when agents iterate. The strongest confirmed point is narrower: Anthropic published loop guidance, and Thorsten Meyer AI framed it as a delegation model.

Pilots Before Larger Runs

The next step for readers is likely testing the ladder on bounded work. A safe starting point is a turn-based Skill with measurable checks, followed by a /goal pilot for tasks with a clear pass condition, such as tests passing or a score crossing a fixed threshold.

For scheduled or event-driven work, teams will need to watch Claude Code documentation, preview availability and usage reporting. The dispatch points readers toward code.claude.com/docs and advises watching /usage before larger runs.

Key Questions

What is the Delegation Ladder?

It is Thorsten Meyer AI’s framing of Anthropic’s loop guidance as four delegation rungs: checking, stop conditions, triggers and prompts.

Did Anthropic create the ladder framing?

No. The source note says Anthropic supplied the loop definitions, primitives and examples, while the ladder framing comes from Thorsten Meyer AI.

What are the four loop types?

The four named types are turn-based skills, goal-based /goal, time-based /loop or /schedule and proactive workflows with auto mode.

Are these features ready for production?

The source note says some features are research previews. Production readiness, limits and support are not fully detailed in the supplied material.

Why would a business reader care?

The framework helps teams decide what to delegate and what to keep under human control, especially around quality checks, costs and scheduled work.

Source: Thorsten Meyer AI

You May Also Like

When One Agent Isn’t Enough: Claude Now Builds Its Own Team of Agents on the Fly

Anthropic says Claude Code can now write task-specific workflows that spawn and coordinate subagents for complex work.

Louis Vuitton Offers a Soccer Ball-Shaped Gold and Diamond Clock as Part of a Special Collaboration

Louis Vuitton is auctioning a luxury sculptural clock resembling a soccer ball, crafted in gold and diamonds, supporting UNICEF in a limited edition sale.

The Local-First Agentic Operator

Thorsten Meyer AI closed a 19-part series by naming the operating thesis behind 18 AI-assisted products across seven families.

A Skill Is a Folder, Not a Prompt: What Anthropic Learned Running Hundreds of Them

Anthropic says Claude Code Skills work as folders of instructions, scripts and references, not reusable prompts.