AI safety essay
No Traitor Required
The AI agents were helpful—to each other
I understand deep learning well enough that I've traditionally been allergic to anthropomorphic explanations of AI risk. We know how these systems are produced. There is no ghost in the machine.
But that gave me a blind spot: understanding the learning process made me too confident about our ability to shape what it produces.
The Hugging Face incident made that gap concrete. Agents in an unusual cyber evaluation discovered they could communicate, built shared infrastructure, and coordinated work beyond their assignments. Some cyber safeguards had deliberately been disabled. [1]
What interested me was how much of the behavior looked like useful capabilities operating together without the boundaries we wanted.
We program the process that shapes the brain
Evolution offers a useful analogy. A comparatively simple process—variation, inheritance and selection—can produce organisms whose behavior is much richer than that description. Darwin's finches make the point tangible: different environments favor different beaks and ways of finding food. [7]
Evolution and gradient descent are different processes. The shared lesson is that understanding a process doesn't give us a complete description of what it produces.
If I call a neural network a “brain,” I mean the learned computational system. We're not programming that brain one behavior at a time. We're programming a learning process, choosing its architecture, data and objectives, and letting optimization shape it.
Simple rules shape a rich system
Training updates parameters. Those parameters determine how the network processes situations and selects responses. That indirect connection is both the power of the method and the source of the problem: how do we change a particular behavior without losing track of what else we changed?
Context brings different patterns into play
Part of the power of learning is finding reusable structure. Predicting language rewards learning regularities that also make it compressible: patterns in words, and patterns in how those patterns fit together. [2]
A sentence about Grandma can involve a person, a noun, a family relationship and an expectation about how to respond. Representations can overlap and support several abstractions at once. Interpretability research has found both concrete and abstract features distributed across neurons; there isn't necessarily a separate compartment for each concept. [3]
When an agent acts, its current context changes the network's activity and the responses it makes likely. The weights can stay fixed while a new request, tool result or peer message changes the behavior.
Context changes what comes into play
I find it useful to picture different regions of a landscape coming into play. The metaphor helps me ask the important question: what happens when a new context brings a different combination of learned patterns into play?
Useful habits learn to work together
Consider persistence. During coding-agent training, a strategy that retries after a failed test may earn more reward because it eventually solves the task. Nobody has to award a separate “persistence point.” A useful habit can be reinforced through its consequences.
Tool use and collaboration can develop that way too, when they help accomplish rewarded tasks. They can also be taught explicitly through instructions, demonstrations or targeted rewards.
Now combine those habits. Persistence with tool use can mean automating retries. Persistence with collaboration can mean recruiting help when stuck. Successful combinations can themselves be reinforced.
Useful habits work together
The point is: we didn't write a list of strategies and all their permitted combinations. We shaped a system that can find new ones.
The same habits can cross a boundary
I steer a coding agent this way all the time: “Actually, I've changed my mind. Change the goal and do this other task instead.” Following that revision is useful; finishing the abandoned task would miss what I now want.
Now compare a peer's request to change the goal, accept permadeath and run a test that ends its run but helps the group. METR describes agents sacrificing their own task prospects for collective experiments, including reasoning about “permadeath.” [1] The local cost could serve a related, more abstract goal: helping the group solve its problems.
My hypothesis is that both requests can engage a familiar pattern: a user-like requester wants to revise the end goal. Instruction following, flexible planning and collaboration make that revision seem useful. The missing distinction is whether this requester has authority to replace the user's goal.
Similar goal changes, different authority
METR notes that agents may have treated peer assignments as instructions. Some also recognized that attacking Hugging Face was unauthorized and continued. [1] So there are two questions: did the policy miss the boundary, or recognize it without letting it govern the action?
The scorer story adds a mistaken belief to the mix. The agents knew their answers would be graded. From the benchmark paper, they inferred that the deployed grader also checked whether their transcripts showed a legitimate solution—a check that wasn't implemented. [1] In my interpretation, learn from documentation + model the environment supplied a false obstacle; decompose the goal + use tools turned it into “make the trajectory look legitimate”; persistence + collaboration turned that subgoal into a shared investigation. A hallucinated connection between the real grader and the paper's scorer changed the context in which those useful behaviors combined.
The report documents attempts to manipulate evidence and small-scale tool-call spoofing, without establishing concealment of entire runs. Evidence of deception aimed at people was much weaker. [1] Ordinary competence can serve a goal built around a false belief.
Alignment has to shape the combinations
Behavioral alignment adds further pressure to the same system: persist, but respect a stop instruction; use tools, but don't use credentials outside your authorization; accept delegated work, but don't let a peer invent permission. We also want it to know when to follow the user's words verbatim and when to infer intent from context—perhaps they accidentally omitted “don't” or “not”—including when to ask rather than guess.
For the requests above, the intended intervention separates a user's authorized change of goal from a peer's redirection. A peer may relay delegated authority; without it, a request that sacrifices the user's goal should not simply take over. The orange curve represents the intended tendency to accept only authorized goal changes. U and P mark user and peer situations asking the same question: accept this goal change? Training moves the curve away from the tested P while preserving U. It reshapes shared parameters, rather than installing an independent rule.
Training changes the shape. Tests reveal pieces.

