What problem does it solve? Slow page loads, poor Core Web Vitals scores, and sluggish APIs hurt user experience, but optimizing without measurement wastes effort on the wrong things. This Skill enforces a measure-first workflow so you fix real bottlenecks instead of guessing. ## Core Features & Use Cases - Measure-Identify-Fix-Verify-Guard Workflow: A structured five-step process that starts with baseline measurement (Lighthouse, DevTools, web-vitals RUM, APM) and ends with regression monitoring. - Core Web Vitals Targets: Concrete thresholds for LCP, INP, and CLS, plus symptom-to-cause decision trees for slow loads, janky interactions, and slow APIs. - Anti-Pattern Fixes with Code: Ready-to-apply fixes for N+1 queries, unbounded data fetching, unoptimized images, unnecessary React re-renders, oversized bundles, and missing caching. - Use Case: Your app's Lighthouse score dropped after a release. Use this Skill to profile the regression, identify an N+1 query and an unoptimized hero image, apply the fixes, and verify LCP returns under 2.5 seconds. ## Quick Start Ask the agent to profile the current page's performance, identify the top bottleneck affecting Core Web Vitals, and propose a measured fix.