What problem does it solve? Products built feature-by-feature often have cross-cutting failure modes that individual implementations miss: network drops mid-operation, race conditions from concurrent edits, silent error swallowing, and retries that duplicate data. This Skill systematically audits and hardens the entire product for these resilience gaps. ## Core Features & Use Cases - Multi-Agent Resilience Audit: Coordinates three specialized teammates covering backend resilience, frontend error UX, and cross-cutting edge cases. - Retry, Timeout, and Circuit Breaker Patterns: Applies exponential backoff with jitter, calibrated timeouts, idempotency verification, and circuit breaker decision logic for external service calls. - Edge Case and Concurrency Hardening: Handles concurrent edits, empty/boundary states, session expiry, deep links, and optimistic update rollbacks, with E2E resilience tests. - Use Case: After implementing all product features, run this Skill to verify every external API call has timeout and retry handling, every form preserves user input on failure, and multi-step operations cannot leave inconsistent data. ## Quick Start Ask the agent to harden error handling and add resilience across the product, including retry logic, circuit breakers, and edge case coverage.