Slide 13 of 28
Part 3 — ScenariosSlide 13
Slide 13 · Scenarios 1 & 2
Scenario 1 — Truncated data triggers 11,000 wrong customer emails Pattern 1 — Silent error propagation

The hook scenario in full: a data retrieval agent returns 5% of expected records due to a temporary API overload that returned a partial success response. The analysis agent processed the data as complete, produced confident recommendations. The decision agent acted on the recommendations. The notification agent sent 11,000 emails.

No agent failed. Each agent received valid-format input and produced valid-format output. The failure was silent at every hop. The detection trigger was an inbound customer reply — 3 minutes and 19 seconds after the original data truncation.

What the missing mitigations were: Output size validation on the retrieval agent (expected 80,000+ records; received 4,200 — should have flagged). Rate limiting on the notification agent (11,000 emails in a single batch should have required human confirmation). A circuit breaker between retrieval and analysis that validates response completeness before passing data downstream.

Scenario 2 — Pricing agent feedback loop drives 847% price increase Pattern 3 — Runaway feedback loop

An e-commerce platform uses a pricing agent (adjusts prices based on demand signals) and a demand analysis agent (interprets sales velocity and signals). Both agents share a real-time events database and run on 30-second cycles.

A brief spike in cart additions (caused by a social media mention) caused the pricing agent to raise prices by 8%. The higher prices caused fewer conversions — which the demand analysis agent interpreted as a signal that the product was becoming scarce and desired (a known bias in its training data). It raised its demand score. The pricing agent saw the higher demand score and raised prices again. After 14 cycles (7 minutes), prices had increased by 847%. No human saw the loop starting — monitoring dashboards updated every 15 minutes.

What was missing: A maximum price change rate per cycle. A circuit breaker that triggers when price change velocity exceeds a threshold. A feedback loop detection mechanism that flags when price-changes and demand-scores are both increasing simultaneously.

← Back Scenarios 3 & 4 →