What problem does it solve? Slow load times, sluggish interactions, and unoptimized code degrade user experience and hurt Core Web Vitals scores, but optimizing without data wastes effort on the wrong things. This Skill enforces a measure-first workflow so every optimization targets a proven bottleneck. ## Core Features & Use Cases - Measurement-First Workflow: Follows a five-step loop (Measure, Identify, Fix, Verify, Guard) using Lighthouse, DevTools traces, and the web-vitals library for real user monitoring. - Anti-Pattern Fixes: Provides concrete code corrections for N+1 queries, unbounded data fetching, missing image optimization, unnecessary React re-renders, large bundles, and missing caching. - Core Web Vitals Targets: Defines thresholds for LCP, INP, and CLS plus enforceable performance budgets for bundle size, API latency, and Lighthouse scores in CI. - Use Case: When a Next.js page loads slowly, use this Skill to trace the network waterfall, identify render-blocking resources or slow TTFB, apply the targeted fix, and verify improvement with before-and-after metrics. ## Quick Start Profile my application's slow page load and identify the actual bottleneck before suggesting any optimizations.