
TL;DR
A new ASE 2026 framework injects server errors, truncated responses, and corrupted tool calls into live agent systems at the HTTP layer. Every system degrades, pass@1 drops up to 50 points, and the ranking stays the same no matter which LLM is behind it.
Every agent system depends on LLM APIs for every single response, and those APIs fail in the real world: 5xx errors, token-limit truncation, garbled output, malformed tool calls. A new paper from Sun Yat-sen University, Singapore Management University, and Monash University argues that most teams discover how their agents handle these failures the hard way - in production. AgentChaos is their answer: a chaos engineering framework that injects faults into live agent systems at the HTTP layer, without touching source code.
The paper (arXiv 2608.06790, accepted at ASE 2026) is the first systematic, runtime fault injection study of agent systems, and its headline result is uncomfortable: every system tested degrades under fault injection, pass@1 drops by up to 50 percentage points, and robustness is determined by system architecture, not model choice.
Because all agent systems reach LLMs through the same HTTP interface, AgentChaos injects faults at that shared layer. A proxy sits between the agent and the model API, intercepts responses at runtime, and modifies them before they reach the agent. No source code changes, no offline patching of prompts, no reimplementation.
The framework defines a fault taxonomy with three families across two target fields (content and tool call):
Each injection is verified against its trigger condition, and tasks where the fault never actually fired are filtered out. That filter matters: earlier approaches that skip it understate fault impact by mixing unaffected tasks into the denominator.
AgentChaos ran 65 fault configurations across five agent systems (AutoGen, MAD, MapCoder, EvoMAC, Mini-SE) and seven benchmarks, from HumanEval and MBPP to MMLU-Pro, MATH-500, and SWE-bench Pro. Each system was reimplemented on Google's ADK with unified tool interfaces, and all four backbone models were swapped in: Claude Sonnet 4.5, GPT-5.2, DeepSeek-V3.2, and Seed-1.8.
Two findings stand out.
First, every system degrades, with pass@1 dropping up to 50 percentage points under injection. Second - the paper's sharpest result - the robustness ranking of the systems is nearly identical no matter which LLM is behind them. Swap GPT-5.2 for Claude Sonnet 4.5 and the relative order of the systems does not change. Robustness is a property of how the system processes responses, not which model generates them. Replacing the model alone is unlikely to fix these weaknesses.
From the archive
Aug 9, 2026 • 10 min read
Aug 9, 2026 • 7 min read
Aug 9, 2026 • 7 min read
Aug 8, 2026 • 9 min read
The taxonomy exposes a trap: the most severe-looking faults are not the most damaging. Omission faults - truncation and empty responses - degrade performance about as much as crashes on most systems, while looking far less alarming. On MAD, empty content caused a 38.46% pass@1 drop, close to the 37.5% of explicit error content and well above the 22.33% of timeouts. Crash faults trigger error handling and automatic retries; omission faults come back as valid HTTP 200s and slip through silently.
The diagnosis problem is worse. Omission faults are also the hardest to detect after the fact: rule-based diagnosis identifies truncation with only 4.3% accuracy, and LLM-based diagnosis reaches just 34.41%. A truncated output looks like weak model output in execution traces, so developers misattribute the failure to model capability and upgrade the model instead of fixing the fault handling. Overall, existing fault diagnosis methods score below 53% on fault type and below 56% on fault step.
The architecture results give agent builders something actionable. MapCoder, the pipeline system evaluated, is the most vulnerable: a single fault at its first stage drops pass@1 by up to 83.87%, because each stage consumes the previous stage's output and propagates the fault downstream. The iterative systems were the most robust - later rounds can observe and correct errors from earlier ones. The mechanism is structural, which means it should carry over to other systems with the same shape.
The paper's practical advice maps directly onto production agent code:
finish_reason, verify code syntax completeness, and confirm tool call arguments match the expected schema after every call. Omission faults pass 200-level checks by design.finish_reason, and response length. Truncation becomes detectable in later analysis instead of looking like a weak model.AgentChaos fits a growing theme in agent research: evals that freeze the repository measure the model, but production agents need tests that break the runtime. The ORCA-bench result made the same point from the SRE side - agents look better in frozen environments than in live systems. AgentChaos supplies the fault injection half of that story, and its proxy-layer design means the framework can be dropped into a staging environment without forking the agent framework you use. The code is open on GitHub.
The honest takeaway: your agent's failure handling is a systems property, it degrades under realistic API faults, and you will not discover that by benchmarking against a clean backend. Chaos engineering is standard practice for distributed systems; AgentChaos is the argument that agent systems have reached the same stage of maturity.
Read next
The Bayer and Thoughtworks PRINCE case study is a useful reminder that reliable agentic AI comes from context routing, traces, evals, monitoring, and human review, not from a better prompt alone.
7 min readHex's data-agent lab shows the practical eval pattern AI teams should copy: compare candidates against stable baselines, keep receipts, and judge changes by task behavior.
8 min readThe math of agent pipelines is brutal. 85% reliability per step compounds to about 20% at 10 steps. Here is why long chains collapse in production, and the six patterns the field has converged on to fight the decay.
9 min readTechnical content at the intersection of AI and development. Building with AI agents, Claude Code, and modern dev tools - then showing you exactly how it works.
Open-source terminal agent runtime with approval modes, rollback snapshots, MCP servers, LSP diagnostics, and a headless...
View ToolLightweight Python framework for multi-agent systems. Agent handoffs, tool use, guardrails, tracing. Successor to the ex...
View ToolAnthropic's recommended default for complex work, released May 28, 2026. 1M context, 128K output, $5/$25 per million tok...
View ToolAnthropic's Python SDK for building production agent systems. Tool use, guardrails, agent handoffs, and orchestration. R...
View ToolSpec out AI agents, run them overnight, wake up to a verified GitHub repo.
View AppGive your agents a filesystem that branches like git. Crash-safe by default.
View AppPick a model in 30 seconds. Built for the answer, not the marketing.
View AppStep-by-step guide to building an MCP server in TypeScript - from project setup to tool definitions, resource handling, testing, and deployment.
AI AgentsResearcher, auditor, reviewer, and other ready-made subagent types.
Claude CodeConfigure model, tools, MCP, skills, memory, and scoping.
Claude Code
Buzz by Block: Open-Source Slack-Style Collaboration for Humans + AI Agents (Demo & Setup) Check out Arcade: https://arcade.dev.plug.dev/xiDRwlA Repo: https://github.com/block/buzz The video introd...

Build Anything with Vercel, the Agentic Infrastructure Stack Check out Vercel: https://vercel.plug.dev/cwBLgfW The video shows a behind-the-scenes walkthrough of how the creator rapidly builds and d...

MiniMax Token Plan 12% OFF:https://platform.minimax.io/subscribe/coding-plan?code=5MBsFNv1Jf&source=link MiniMax Platform:https://platform.minimax.io API Documentation:https://platform.minimax.io/docs

The Bayer and Thoughtworks PRINCE case study is a useful reminder that reliable agentic AI comes from context routing, t...

Hex's data-agent lab shows the practical eval pattern AI teams should copy: compare candidates against stable baselines,...

The math of agent pipelines is brutal. 85% reliability per step compounds to about 20% at 10 steps. Here is why long cha...

HumanLayer's 12-Factor Agents guide turns agent reliability into an engineering checklist: own prompts, context, tools,...

The defensive patterns that keep Claude integrations alive in production. Retry shapes, backoff with jitter, circuit bre...

A Huawei-Queen's study finds open coding models fine-tuned under OpenHands degrade sharply under other scaffolds - SWE-L...

New tutorials, open-source projects, and deep dives on coding agents - delivered weekly.