What problem does it solve? Performance work without measurement is guessing, and unmeasured optimizations add complexity without improving what users feel. This Skill enforces a measure-identify-fix-verify-guard workflow so every optimization is justified by real 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 touching any code. - Anti-Pattern Fixes: Concrete fixes for N+1 queries, unbounded fetching, connection pool exhaustion, missing image optimization, unnecessary React re-renders, large bundles, and missing caching. - 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's p95 latency spikes after a release. Use this Skill to profile the slow endpoint, find an N+1 query via EXPLAIN ANALYZE, fix it with a proper join, re-measure against the baseline, and add a CI budget to prevent regression. ## Quick Start Use the performance-optimization skill to profile my app's slow dashboard page and fix the bottleneck with before-and-after measurements.