TL;DR

Anthropic’s Claude Code team published guidance on agentic loops on June 30, 2026, defining a loop as repeated agent work until a stop condition is met. A July 1 Thorsten Meyer AI dispatch reframed the guidance as a four-rung delegation ladder, showing what users can hand off as AI workflows become more autonomous.

Anthropic’s Claude Code team has published new guidance on agentic loops, defining them as repeated cycles of agent work that continue until a stop condition is met, a development that matters because it gives developers and businesses a clearer way to decide how much work to delegate to AI systems.

The guidance, cited by Thorsten Meyer AI from Anthropic’s June 30 Claude blog post, describes a loop in plain terms: an agent repeats work until it reaches a defined end point. The Thorsten Meyer AI dispatch, published July 1, 2026, builds on that definition by presenting four loop types as a delegation ladder.

The four rungs are turn-based skills, goal-based loops, time-based loops and proactive workflows. In the dispatch’s framing, each rung removes one more task from the human operator: checking the work, deciding when the job is done, starting the job, and eventually asking for the job in real time.

Anthropic’s guidance, according to the dispatch, also includes a caution: not every task needs a loop. The recommended approach is to start with the simplest working method and add autonomy only when the task justifies it, especially because agentic work is metered and can raise cost as it runs.

At a glance
analysisWhen: Anthropic published the source guidance…
The developmentAnthropic’s Claude Code team published new guidance on AI agent loops, and Thorsten Meyer AI framed it as a four-step delegation model for builders and businesses.
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

Delegation Becomes a Design Choice

The framework matters because it shifts the question from how to prompt an AI tool to what part of the work should be handed off. For developers, that means choosing whether an agent should merely assist, verify its own changes, keep working toward a measured goal, run on a schedule, or respond to events without a person starting each task.

For businesses, the model offers a way to evaluate operational risk and automation value at the same time. A turn-based task keeps a human close to the work, while a proactive workflow can coordinate multiple agents without live human input. That can save time, but it also raises questions about oversight, cost controls and the quality of outputs.

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.

From Prompts to Repeating Work

The phrase “designing loops instead of prompting” has gained attention in AI engineering as teams look for ways to make agents complete longer tasks. Anthropic’s definition, as quoted in the source material, keeps the concept narrow: a loop is an agent repeating work until a stop condition is reached.

The first rung, turn-based skills, still begins with a user’s prompt, but the agent can encode checks such as running tests, opening a browser, reviewing screenshots or checking a console. The second rung, goal-based work, uses an evaluator model or defined condition to decide whether the agent should continue.

The third rung, time-based loops, starts work on a schedule or interval, including local and cloud options referenced in the dispatch. The fourth, proactive workflows, is event-driven and can involve multiple agents, but the source notes that some features are research previews.

“A loop is simple: an agent repeating work until a stop condition is met.”

— Thorsten Meyer AI dispatch

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.

Limits Still Need Testing

Several details remain open. The source material says some features are research previews, which means availability and behavior may differ across users or environments. It is also not yet clear how widely teams will adopt the delegation ladder framing or whether it will become standard language in AI engineering.

Cost and reliability also remain developing issues. The dispatch recommends clear stop criteria, use of the cheapest capable model, pilots before large runs and monitoring usage, but it does not provide benchmark data comparing the four loop types across production systems.

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 Higher Rungs

The next step for readers is likely practical adoption: identifying where they are the bottleneck and choosing the lowest rung that fits the job. The dispatch points readers toward Anthropic’s Claude Code documentation and the June 30 blog post by Delba de Oliveira and Michael Segner for definitions, primitives and examples.

Near-term attention will likely focus on whether teams can turn quality bars into machine-checkable criteria, keep costs bounded with turn caps and usage monitoring, and decide which workflows are ready for scheduled or event-driven operation.

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 actual news development?

Anthropic’s Claude Code team published guidance on agentic loops on June 30, 2026, and a July 1 Thorsten Meyer AI dispatch reframed it as a four-rung delegation ladder for AI workflows.

What does Anthropic mean by a loop?

According to the source material, a loop is an agent repeating cycles of work until a stop condition is met. The key design choice is deciding what the human stops doing and what the agent takes over.

What are the four loop types?

The dispatch lists turn-based skills, goal-based loops, time-based loops and proactive workflows. They range from human-prompted work with self-checks to event-driven workflows that can run without real-time human input.

Why does this matter for businesses?

The framework gives teams a way to judge how much autonomy to grant an AI system. That affects cost, oversight, quality control and whether a task should stay human-led or run as a repeatable process.

What remains uncertain?

It is not yet clear how broadly the model will be adopted, how preview features will mature, or how the loop types compare in real production settings. The source material stresses pilots, stop criteria and usage tracking before larger deployments.

Source: Thorsten Meyer AI

This content is for general information only and is not financial, tax or legal advice. Consult a qualified professional for decisions about your money.
You May Also Like

The Eye Over the City: How Wide-Area Motion Imagery Works — and Where It Goes Blind

A July 1 ISR Briefing report explains how WAMI tracks city-scale movement, its limits, and unresolved oversight questions.

China's economy loses steam in April as retail sales hit 40-month low

China’s retail sales declined 0.2% in April, the weakest since December 2022, amid slowing industrial output and investment, according to official data.

DHS Plans International Travel Shutdown At Airports In Democratic-Led Cities—But Not Newark

Homeland Security plans to withdraw customs screening from international airports in Democratic-led sanctuary cities, sparking industry and political backlash.

Bank of Canada Holds Interest Rates Steady as Officials Grapple With Policy Dilemma

Bank of Canada maintains current interest rates as officials face conflicting economic signals, signaling cautious approach amid uncertain outlook.