What problem does it solve? Slow applications, regressions, and wasted optimization effort happen when teams guess at bottlenecks instead of measuring. This Skill enforces a measure-identify-fix-verify-guard workflow so every performance change is justified by data and reverted when it does not beat the baseline. ## Core Features & Use Cases - Measurement-First Workflow: Establish baselines with synthetic tools (Lighthouse, DevTools) and real-user monitoring (web-vitals, CrUX) before changing any code. - Anti-Pattern Fixes: Concrete before/after code for N+1 queries, unbounded fetching, connection pool exhaustion, missing image optimization, React re-renders, large bundles, and caching mistakes. - Regression Guarding: Set performance budgets, enforce them in CI with bundlesize and Lighthouse CI, and log every attempt so failed ideas are not retried. - Use Case: Your API p95 latency spiked after a release. Use this Skill to profile the endpoint, find an N+1 query in the data fetching layer, fix it with a single joined query, re-measure against the baseline, and add a CI budget to prevent recurrence. ## Quick Start Ask the AI to profile your slow page or endpoint, identify the actual bottleneck, and apply a measured fix following the performance optimization workflow.