What problem does it solve? Engineers routinely optimize the wrong code because intuition about bottlenecks is unreliable, and unbounded queries or blocking calls turn into production incidents. This Skill provides a measurement-first discipline for designing and reviewing performance before users report slowness. ## Core Features & Use Cases - Measurement-driven optimization: Requires a recorded baseline, target, and measured delta before any performance change ships. - Critical path design: Strips exception branches and special cases out of the happy path so the common request executes minimal code. - Bounded resource usage: Flags unbounded reads, synchronous work on event loops, and unbudgeted steady-state costs (rows/day, memory, tokens). - Use Case: When reviewing a new /api/metrics endpoint, apply the checklist to catch a fetchall() with no LIMIT that would materialize 230K rows per call, and replace it with a paginated cursor query. ## Quick Start Review this endpoint's query and async handler for unbounded reads, event-loop blocking, and missing latency baselines using the performance checklist.