What problem does it solve? Load tests only prove a service handles expected traffic; they never prove it fails gracefully when dependencies break. This Skill closes that gap by generating controlled fault-injection experiments that verify circuit breakers, retries, and graceful degradation actually behave as the HLD claims. ## Core Features & Use Cases - Scientific chaos method: Defines steady state from SLOs, formulates a falsifiable hypothesis per failure scenario, injects faults with abort criteria, and verifies recovery behavior. - Ready-to-run fault injection: Provides k6 scripts for HTTP error rate, timeout, and latency-spike injection, plus Toxiproxy commands for network-level faults like DB connection drops. - CI integration and review gate: Adds a chaos job that runs post-staging-deploy in GitHub Actions, documents each experiment with blast radius and abort criteria, and dispatches a chaos-reviewer agent before committing. - Use Case: A service with a documented circuit breaker and 99.9% availability SLO needs proof it degrades gracefully. The Skill generates a k6 chaos test injecting 10% 503s from a dependency, verifies the breaker opens and recovery completes within 30 seconds, and wires the test into the staging pipeline. ## Quick Start Ask the AI to generate chaos engineering tests for the service's resilience NFRs using k6 fault injection and add a post-staging-deploy chaos job to the CI pipeline.