What problem does it solve? Slow applications, regressions, and wasted optimization effort. This Skill enforces a measure-first workflow so you fix the actual bottleneck instead of guessing, and revert changes that do not measurably help. ## Core Features & Use Cases - Measurement-First Workflow: A five-step loop (measure, identify, fix, verify, guard) covering synthetic tools like Lighthouse and real-user monitoring via the web-vitals library. - 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 design. - Core Web Vitals Targets: Threshold tables for LCP, INP, and CLS plus CI enforcement with bundlesize and Lighthouse CI. - Use Case: Your API endpoint is slow. Use this Skill to profile the database query log, find an N+1 pattern, fix it with a single join query, verify with EXPLAIN ANALYZE, and add a p95 latency budget to CI. ## Quick Start Use the performance-optimization skill to profile this slow page load and identify the actual bottleneck before changing any code.