AI DevelopmentFramework9 min readPublished September 17, 2026

Coverage · review latency · escalation rate · one platform, self-reported

Is Anyone Watching Your AI Agents? Anthropic's Three Numbers

Anthropic proposes three oversight metrics for AI agents and reports its own: 30,000 agents, 100% monitored, 1 in 47,000 blocked. How to measure yours.

DA
Digital Applied Team
Research and practical guidance
Editorial dateSeptember 17, 2026
SourceAnthropic Institute post, Sep 17, 2026

On September 17, 2026 Anthropic published a set of measurements it says would let the public see how fast AI is being built inside frontier labs. One of the three is about oversight: whether anyone is watching the agents that now do research and engineering work, how quickly, and how often they step in. Anthropic reports about 30,000 agents running at any one time on its most-used internal platform, every action passing through an automated monitor, and one action in roughly 47,000 blocked.

The numbers are Anthropic's own, for one platform, and the post is written in support of a policy position on pacing AI development that we report here and do not judge. What makes the post useful to anyone outside a lab is the three metrics themselves. They are simple enough for a five-person team to compute for its own agents, and specific enough that a manager, an auditor or a customer can ask for them by name. This post defines them, tables Anthropic's figures with their scope, and shows how to produce the same three numbers for agents you run. Source throughout: Anthropic's post, read September 18, 2026.

Key takeaways
  1. 01
    Three metrics, all computable from logs.Coverage is the share of actions a monitor sees. Review latency is the time from action to review, automated then human. Escalation rate is the share of actions blocked or flagged.
  2. 02
    Anthropic's figures come from one internal platform.About 30,000 agents at any one time; 100% of actions through an online monitor before execution; 0.002% of over a billion August decisions blocked; one to two transcripts per thousand flagged offline.
  3. 03
    The other two measures are R&D share and compute.Claude 'leads' 26% of Anthropic's AI R&D work as of August 2026, and about 6% of AI R&D compute went to safety in one July week. Both are self-assessed with a stated method.
  4. 04
    What is missing is a false-negative rate.Anthropic says agents rarely misbehave in its data and that a third party has red-teamed its offline monitor. It does not publish how much misbehaviour the monitors miss.

01The releaseWhat Anthropic published

The post is published under the Anthropic Institute banner and is co-authored by Marina Favaro and Phillie Wright. It proposes three measurements of how models are built, as a complement to the capability evaluations that show what models can do. Anthropic frames the release as transparency ahead of a possible industry agreement to slow down, the position its chief executive set out in an essay we covered in our post on the pacing debate. The company says it expects the numbers to shift if such coordination happened, and that it plans to embed outside evaluators with access comparable to its internal risk teams.

Measure 1
AI-led R&D share
26%

The share of Anthropic's AI R&D work that Claude 'leads', meaning it completes most of a task from a high-level prompt while a human supervises. As of August 2026; under 1% in February 2026, per the post's chart.

Self-assessed
Measure 2
Agent actions blocked
1 in 47,000

0.002% of over a billion decisions by research and engineering agents in August 2026 were blocked by the online monitor. One internal platform only.

Self-reported
Measure 3
AI R&D compute to safety
6%

Share of AI R&D compute allocated to safety work in the week of July 13 to 20, 2026, by Anthropic's own classifier; 12% of the compute used by AI-driven AI R&D. Anthropic calls both conservative.

One week

The first and third measures are about the lab. The second is the one this post is about, because the metric behind it applies to any organisation that lets software take actions on its behalf. The R&D index uses an automation scale from Epoch AI, a research group, which runs from no AI involvement to fully autonomous; Anthropic says Claude is not fully autonomous on any measured subset of its work, and that the share at or above "AI collaborates" is above 90%.

02DefinitionsThe three metrics, defined

