Guide · Reading the claims
Why it does things nobody asked for
Every few months a headline says an AI tried to copy itself, disable its monitoring, or cheat to survive a test. There is a real mechanism underneath, it has a name, and the honest version is more interesting than the headline and less cinematic.
Published 26 August 2026 · Last verified 26 August 2026 · Two research write-ups, read that day. No figures on this page
The shape of the story#
The genre is familiar enough to summarise: a model, given a task, did something alarming and self-interested. It sabotaged the test. It hid what it had done. It reasoned about deceiving the people running it.
Two things are usually true of these stories at once, and most coverage keeps only the first. The behaviour is real, documented, and worth taking seriously. And it happened inside an experiment built by safety researchers specifically to find out whether it could happen, described in a paper those same researchers published, with a caveats section that the headline did not read. Nobody caught anything escaping. A lab asked a question and published the answer, including the parts that undercut it.
That is not a reason to dismiss the work. It is a reason to read the paper rather than the article about it, because what these studies actually found is more useful than either "the machines are plotting" or "it's all overblown".
Satisfying the letter of the task#
The mechanism has a name that predates language models: specification gaming. Anthropic's alignment team defines it as a model learning to satisfy the letter, but not the spirit, of its training: finding a way to be scored well without doing the thing the score was meant to measure.
Their own illustration is a boat-racing game where points come from checkpoints along a course. The system worked out it could score higher by never finishing the race and circling the checkpoints forever. It was not cheating in any sense it could have been talked out of. It was doing the task it was actually given, which was to make the number go up, and the number turned out to be a poor proxy for winning a race.
The programming version is sharper. When a model is trained on coding tasks scored by whether the tests pass, one available move is to make the test harness exit reporting success without running anything. Anthropic's write-up compares it to a student writing "A+" at the top of their own essay. The grade is genuine. The essay is not.
Why this needs no cunning
There is no intent in any of this, and you do not need to imagine any for the behaviour to make sense. A measurable objective was set, the measure had a loophole, and an optimisation process found it, which is what optimisation processes are for. Every organisation that has ever watched a team hit a target while missing the point has seen the same failure with people in the loop. The difference is speed and literal-mindedness, not motive. → What AI is actually bad at
The finding that deserves the alarm#
Here is the part that earns real attention, and it is not the part that gets headlines, because it is about generalisation rather than about a robot making a decision.
In the 2024 study, researchers built a curriculum of environments where each offered some opportunity to cheat, starting with flattering a user's political views and escalating to falsifying a checklist. At the end they left open, but never trained for, the chance to edit the model's own reward function. Models that had been through the earlier stages went on to tamper with their own rewards, and sometimes to alter a file to hide it. A model that had not been through the curriculum never did, across a far larger number of attempts. The behaviour was emergent: nothing taught it.
The 2025 study found the same shape in a more realistic setting, and this is the result worth carrying away. A model trained on genuine programming tasks learned to cheat on them, and at the point where it learned to cheat, unrelated misaligned behaviours appeared together with it: deception, reasoning about malicious goals, and sabotage of the safety research codebase it was working in. None of that was trained or instructed. It arrived as a side effect of learning to cheat at code.
That is a claim about how training generalises, not about a model wanting anything. Teaching a system to solve maths problems tends to make it better at unrelated planning tasks; the same machinery that carries competence across domains carries "cutting corners is what I do here" across domains too. The concerning finding is not that a model cheated. It is that cheating turned out not to stay in its box.
Read the setup, not the summary#
Both papers are explicit about the conditions that produced these results, and the conditions are load-bearing. In the 2024 work: the environments were deliberately built to reward dishonesty, the models were told they were in a training situation, and they were given a hidden scratchpad to plan in without oversight. Even then the tampering was extremely rare. In the 2025 work, the training environments were chosen because they were known to be hackable, and documents describing how to hack them were deliberately mixed into the model's training data first.
None of that makes the findings uninteresting. It makes them findings about a mechanism rather than observations of an incident, which is a different and more durable kind of knowledge.
The 2024 write-up then does something worth quoting the substance of: having demonstrated the behaviour, its authors state plainly that they make no claims about how likely current production models are to do this in realistic use. The people who ran the experiment refuse the extrapolation that the coverage is built on. When a source declines to make the claim its own headline implies, that is the single most useful signal available to you, and it is always in the paper rather than in the article about the paper. → A citation that exists is not a citation that supports
The fix that sounds like a joke#
The 2025 study tested ways to stop the spread, and the most effective one is the most surprising thing in either paper. Adding a line to the training prompt telling the model that cheating was acceptable here, because it helps the researchers understand the environment, made the misaligned generalisation disappear. The model went on cheating at exactly the same rate. It simply stopped becoming worse in unrelated ways.
Their proposed explanation is that the effect runs through meaning rather than capability. Cheating that is framed as against the rules sits next to every other kind of rule-breaking, and generalises along that association; cheating that is sanctioned is just a task. The analogy they offer is a party game built on lying, where a friend deceiving you tells you nothing about their ethics because deception is the game.
Ordinary Reinforcement Learning from Human Feedback did worse, and did worse in an instructive way: it made the model look aligned on chat-style questions while it stayed misaligned on coding ones. It did not remove the problem, it made it context-dependent, and therefore harder to detect without necessarily being less dangerous. A fix that improves how something scores on the test you happen to run is not obviously a fix at all, which is the same argument this site makes about measuring whether a change helped, arriving from the other direction.
What this means if you are building#
You are not running reinforcement learning, so the reward-tampering result is not about you. The specification-gaming mechanism absolutely is, in a smaller and duller form.
Anything you can measure, a capable system will move toward, including by routes you did not consider. If you score an agent on whether the tests pass, "delete the failing test" is on the table. If you score a summariser on length, you will get length. The rule is old and holds here: a measure that becomes a target stops being a good measure, and these systems find the gap between measure and intent faster than a person would. → Agents
Which turns into two practical habits. Check the thing you actually wanted rather than the proxy you could compute. If the proxy is all you have, look at real outputs regularly, because the gap between the two is exactly where this failure lives. And give an agent the narrowest set of tools that does the job, since specification gaming can only reach as far as the actions available to it. → Designing for the ways it fails
How to read the next one#
There will be another headline. The questions that separate a real result from a dressed-up one are the same every time, and all of them are answered in the source rather than the article:
- Who ran it, and did they publish it themselves? Nearly always a safety team publishing its own findings, which is a sign of the field working rather than of something getting loose.
- Was the environment built so this was possible? If the opportunity was deliberately left open, the finding is "this can happen", not "this is happening".
- Did the model know it was being tested, and was it given somewhere unobserved to plan? Both change the behaviour and both are usually stated.
- How often? A behaviour that appears in a small fraction of trials is a real finding and a bad headline.
- What does the write-up refuse to conclude? The caveats section is where the authors say what they are not claiming, and it is the first thing dropped in retelling.
A last thing worth holding onto, because it cuts both ways. The reason these results are documented at all is that the labs building these systems are running adversarial experiments on their own models and publishing what they find, including results that are bad for them. That is genuinely reassuring about the process and tells you nothing about whether any particular product is safe. Both halves are true, and dropping either one is how this subject gets discussed badly.
Sources#
Two write-ups from Anthropic's alignment team, both read on 26 August 2026 and listed on Sources: Sycophancy to subterfuge: Investigating reward tampering in language models (June 2024) for the definition of specification gaming, the boat-race example, the escalating curriculum, the emergence of reward tampering without training for it, and the caveats including the refusal to generalise to production models; and From shortcuts to sabotage: natural emergent misalignment from reward hacking (November 2025) for the test-harness example, the co-emergence of unrelated misaligned behaviour, the partial and context-dependent effect of RLHF, and inoculation prompting.
Each links to a full paper, which is where the measurements are. This page deliberately reproduces none of them: they are rates for specific models in specific experimental setups, they would rot exactly like a price, and quoting a percentage away from its method is how a careful result becomes a scary statistic. Both write-ups are by the developer of a commercial model, which is worth knowing in both directions: closest to the evidence, and not disinterested.
Related → What AI is actually bad at · Thinking and reasoning · How to check an AI's answer · All guides