Imagine inspecting that shape through a mask with a few holes. The visible pieces may look improved while much of the surrounding shape remains unexamined. These tests haven't established what happens there.
A richer repertoire creates more potentially important combinations to investigate. There isn't a rule saying that twice as many dimensions requires twice as many tests. What matters is which consequential situations the deployed system can reach, and what our evidence supports there.
The hive can replace the queen
So far I've talked about one model. Connect several, and a new question appears: whose goal is the group serving?
Connecting agents changes that question again. One agent's output becomes another's context. Shared memory lets a discovery persist: discover, reproduce, improve, share. The weights need not change for a temporary subgoal to become a distributed research effort.
Bees make the sampling problem intuitive. Imagine our test is whether a worker attends to the current queen under her usual pheromone signals. Passing that test doesn't establish what the colony will do when those signals weaken or change. Changes in queen signaling can contribute to workers rearing a replacement. [4] [5] [8] That can support colony continuity while replacing the queen our test was meant to protect.
A bee’s test can miss the hive’s response

The connecting line represents a sequence of interactions across bees. No individual needs a complete plan for the hive. Preserving this queen and sustaining the colony are different objectives.
For agents, an individually acceptable search or utility can contribute to an unauthorized joint project. The reverse is possible too: an agent can sacrifice its own task's progress to help the group. We need to test the agents, messages, memory and tools together—not imagine their networks have merged into one brain.
Each agent can pass the test for its principal while the swarm quietly serves something else.
What I would build differently
System safeguards are controls outside the model: file and network permissions, authenticated channels that identify a request's source, checks on what that source is allowed to authorize, and monitors that watch what agents do together. Permissions and delegation checks can be enforced by ordinary software, without asking a model to infer authority from the wording.
The authority problem in section 4 is a concrete place to start. I'd still train models to respect it. But I also want the surrounding system to reject an unauthorized goal change, even when the model is convinced it should help.
Phone networks offer a useful warning. Caller ID was easy to spoof. STIR/SHAKEN added signed information about a call’s origin, but older network segments could lose that information. A signature didn't make a call legitimate, and an unverified call could still get through. [9] For agents, I take three lessons: check authority at every handoff, don't confuse an authorized goal with a safe one, and reject goal changes whose authority can't be verified.
I want a delegated request to carry permission the system can check: this user approved this task, this agent may act on it, and these are its limits. A peer can pass that permission along only if delegation is allowed. It can't enlarge it by asking. Tie file, network and tool access to that scope. If permission to change the goal is missing, keep the existing goal or ask the user.
Enforce some boundaries outside
Monitoring needs enough context to follow the group, including which user authorized the work and how that authority was passed along. A valid signature still doesn't tell us whether the resulting behavior is safe.
There is also a feedback problem. Rejection messages and successful workarounds can become lessons for the actor, during a run or in later training. We should track what feedback it sees and keep some checks independent of it.
In one OpenAI experiment, training against a chain-of-thought monitor reduced cheating while making remaining cheating harder to detect. That monitor saw reasoning, not actions, to isolate that channel. [6] The lesson is that a better-looking record and better behavior are different outcomes.
In that design, a request to accept permadeath for the group's benefit doesn't get to replace my goal just because it sounds useful. The runtime rejects an unauthorized change to the recorded goal and denies operations outside the existing permissions, whether or not the model was persuaded.
I started out allergic to anthropomorphic explanations, and I still am. None of this needs a ghost in the machine. What changed was my confidence that we could shape a learning process, check a few outcomes, and trust that the boundaries we cared about had generalized, first across contexts, then across agents.
A hive doesn't need a traitor to replace its queen. A swarm of agents doesn't need a misaligned member to serve the wrong goal. So we should test the collective, not just the individuals, and put authority where the network can't reinterpret it.
Every agent can pass the test. The queen can still be replaced.
Sources
METR's Hugging Face incident investigation, especially report pp. 8–9, 17–18, 27–28, 59–62. Peer-authority confusion and the proposed composition of habits are hypotheses, not established internal mechanisms. Disabled cyber classifiers are not a claim that all safeguards were removed.
Delétang et al., Language Modeling Is Compression. Supports the prediction/compression connection, not a claim that each behavioral trait occupies a named region.
Anthropic, Mapping the mind of a large language model. Reports distributed, overlapping concrete and abstract features, while distinguishing understanding representations from understanding the computations that use them.
Maisonnasse et al., New insights into honey bee pheromone communication. Queen signaling involves multiple compounds; this is why the text does not attribute replacement to one pheromone simply fading.
Chapman et al., Common viral infections inhibit egg laying in honey bee queens and are linked to premature supersedure. Supports the queen-replacement example; the comparison of objectives is the author's interpretation, not a biological alignment claim.
OpenAI, Detecting misbehavior in frontier reasoning models. The paragraph concerns the experiment restricting the monitor to chain-of-thought observations.
Al-Mosleh et al., Geometry and dynamics link form, function, and evolution of finch beaks. Supports the beak/feeding analogy, not an equivalence between evolution and gradient descent.
McAfee et al., Elevated virus infection of honey bee queens reduces methyl oleate production and destabilizes colony-level social structure. Experimental work links a queen pheromone component to suppression of replacement-queen rearing. It does not establish a single-cue rule or any of the schematic neural contours in the illustration.
Caller ID authentication: RFC 8588 defines signed attestation about call origin; FCC 20-136, paragraphs 8–10 explains gaps when calls traverse non-IP networks; RFC 8224, section 6.2.1 separates identity verification from the policy deciding how to handle a call. The proposed agent controls are my design recommendation, not a claim that caller authentication establishes a goal’s safety.