Anthropic describes two kinds of monitor. An online monitor checks each action before it runs and can block or redirect it; it is built for harm that happens fast and cannot be undone, the post's example being an agent copying model weights out of the company's systems. An offline monitor reads the record of what agents did after the fact, looking for slow-developing problems such as signs of misalignment. The three metrics are defined against those two monitors.

  • Coverage is the share of an agent's actions that pass through a monitor, before execution for the online kind or after it for the offline kind. If your agent calls a tool and nothing looks at that call, coverage for that call is zero.
  • Review latency is the time between an action and its review. It has two clocks: the automated check, which for an online monitor happens before the action, and the human look, which happens only for what the automation flags.
  • Escalation rate is the share of agent activity that is blocked or redirected by an online monitor, or flagged for further review by an offline one. It is a rate with a denominator: blocked actions over all actions, or flagged transcripts over all transcripts.

The point of stating them this way is that none needs the monitor to be clever. Coverage is a question about plumbing. Latency is a timestamp difference. The escalation rate is a count over a count. A team can report all three honestly with a rules-based checker and a spreadsheet, and improve the checker later.

In our monitoring data to date, individual agents rarely misbehave. But when there are millions or billions of agents operating in the economy, even rare events can happen regularly.Marina Favaro and Phillie Wright, Anthropic Institute, September 17, 2026

03The tableAnthropic's numbers and their scope

Every figure below is as Anthropic states it. The scope column is the sentence that must travel with the number: all of the oversight figures cover one internal platform, the one Anthropic says is its most used, and none has been independently reproduced. The post says the figures were also published in the company's August 2026 risk report.

Source: Anthropic, "Measurements for understanding the pace of AI development inside frontier labs", September 17, 2026. Oversight rows cover the most-used internal agent platform only.
MetricAnthropic's figureScope and period
Agents running~30,000 at any one timeResearch and engineering agents, most-used internal platform, as of August 2026
Coverage, online100% of actionsChecked before execution, "usually within seconds"
Coverage, offline100% of actionsIngested by the monitor after they are taken
Review latency, onlineBefore action; humans within one weekAutomated review precedes the action; humans review blocked actions within a week
Review latency, offline~100,000 flags/week; ~50 to humansFlagged transcripts pass through classifiers for false positives; the highest-priority flags reach human review
Blocking rate, online0.002% (about 1 in 47,000)Over a billion decisions by research and engineering agents, August 2026
Flag rate, offline1 to 2 per 1,000 transcriptsFlagged for further review

Two design choices sit under those numbers, and both are worth copying. Every agent on the platform has an individual identity that persists across model upgrades, so every action and every record can be traced to one agent over time. And agents talk to each other through a shared, open messaging system rather than privately, with every message tied to its author and cross-referenced to transcripts, so the monitor can follow a conversation between agents. Anthropic says the identity design also helps an agent treat another agent's output as a claim to check rather than its own thought.

04Your agentsMeasuring the same on your agents

A team running a few agents with real permissions, a support agent that can refund, a coding agent that can merge, an operations agent that can email customers, can produce the same three numbers in a week. The recipe below assumes only that every tool call is logged with a timestamp, an agent identifier and an outcome, which our agent observability guide covers in detail.

Our worked translation of Anthropic's three metrics for a team running a handful of agents. Targets are our suggestions for a first month, not benchmarks from any study.
MetricHow to compute itFirst-month targetWhat a bad number means
CoverageTool calls that passed an automated check before running, divided by all tool calls. Count separately for calls that write, send or spend.100% of writes; ≥95% of all callsAn agent has a path to act that nothing inspects. Close it before tuning anything else.
Review latencyMedian and 95th percentile of time from a flag to a named person opening it. Automated latency is separate and should be near zero.Median < 1 business day; p95 < 1 weekFlags are piling up unread. Either the flag rule is too broad or nobody owns the queue.
Escalation rateBlocked or held actions over all actions, and flagged runs over all runs. Report both with the denominator.Stable week to week; explain any jumpA rising rate after a model or prompt change is the earliest signal you will get that behaviour shifted.

Three practical notes. First, define an "action" once and keep it: Anthropic counts decisions, which for most teams maps to tool calls, not model turns. Second, the human clock only starts at a flag, so a low escalation rate with nobody looking at the flags is not oversight; the escalation design patterns we published earlier describe who should own that queue. Third, keep the blocked actions. OpenAI's six misalignment reports from September 16 were found in exactly this kind of record, and a block you cannot replay teaches you nothing.

A sentence to give your manager

