/ ENGINEERING SYSTEMS
Back to Field Notes

FIELD NOTE / SYSTEMS NOTE

Cascade Failures in Multi-Agent LLM Systems: How One Bad Tool Call Corrupts the Whole Pipeline

·6 min read·Updated 2026-09-15
READERS

A legal review pipeline returned confident summaries of clauses that did not exist. The prompt was innocent; the state moving between agents was not. This investigation follows that incident through compounding error, detection, architecture, and the reliability program that made the pipeline fail loudly.

Public-safe engineering note · no client or confidential implementation details
01

The clause that was never there

At 02:17 an on-call engineer found a legal-document review queue citing a termination clause absent from every source page. The classifier identified the contract family, the retriever returned a nearby indemnity section, and the summarizer sounded certain. Rewriting the prompt changed wording but not the result. A trace showed an OCR tool had returned a valid envelope with an empty clause list; three downstream agents treated that object as evidence. The pipeline returned HTTP 200 for 11,842 documents before a reviewer noticed. A small tool error had become shared state.

02

Why a pipeline fails differently

A single model call has one observable boundary. A multi-agent workflow creates several state boundaries, and each can convert uncertainty into an assumption. If five agents are each 95% accurate, every handoff is correct only 0.95⁵ = 77.38% of the time. In clinical triage, a 95% extraction component became 78% end-to-end agreement after five steps. Loud failures stop a run; silent failures continue with a plausible object, which is why corrupted state is more dangerous than a wrong sentence.

Error propagation network · final trace returned 200 OK
IntakePlannerRetrieverVerifierWriterfailure origincorrupted context passed → confidence laundered → wrong state written

Share a thought

Comments appear immediately. Email is optional and never shown.

Markdown & code fences supported
AUTH VIA: PUBLIC FORM

No comments yet. Be the first to share a thought.