Stack:
Nuxt (Vue)
Nuxt preset
A reasoning guide the onboard flow uses for Nuxt projects. It is a checklist, not a template — detected reality wins.
Signals
nuxt.config.tsandnuxtin dependencies, with anapp.vueentrypoint.pages/(file-based routing),server/api/(Nitro endpoints),composables/, and auto-importedcomponents/.- Package manager inferred from the lockfile that exists (
pnpm-lock.yaml,yarn.lock,package-lock.json).
What to reason about
- The real lint (
eslint), type-check (nuxi typecheck), test (Vitest with@nuxt/test-utils), and build (nuxt build) scripts — captured verbatim. - Routing and data fetching (
useFetch/useAsyncData), Nitroserver/api/routes, composables, and auto-import conventions; the rendering mode (SSR/SSG/SPA). - Stack-appropriate skills:
page/route,server-route(server/api),composable,component.
Notes
Auto-imports (components, composables, utils) are a Nuxt convention — account for them rather than adding explicit imports everywhere.