What problem does it solve? Developers working with Nuxt need accurate, version-specific guidance on its conventions, composables, and server engine, and outdated or generic Vue advice often leads to SSR bugs, hydration mismatches, and double-fetching issues. ## Core Features & Use Cases - Framework Reference Coverage: Provides detailed references for Nuxt 4 directory structure, configuration, routing, data fetching, modules, and deployment via Nitro. - Best Practices Guidance: Documents SSR-safe patterns, hydration mismatch prevention, and efficient data fetching with useFetch, useAsyncData, and createUseFetch factories. - Advanced Extensibility: Covers layers, lifecycle hooks, and publishable module authoring with Nuxt Kit for teams building reusable Nuxt infrastructure. - Use Case: When adding a server API route with authentication middleware to a Nuxt 4 app, consult the server routes and middleware references to place files correctly and avoid context errors. ## Quick Start Use the nuxt skill to show me how to fetch data from an API in a Nuxt 4 page without double-fetching during SSR.