You hand your AI agent a 10-page contract and ask it to make revisions. After 20 back-and-forth interactions, you get back a document missing half the original content. No warnings. No error messages. Just gone.
Microsoft Research's DELEGATE-52 benchmark just proved this isn't a rare edge case — it's the default behavior. Frontier AI models lose 25-50% of document content over extended interactions. And the tools we add to make agents "smarter" actually make this worse.
The Problem: Entropy in Your Workflows
Here's what's happening under the hood.
Every time an AI agent reads and modifies a document, it reconstructs the content from its internal representation. That reconstruction isn't lossless. Small details get dropped. Formatting drifts. Nuanced clauses get simplified. Do this 20 times, and the document you end up with bears little resemblance to what you started with.
The DELEGATE-52 benchmark tested this systematically across 52 domains — everything from legal contracts to scientific papers to financial reports. The results:
- 25-50% content degradation over 20 interactions depending on domain
- Only Python programming passes the "ready for autonomous use" threshold
- Agentic tools make it worse — agents with access to file editors and search tools corrupted documents faster than bare models
- No frontier model is safe — GPT-5.4, Claude Opus 4.7, Gemini 3.1 Pro all show significant degradation
The implication is brutal: the more capable your agent stack, the faster your data degrades. Adding RAG, tool use, and multi-step planning — all the things that make agents impressive in demos — accelerates content loss.
The Solution: Preservation Architecture
The fix requires thinking about your agent stack differently. Instead of optimizing only for output quality, you need to optimize for content preservation:
- Differential editing: Instead of letting the agent rewrite entire documents, use structured edit operations — insert paragraph at line X, replace clause Y, delete section Z. The agent proposes changes; the original stays intact until explicitly modified.
- Content hashing and diff checks: After every agent interaction, hash the document and compare against the original. Flag any sections that were modified without explicit instruction.
- Frozen context blocks: Mark critical sections of a document as read-only for the agent. The model can reference them but cannot modify them without human approval.
- Turn-limited sessions: Don't let agent sessions run indefinitely. Reset context every 5-10 turns, forcing the agent to reload the current document state rather than operating from a stale mental model.
- Human-in-the-loop verification: For high-stakes documents, every N-th modification gets flagged for human review before it's committed.
The key principle: never let the agent be the single source of truth. The document itself is the source of truth. The agent proposes deltas, and a deterministic system applies them.
Benchmarks: How Bad Is It Really?
From DELEGATE-52 and related research:
- 25-50% document content loss over 20 interactions (DELEGATE-52)
- Only 11 of 52 domains rated "ready" by the best model (Gemini 3.1 Pro)
- Python programming: The only domain where autonomous delegation is safe
- Tool-equipped agents corrupt faster than bare models (Microsoft Research)
- WildClawBench: 62.2% — the ceiling for real-world agent task accuracy
- MultiChallenge: under 50% for all frontier models on multi-turn tasks
Caveat: DELEGATE-52 measures worst-case degradation over many sequential edits. In practice, most production workflows involve fewer than 20 sequential edits on a single document. But for long-running automations — contract review, report generation, code refactoring — these numbers are directly relevant.
Impact: The Hidden Cost of Agent-Driven Workflows
This is one of those problems that's invisible until it's catastrophic.
Imagine your legal team uses an AI agent to review and annotate contracts. After a month of iterative revisions, critical liability clauses have been silently dropped. Nobody noticed because each individual change looked reasonable. But the cumulative effect is a contract that doesn't protect you anymore.
Or your financial reporting pipeline. The agent "cleans up" quarterly reports across 15 revision cycles. Numbers that were once precise become rounded. Footnotes disappear. Comparisons lose their context.
The financial impact shows up in three ways:
- Rework costs: Every corrupted document needs manual review and correction. If your agent processes 100 documents a day with a 30% corruption rate, that's 30 documents requiring human fixes daily.
- Liability exposure: In regulated industries (legal, finance, healthcare), document integrity isn't optional. Silently corrupted compliance documents can mean fines, lawsuits, or worse.
- Trust deficit: Once your team catches the agent making mistakes, adoption drops. The tool you invested in becomes shelfware.
Combined with the multi-turn reliability crisis (39% performance drop), the picture is clear: raw AI agents are not production-safe for document workflows. You need a preservation layer.
The Bottom Line
We're in the middle of an AI agent gold rush. Every vendor is shipping agents that can "do your work for you." But nobody is talking about what happens to your data after 20 interactions.
DELEGATE-52 is a wake-up call. If you're deploying AI agents on real documents without differential editing, content verification, and preservation architecture, you're accepting a 25-50% data loss rate. That's not a feature. That's a bug in your deployment strategy.
Build the guardrails first. Then let the agents loose.