What problem does it solve? Developers working with Nuxt need accurate, version-specific guidance on its conventions—file-based routing, SSR data fetching, auto-imports, and the Nitro server engine—without digging through scattered documentation or mixing up Nuxt 3 and Nuxt 4 behaviors. ## Core Features & Use Cases - Framework Reference Coverage: Provides detailed references for directory structure, configuration, routing, data fetching (useFetch, useAsyncData, createUseFetch), modules, and deployment across Node.js, serverless, and edge platforms. - Best Practices Guidance: Documents SSR-safe patterns, hydration mismatch prevention, caching strategies, and efficient data fetching to avoid common production bugs. - Advanced Extensibility: Covers layers, lifecycle hooks, and publishable module authoring with Nuxt Kit for teams building reusable Nuxt infrastructure. - Use Case: When asked to add an authenticated API layer to a Nuxt 4 app, the assistant consults the server routes and data fetching references to produce correct server/api handlers and a createUseFetch composable with shared interceptors. ## Quick Start Ask the assistant to help you build or fix a Nuxt feature, such as "create a server route with cached data fetching in my Nuxt 4 app".