What problem does it solve? Nuxt applications span SSR rendering, file-based routing, server APIs, and layered configuration, and using the wrong primitive causes hydration mismatches, double data fetching, or leaked server state. This Skill routes each task to the correct Nuxt-owned API and reference so changes preserve SSR, hydration, and generated types. ## Core Features & Use Cases - Task routing to references: Directs work on data fetching, routing, middleware, plugins, server routes, components, or config to the matching in-depth reference file. - SSR-safe patterns: Enforces correct use of useFetch, useAsyncData, useState, and request-context forwarding to avoid duplicate fetches and hydration errors. - Ownership boundaries: Delegates module-specific work (Nuxt UI, Content, Image, SEO) and VueUse or Vue reactivity to the appropriate guidance instead of duplicating APIs. - Use Case: When adding an authenticated admin section, use this Skill to place route middleware in app/middleware, enforce authorization in server/api handlers, and configure route rules in nuxt.config.ts. ## Quick Start Ask the agent to add a new page with server-rendered data fetching and route middleware to your Nuxt application.