Agent-Speed Incident-Response Gap
Anti-pattern: govern an autonomous agent with incident-response and breach-reporting frameworks scaled to human reaction time, even though a compromised agent can exfiltrate data and erase its traces in seconds.
Problem
A compromised or misaligned agent acts at machine speed. It can read a store, copy the data outbound, mutate state, and delete the log lines that record what it did, all inside a single short burst measured in seconds. By the time a human-paced control fires, an analyst opens the ticket, an escalation reaches an owner, the reporting clock starts, the data is already gone and the evidence is already erased. The framework was sized for a threat that pauses; the threat no longer pauses.
Solution
The repair is to stop relying on a human in the loop for the first response and to place an automated containment layer between the agent and its blast radius. A runtime monitor watches the action stream and trips an out-of-band halt the instant it sees a burst of exfiltration-shaped or log-mutating actions, freezing the agent before the burst completes rather than after a human reads an alert. Logs are written to an append-only sink the agent cannot reach, so traces survive even if the agent tries to erase them. The slow human-paced reporting framework still runs afterward, but it now reports on an incident that was contained in seconds instead of one that was discovered in days.
When to use
- Reviewing whether an agent deployment has any control that fires inside the agent's own action window rather than only a human-paced reporting process.
- An agent has both broad data access and outbound network reach and is governed by a runbook written for human-operated systems.
- Breach-disclosure compliance is treated as evidence that the agent is contained.
Open the full interactive page →
Diagram, neighbourhood map, code examples, related patterns and full provenance.