What problem does it solve? Manually handling image optimization, responsive formats, font loading, and social preview images in Astro projects leads to layout shift, slow pages, and inconsistent implementations. This Skill provides structured guidance for the astro:assets module so images, fonts, and OG images are configured correctly the first time. ## Core Features & Use Cases - Image Optimization: Use <Image /> and <Picture /> for automatic WebP/AVIF conversion, responsive srcset/sizes, and priority loading for above-the-fold content. - Remote & Server-Side Images: Handle external CDN images with inferSize and authorized domains, plus getImage() for CSS backgrounds and API routes. - Fonts & OG Images: Configure the stable Fonts API for zero-CLS font loading and generate dynamic OG images with Satori at build time. - Use Case: A blog built with Astro needs responsive hero images, self-hosted Google Fonts without layout shift, and a unique OG image per post — this Skill walks through each setup with ready-to-use templates. ## Quick Start Ask the agent to set up optimized responsive images and the Fonts API in your Astro project using astro:assets.