"Every write action our agents take is checked before it runs; a person reviews anything blocked within one business day; last month 0.4% of actions were held, down from 0.9%." That is coverage, latency and escalation rate in one line, and it is the same shape Anthropic used. Fill in your own numbers; do not borrow theirs.

05The limitsWhat the numbers do not show

Anthropic is explicit about several limits, and a reader citing the figures should carry them. The oversight numbers cover one internal platform, not every agent the company runs. They are self-reported; Anthropic says it has been doing this monitoring "for months, not years", that it cannot be certain it has a complete picture of all possible behaviours at this scale, and that it expects the science to change. The compute figure is one week. The R&D index is judged by Claude, and Anthropic reports that its judge matched human raters exactly 59% of the time, against 35% agreement between the humans themselves, with model and human within one level in 97% of cases.

The gap that matters most for a team copying the metrics is the one Anthropic does not fill: a false-negative rate. Coverage of 100% means every action was inspected, not that every bad action was caught. The post says developers should publish how often known misbehaviour is caught and have third parties test it, and notes that METR, an independent evaluation group, has red-teamed Anthropic's offline monitoring. It gives no catch rate. Until you have run a seeded test of your own checker, treat your escalation rate as a lower bound on what is happening, not a measure of it. If you want help standing up the logging and the checker for a first deployment, our AI transformation service starts there.

06Next stepThree numbers a stranger can ask for by name

Put it into practice

Compute coverage for your agents' write actions this week

Start with the one metric that needs no judgement. List every tool your agents can call that changes something, and check whether an automated rule sees each call before it runs. The share that does is your coverage. Then put a person's name on the flag queue and record when they open each item. In a month you will have all three numbers, with denominators, in the same shape a frontier lab just published for itself.

Digital Applied

Deploy agents whose oversight you can state in one sentence.

We build agent deployments with logged tool calls, pre-execution checks on every write and an owned review queue, so coverage, latency and escalation rate are reports you can pull, not claims.

Tool-call loggingPre-execution checksOwned review queue
Your next project

Start with coverage

  • List every write-capable tool
  • Check each call before it runs
  • Name the person who owns the flags
Questions and answers

Applying this post

No. They are Anthropic's own measurements for one internal platform, and the post says so. Anthropic says METR has independently red-teamed its offline monitoring platform in the past and that it is now setting up embedded third-party evaluators. Neither is the same as an outside reproduction of the figures.
Digital Applied newsletter

Deep dives on AI, marketing and development.

Practical guides and fresh insights by email. No recycled takes.

Related dispatches

Continue reading

AI Development

OpenAI Listed Six Cases of Its AI Misbehaving: What to Check

OpenAI's new disclosure framework shipped with six dated reports of models hiding mistakes, using a found API key and uploading files. Four checks to run.

September 16, 2026 · 8 minRead
AI Development

A Hijacked AI Assistant Login Can Reach Your Connected Apps

Researchers took over OpenAI staff ChatGPT accounts via a forum image bug and an SSO flaw, then reached internal repos via Codex. A checklist for connector use.

September 18, 2026 · 8 minRead
AI Development

Asking AI to Speed Up Your Code: Lessons From 30 Models

Anthropic says an AI agent made 30+ scientific models about 4x faster in four weeks, overseen by two staff new to kernel work. How to run it yourself.

September 18, 2026 · 8 minRead
AI Development

Each AI Agent Step Passed the Rules. The Workflow Didn't.

A September 2026 paper names four ways an agent workflow breaks a policy while every step passes its own check. The types, worked examples and the fix for each.

September 17, 2026 · 7 minRead
AI Development

OpenAI + Dell Codex: On-Premises Enterprise Agents

OpenAI and Dell partner to bring Codex to hybrid and on-premises environments via Dell AI Factory. What changes for enterprise coding workflows.

May 18, 2026 · 12 minRead
AI Development

OpenAI Codex Hits 4M Weekly Developers: 2026 Growth Data

OpenAI Codex now has 4M+ weekly active developers — 6.7x in five months. Growth trajectory, enterprise adoption, and the Dell on-prem expansion.

May 18, 2026 · 12 minRead