What problem does it solve? Slow page loads, sluggish interactions, and lagging APIs frustrate users and hurt conversions, but optimizing without data wastes effort on the wrong things. This Skill enforces a measure-first workflow so you fix the actual bottleneck instead of guessing. ## Core Features & Use Cases - Measurement-First Workflow: Follow a five-step process (Measure, Identify, Fix, Verify, Guard) with concrete profiling commands for frontend and backend. - Core Web Vitals Guidance: Target thresholds for LCP, INP, and CLS with symptom-to-cause decision trees for diagnosing slow loads, jank, and high latency. - Anti-Pattern Fixes with Code Examples: Ready-to-apply fixes for N+1 queries, unbounded fetching, unoptimized images, unnecessary React re-renders, large bundles, and missing caching. - Use Case: Your React app's dashboard feels sluggish after a release. Use this Skill to profile long tasks, identify an N+1 query in the data-fetching layer, apply the join-based fix, and verify the improvement against your performance budget in CI. ## Quick Start Profile my application's slow dashboard page, identify the bottleneck, and apply the appropriate performance fix with before-and-after measurements.