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 if 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 remedies 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 query plans with EXPLAIN ANALYZE, identify a missing composite index, verify the fix against the baseline, and add a CI budget to prevent recurrence. ## Quick Start Ask the AI to profile the slow endpoint or page, identify the actual bottleneck with measurements, and propose a fix with before-and-after numbers.