What problem does it solve? Web pages that fail Google's Core Web Vitals thresholds rank lower in search results and deliver poor user experiences, but diagnosing whether the bottleneck is LCP, INP, or CLS—and knowing the exact fix—requires deep performance expertise. ## Core Features & Use Cases - LCP Optimization: Fix slow server response, render-blocking resources, unoptimized hero images, and client-side rendering delays using preload hints, fetchpriority, critical CSS, and the Speculation Rules API. - INP Optimization: Break up long tasks with scheduler.yield(), prioritize visual feedback in event handlers, defer third-party scripts, and reduce React/Vue re-renders. - CLS Optimization: Eliminate layout shifts from unsized images, ads, injected content, and web fonts using aspect-ratio, reserved space, and font metric overrides. - Use Case: A Next.js site has a 4.5s LCP and 0.3 CLS. Use this Skill to identify the LCP element, add image preloading with fetchpriority="high", reserve space for embeds, and verify improvements with PerformanceObserver debugging snippets. ## Quick Start Analyze my page's Core Web Vitals and give me a prioritized fix list for LCP, INP, and CLS.