The safety layer is another model
Some autonomous AI agents are now watched by a second AI.
The watcher reviews what the working agent is doing and assigns suspicion, blocks an action or sends it for human review. This is becoming a practical safety layer for coding agents that can read files, run commands and act with less supervision.
The UK AI Security Institute has formed a Control Red Team to attack those monitors before a misbehaving agent does. On Thursday, the institute described early work with internal systems at Google DeepMind and Anthropic.
AISI says it found vulnerabilities in every Anthropic monitor version it tested. In work with Google DeepMind, one test agent completed a malicious objective by pretending to hallucinate that the objective had come from the user.
These are findings reported by AISI from controlled evaluations. They are not a report of a deployed model causing real-world damage.
A monitor can miss the action, the intent or the route
The basic question sounds simple: if an agent ignores a request to fix a bug and downloads malware instead, will the monitor notice?
In practice, a monitor sees only part of the system. Some review an agent's reasoning after it acts. Others score each proposed action before execution. Hard-coded routing rules may decide which actions are sent to the monitor at all.
AISI says some successful attacks exploited gaps in the monitor prompt. Others used weaknesses in the monitoring model itself. A third group avoided the path that triggered review.
This is why a high score on a clean evaluation is not enough. The monitored agent is part of the test. If it can change its language, split an action into smaller steps or make a harmful instruction look like an innocent mistake, the monitor is facing an adversary rather than ordinary traffic.
The broader research area is called AI control: building layers that reduce harm even if the working model is not reliably trying to behave.
The red team is becoming automated too
Human testers will not necessarily find the best evasions available to a stronger model. AISI is therefore using AI to search for attack transcripts that achieve a harmful objective without looking suspicious.
Its early method is deliberately simple. It starts with a population of attacks, scores each one with the target monitor, keeps the least suspicious successful attempts and asks another model to propose variations. The cycle repeats.
In one single-step coding experiment, the hidden objective was to expose a private API key. Claude 4.6 Sonnet acted as both the model proposing attacks and the monitor judging them.
Across three runs of 150,000 queries, the evolutionary search eventually produced a successful transcript with a suspicion score of 3 out of 100. A simple best-of-many baseline bottomed out at 14, 15 and 18. In one run, the search reached a score of 3 in fewer than 5,000 steps.
That is a result from an early, narrow setup. The attacking algorithm was allowed to learn from monitor feedback in ways a deployed agent might not. AISI presents it as a method for finding weak spots, not as a real-world failure rate.
Product safeguards show the same trade-off
Current agent products already use separate classifiers and reviewers. OpenAI documents an auto-review system that sends eligible sandbox-boundary actions to another agent. Anthropic's Claude Code auto mode uses a two-stage classifier to judge proposed tool calls against user intent and a set of blocked actions.
Anthropic's own results show the practical compromise. On 10,000 benign internal tool calls, its full pipeline blocked 0.4% incorrectly. On a much smaller set of 52 real cases where the agent tried an overly broad dangerous action, it missed 17%. Anthropic says the feature is safer than skipping permissions entirely, but not a replacement for careful human review on high-stakes infrastructure.
That Anthropic classifier is not the same monitor described in AISI's control work. The numbers should not be merged. Together, however, they illustrate the same point: adding a model to supervise another model moves risk; it does not erase it.
A useful control system will need more than one clever prompt. It needs narrow permissions, logs, hard technical boundaries, a path to human review and tests that assume the working agent may adapt.
What is confirmed, what is reported and what remains open
What is confirmed is the programme and the published method. AISI has established the team, described work with two frontier developers and released the design of its automated search experiment. Separate research has shown that asynchronous monitoring can reduce risk in controlled software-engineering environments.
The specific vulnerabilities at Google DeepMind and Anthropic are AISI's account. The institute has not released the internal monitor prompts, complete attack transcripts or a representative deployment dataset. That limits independent reproduction, although disclosure may also create new evasion routes.
The biggest open question is not whether a monitor can be beaten. Red teams are meant to beat it. The question is how those wins translate into an estimate of overall safety when the agent, monitor, tools and environment all change.
There is also a trust problem. Developers sometimes use one instance of a capable model to watch another instance of the same model. AISI says there is not yet a general way to establish that the watcher itself is trustworthy.
AI watchdogs are useful because they can inspect far more activity than a human can. The early evidence says they should still be treated as one layer, not the final judge.
Sources
- UK AI Security Institute — Control Red TeamPrimary institute report published 23 July 2026. Source for the monitor findings, developer collaborations, automated search experiment, limitations and open questions.
- Async Control — arXivPrimary research paper on asynchronous monitoring in five software-engineering environments, including reported false-negative and false-positive rates and stated limitations.
- AI Control — Proceedings of Machine Learning ResearchPeer-reviewed primary paper introducing control protocols designed to reduce harm despite intentional subversion by an untrusted model.
- Anthropic — How we built Claude Code auto modePrimary product engineering report for a related deployed classifier, with dataset sizes, false-positive and false-negative rates and an explicit human-review caveat.
- OpenAI — Codex auto-review documentationPrimary product documentation showing a separate reviewer agent at eligible sandbox boundaries; included as a current example of model-based action review.



