From nuxt-skills
Guides Nuxt application development: project structure, pages, data fetching, SSR state, middleware, plugins, server routes, config, components, hydration, upgrades, and testing.
How this skill is triggered — by the user, by Claude, or both
Slash command
/nuxt-skills:nuxtThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Use Nuxt-owned primitives for Nuxt lifecycle, rendering, routing, and server behavior. Hand module-specific behavior to the matching module skill instead of reproducing its API here.
Use Nuxt-owned primitives for Nuxt lifecycle, rendering, routing, and server behavior. Hand module-specific behavior to the matching module skill instead of reproducing its API here.
package.json, the lockfile, nuxt.config.*, and the directory layout before choosing an API. Nuxt features move, so verify the installed version instead of assuming the latest release.nuxt prepare after config, module, alias, or generated-type changes, then verify the affected runtime path.nuxt-modules skill for authoring or publishing a Nuxt module.<script setup lang="ts">
const { data: products, status, error } = await useFetch('/api/products')
useSeoMeta({
title: 'Products',
description: 'Browse the product catalog.',
})
</script>
<template>
<main>
<p v-if="status === 'pending'">Loading…</p>
<p v-else-if="error">Could not load products.</p>
<ProductList v-else :products="products ?? []" />
</main>
</template>
useFetch integrates the request with Nuxt's SSR payload, while useSeoMeta participates in Nuxt's head lifecycle. Reach for lower-level primitives only when the task needs behavior these do not provide.
npx claudepluginhub onmax/nuxt-skills --plugin nuxt-skillsProvides Nuxt 4 conventions: directory structure, SSR/SPA/hybrid rendering, file-based routing, auto-imports, data fetching, server routes, and deployment.
Guides Nuxt 3.x full-stack Vue development: SSR, file-based routing, auto-imports, useFetch, server routes, modules, composables, state management, deployment, and best practices.
Provides Nuxt.js patterns for SSR/SSG/hybrid rendering, data fetching, file-based routing, Pinia state, performance optimization, auth middleware, and Vitest testing.