What problem does it solve? Astro sites often ship render-blocking CSS, unminified assets, and blocking third-party scripts that drag Lighthouse scores below 95. This Skill provides a concrete playbook of Astro-specific integrations and layout patterns to fix those bottlenecks. ## Core Features & Use Cases - Critical CSS Inlining: Configure astro-critters to automatically extract and inline above-the-fold CSS while lazy-loading the rest. - Build Compression: Set up @playform/compress to minify HTML, CSS, and JavaScript in the final build output. - Font and Script Loading Patterns: Apply non-blocking Google Fonts loading, font-display swap fallbacks, LCP image preloading, and deferred third-party script loading in Layout.astro. - Use Case: You have an Astro marketing site scoring 78 on Lighthouse mobile. Apply this playbook to inline critical CSS, defer analytics scripts until user interaction, and preload the hero image to push the score above 95. ## Quick Start Ask the AI to configure your Astro project with astro-critters and @playform/compress and update Layout.astro with non-blocking font loading and deferred third-party scripts.