---
id: "concept-compounding-failure"
type: "concept"
source_timestamps: ["00:19:02", "00:19:33"]
tags: ["reliability", "systems-engineering", "risk-management"]
related: ["concept-layer-6-orchestration", "concept-stack-literacy", "quote-stacking-liabilities"]
definition: "The phenomenon where the overall reliability of an agent system degrades exponentially as it depends on multiple independent, imperfect infrastructure primitives."
sources: ["s52-orchestration-layer"]
sourceVaultSlug: "s52-orchestration-layer"
originDay: 52
---
# Compounding Failure (Stack Reliability Erosion)

## Definition
The phenomenon where overall reliability of an agentic system degrades exponentially as it depends on multiple independent, imperfect infrastructure primitives.

## The math
The end-to-end reliability of an agent is the **mathematical product** of its dependencies' reliabilities — not the average. If an agent depends on five primitives at 95% reliability each:

```
0.95^5 ≈ 0.7738
```

So the end-to-end reliability is roughly **77%**, not 95%.

This multiplicative risk means that as developers compose more complex agent workflows from disparate tools, the system's fragility increases exponentially.

## Why it bites today
The ecosystem has many nascent, independent primitives (a vector DB, an LLM API, a sandboxing environment, an integration middleware). Each one is independently maturing, and the [[concept-layer-6-orchestration]] layer that *should* catch and recover from local failures is itself the least mature layer in [[concept-the-agent-stack]].

## Speaker framing
Captured in [[quote-stacking-liabilities]]: "You are stacking the liabilities of all your agentic primitives right now because you have to compose so much of this layer by hand."

## Strategic implication
Until robust orchestration infrastructure exists, builders must be acutely aware that they are stacking liabilities. This is one of the core reasons [[concept-stack-literacy]] is mandatory. Reliability-engineering literature on distributed systems (e.g., Lil'Log's "Building Reliable Agents" with Monte Carlo sims) corroborates the math.
