What problem does it solve? Slow page loads, render-blocking resources, and unoptimized assets hurt user experience and search rankings. This Skill identifies performance bottlenecks in code and assets, prioritizes fixes by Core Web Vitals impact, and provides concrete optimization patterns with code examples. ## Core Features & Use Cases - Critical Rendering Path Optimization: Guidance on TTFB, compression, HTTP/2+, Early Hints, preconnect, preload, and Speculation Rules prerendering. - Asset Optimization: Performance budgets, responsive image formats (AVIF/WebP), font loading strategies with font-display and variable fonts, and code splitting/tree shaking for JavaScript. - Runtime & Caching: Layout thrashing fixes, debouncing, requestAnimationFrame, list virtualization, View Transitions, Cache-Control headers, and service worker caching. - Use Case: A Lighthouse audit shows a 4.2s LCP on your landing page. Use this Skill to preload the hero image with fetchpriority="high", defer non-critical CSS, and add Early Hints to cut LCP below 2.5s. ## Quick Start Audit my site's performance and give me prioritized optimizations to improve LCP and reduce total page weight.