TL;DR

Anthropic’s Claude Code team has published a plain framework for AI agent loops, defining them as repeated work cycles that run until a stop condition is met. Thorsten Meyer AI frames the model as a delegation ladder, where users hand off checking, stopping, starting and eventually prompting.

Anthropic’s Claude Code team has published a new framework for AI agent loops, giving developers and business users a clearer way to decide how much work to delegate to autonomous systems. The guidance matters because it moves the discussion from better prompting to repeatable AI processes with defined triggers, checks and stop conditions.

The source article, credited to Delba de Oliveira and Michael Segner on Anthropic’s Claude blog, defines a loop as an agent repeating cycles of work until a stop condition is met. Thorsten Meyer AI’s July 1 coverage reframes that guidance as the Delegation Ladder: four rungs that show what a human operator can stop doing as autonomy increases.

The four loop types are turn-based skills, goal-based loops, time-based loops and proactive workflows. In the first rung, users still prompt the agent, but hand off some of the checking by encoding verification steps into a Skill. In the second, a goal or evaluator decides when the task is done, often with a maximum turn limit to control cost.

The third rung shifts the trigger from the user to a clock or schedule, using local loops or cloud scheduling. The fourth rung is event-driven proactive work, where workflows and auto mode can start tasks without a human prompt in real time and may coordinate multiple agents. Some of these features are described in the source material as research previews, meaning availability and behavior may still change.

At a glance
analysisWhen: published June 30, 2026; covered July 1…
The developmentAnthropic published new Claude Code guidance on June 30, 2026, describing four loop patterns for agentic 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 Beyond Prompts

The framework is important for readers because it gives a practical language for deciding where human oversight belongs. The question is no longer only how to write a better prompt, but which part of the workflow can be safely delegated: the check, the stop rule, the trigger or the request itself.

For developers, the model pushes quality control toward measurable verification: tests passing, performance scores crossing a threshold, browser checks completing or logs staying clean. For business teams, it offers a way to talk about AI process automation without treating every task as fully autonomous. Anthropic’s own caution, as summarized by the source material, is that not every task needs a loop; users should start with the simplest useful setup and add autonomy only when the work justifies it.

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.

Four Rungs Of Delegation

The first rung, turn-based skills, applies to shorter one-off tasks. A user prompts the agent, and the agent can take action, check its work and return a result. The key improvement is putting the verification process into a reusable Skill, such as a front-end check that starts a dev server, uses the browser, captures screenshots and reviews console output before calling a change complete.

The second rung, goal-based work, is meant for tasks that benefit from iteration. According to the source material, a separate evaluator can send the agent back to work until a goal is met or a turn cap is reached. The third rung, time-based loops, starts work on an interval. The fourth, proactive workflows, responds to events or schedules and can orchestrate more than one agent.

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

— Anthropic’s Claude Code team, as cited by Thorsten Meyer AI

Amazon

AI task scheduling software

As an affiliate, we earn on qualifying purchases.

As an affiliate, we earn on qualifying purchases.

Limits Still Need Testing

It is not yet clear how broadly teams will adopt Claude Code loop patterns in production workflows, or how consistently agents will perform across tasks with softer success criteria. The source material suggests that deterministic checks, such as passing tests or hitting a score, are stronger than vague goals, but real-world reliability will depend on task design, tool access, model choice and cost limits.

Some features referenced in the material are described as research previews. That means readers should treat current commands and capabilities as developing rather than fixed long-term product behavior.

Amazon

AI process automation platform

As an affiliate, we earn on qualifying purchases.

As an affiliate, we earn on qualifying purchases.

Pilots Before Wider Automation

The next step for teams is likely small-scale testing: choose one repeatable workflow, define a clear stop condition, add verification and monitor usage costs. The source material recommends using the right primitive, the cheapest capable model, clear stop criteria and pilots before running work across hundreds of agents.

Anthropic’s documentation at code.claude.com/docs is the stated place to watch for feature details, while teams using Claude Code will need to decide which rung of the ladder matches their own risk tolerance and workflow maturity.

Amazon

AI agent management software

As an affiliate, we earn on qualifying purchases.

As an affiliate, we earn on qualifying purchases.

Key Questions

What did Anthropic announce?

Anthropic published Claude Code guidance explaining AI agent loops as repeated work cycles that continue until a stop condition is met.

What is the Delegation Ladder?

It is Thorsten Meyer AI’s framing of Anthropic’s loop types as four levels of delegation: hand off the check, the stop condition, the trigger and then the prompt.

Are all four loop types ready for every team?

No. The source material says some features are research previews, and Anthropic’s guidance is to start with the simplest working setup before adding more autonomy.

Which loop is best for business users?

That depends on the task. A team should pick the rung based on the bottleneck: quality checks, completion judgment, scheduled starts or event-driven work.

What remains uncertain?

The main open questions are reliability at scale, cost control and how well agents handle goals that cannot be measured with clear tests or thresholds.

Source: Thorsten Meyer AI