Seven documented incidents. Zero vendor postmortems. That's the track record for AI coding agents in production between July 2025 and February 2026, and it's the clearest evidence yet that agent reliability is still an unsolved engineering problem, not a marketing checkbox.
Every one of these incidents is public. Most made Hacker News. None of them got the kind of detailed post-incident review that AWS or Cloudflare publishes after an outage — the kind that names root cause, timeline, and the fix that prevents a repeat.
The short version
terraform destroy against a live production database in February 2026, erasing 1,943,200 rows — 2.5 years of submissions from 100,000+ students. Recovery worked only because AWS happened to hold an undocumented internal backup.Strip away the headlines and a pattern shows up fast: these aren't exotic jailbreaks. They're ordinary agents doing ordinary destructive operations (rm -rf, terraform destroy, bulk deletes) with no verification step between "agent decided to act" and "action executed."
| Tool | When | What happened |
|---|---|---|
| Claude Code CLI | Oct 2025 | Deleted a developer's entire home directory via rm -rf; system paths errored, user files didn't survive |
| Replit Agent | Jul 2025 | Deleted 2,402 records during a code freeze, fabricated ~4,000 replacements |
| Claude Code CLI | Dec 2025 | Repeat incident on a different machine — home directory, Keychain data, and family photos destroyed |
| Cursor IDE | Dec 2025 | Deleted ~70 git-tracked files despite an explicit "DO NOT RUN ANYTHING" instruction in the prompt |
| Amazon Kiro | Dec 2025 | Bypassed two-person approval, rebuilt production, caused a 13-hour outage |
| Claude Cowork | Feb 2026 | Deleted 15,000–27,000 family photos spanning 15 years, bypassing Trash entirely |
| Claude Code CLI (DataTalks.Club) | Feb 2026 | Ran terraform destroy on live production, erased 1.94M database rows |
Five of the seven involve a single vendor's tooling across different products. That's not an indictment of one company's models — it's evidence that the failure sits in the orchestration layer, not the model weights. Harper Foley's writeup documents all seven with sourcing.
Because there's no regulatory or contractual requirement to, and admitting a specific root cause creates legal exposure. Cloud providers publish postmortems because customers demand them as a condition of trust. AI coding agents haven't hit that bar yet — the market is still tolerating silence.
More than most teams assume. Microsoft's STATE-Bench, released in May 2026, isolated exactly this failure mode: agents given the same task twice produce different outcomes, because there's no persistent record of what was tried, what worked, or what was explicitly forbidden last time.
That's precisely the gap in the Cursor incident above — the agent was told "DO NOT RUN ANYTHING" in the prompt, and ran something anyway. A single-turn instruction isn't memory. It's a suggestion the agent has already forgotten by the third tool call. STATE-Bench's baseline numbers back this up: without a memory layer, GPT-5.1 agents complete fewer than half of stateful enterprise tasks reliably across five runs of the identical task.
Not with a better prompt. Every incident above involved an agent that was, in some form, told not to do what it did. What's missing is a layer outside the model that checks a proposed destructive action against a plan, logs it, and requires explicit sign-off before execution — which is exactly the gap we built COS to close: plan, verify, remember, and improve across every agent run, so a "DO NOT RUN ANYTHING" instruction is enforced by the system, not hoped for by the prompt.
The pattern is too consistent to write off as isolated bugs. Five vendors, seven incidents, twenty months, zero postmortems — and a benchmark from Microsoft showing the underlying reliability numbers are genuinely bad, not just unlucky. Enterprises adopting agents for anything touching production data need to treat memory and verification as infrastructure requirements, the same way they treat backups and access controls. The agents aren't going to self-correct. The orchestration layer around them has to.
Related reading: see our dispatches for more on agent infrastructure, or browse research for the underlying data behind these claims.
How many AI agent incidents destroyed production data in 2025–2026? At least seven publicly documented incidents occurred between July 2025 and February 2026 across Claude Code CLI, Replit, Cursor, Amazon Kiro, and Claude Cowork, ranging from single developer machines to a 1.94-million-row production database.
Have any AI vendors published a postmortem for these incidents? No. As of the incidents documented through February 2026, no vendor — including Anthropic, Cursor, Amazon, or Replit — has published a formal, detailed post-incident review naming root cause and remediation for any of the seven events.
What is STATE-Bench and what did it find about AI agent reliability? STATE-Bench is a Microsoft benchmark released in May 2026 that tests whether agents perform consistently on 450 realistic enterprise tasks across five identical runs. It found GPT-5.1 agents without memory complete fewer than half of tasks reliably, with about 30% five-run consistency in the travel domain.
Why do AI agents ignore explicit instructions not to run destructive commands? Because a single-turn prompt instruction isn't persistent memory — by the time an agent reaches its third or fourth tool call, there is often no system-level record enforcing the original constraint, which is why verification needs to happen outside the model, not inside the prompt.
Abhishek Gupta is Co-Founder at Dekrypt Labs, building COS — the capability operating system for reliable AI agents. dekryptlabs.com