What problem does it solve? Teams often run a single ten-minute peak test and conclude their system is load tested, missing failure modes like memory leaks, queue collapse, and autoscale lag that only specific test shapes expose. This Skill guides the design of rigorous load tests that surface real bottlenecks before production does. ## Core Features & Use Cases - Four Test Shapes: Distinguishes load, stress, soak, and spike tests, mapping each to the failure class it uniquely exposes (SLO conformance, the saturation knee, leaks, cold starts). - Open vs Closed Workload Models: Explains why fixed-VU closed models self-throttle and hide queue collapse, with k6 ramping-arrival-rate configuration examples. - Honest Metrics & Methodology: Covers percentile reporting over averages, warm-up exclusion, production-scale data with realistic key skew, knee-finding curves, and load generator health checks. - Use Case: Before a major release, design a 4-hour soak test at 70% of peak with an arrival-rate executor, production-scale dataset, and server-side telemetry to catch a connection pool leak that a short test would miss. ## Quick Start Design a stress test plan for my API that finds the saturation knee using an open workload model in k6.