What problem does it solve? Web pages often fail Google's Core Web Vitals thresholds, hurting page experience and search rankings, and developers struggle to identify whether the root cause is slow server response, render-blocking resources, long main-thread tasks, or unexpected layout shifts. ## Core Features & Use Cases - Metric-specific diagnosis: Provides targeted optimization guidance for LCP (loading), INP (interactivity), and CLS (visual stability) with p75 thresholds and checklists. - Evidence-driven workflow: Directs measurement through CrUX field data, Chrome DevTools performance traces, and first-party RUM before and after fixes. - Framework quick fixes: Includes ready patterns for Next.js, React, Vue/Nuxt, and Astro, such as priority images, dynamic imports, and dimension reservation. - Use Case: A developer sees poor INP in Search Console, uses this Skill to trace the slow interaction, identifies a long task blocking the main thread, and applies scheduler.yield() chunking to fix it. ## Quick Start Ask the assistant to analyze your page's Core Web Vitals and fix the failing LCP, INP, or CLS metric using trace and field data.