fec-accessibility-chec…
Use when reviewing or improving frontend accessibility, semantic structure, keyboard support, focus management, ARIA labels, screen reader behavior, WCAG 2.2…
Use when creating or reviewing Nuxt 3 projects, file routes, pages, layouts, SSR/SSG/SPA behavior, Nuxt data fetching, route middleware, plugins, modules, server routes, or Nuxt-specific Vue 3 conventions. For generic Vue component architecture, apply the project's Vue
$ npx -y skills add bovinphang/frontend-craft --skill fec-nuxt-project-standard --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/fec-nuxt-project-standardContext preview
The summary Claude sees to decide when to auto-load this skill.
Use when creating or reviewing Nuxt 3 projects, file routes, pages, layouts, SSR/SSG/SPA behavior, Nuxt data fetching, route middleware, plugins, modules, server routes, or Nuxt-specific Vue 3 conventions. For generic Vue component architecture, apply the project's Vue
name: fec-nuxt-project-standard description: Use when creating or reviewing Nuxt 3 projects, file routes, pages, layouts, SSR/SSG/SPA behavior, Nuxt data fetching, route middleware, plugins, modules, server routes, or Nuxt-specific Vue 3 conventions. For generic Vue component architecture, apply the project's Vue conventions separately; Chinese triggers include Nuxt, Nuxt 3.
For repositories using Nuxt 3 + Vue 3 + TypeScript.
Standardize the engineering practices of SSR/SSG rendering mode, combined API, automatic import, data acquisition, routing middleware and module plug-ins in the Nuxt 3 project to ensure conventional development and type safety.
1. First identify whether the target belongs to Nuxt pages/layouts, rendering mode, data acquisition, route middleware, plugin/module or server route. 2. Clarify SSR / SSG / SPA selection to avoid server-side executable code relying on `window` or `document`. 3. For data acquisition, Nuxt’s `useFetch` / `useAsyncData` is used first, and the hydration consistency is checked. 4. Route authentication, redirection and permission issues are aligned with the route protection workflow. 5. Common Vue component architecture issues are offloaded to the Vue project workflow.
├── app.vue # Root component ├── nuxt.config.ts # Nuxt configuration │ ├── pages/ # File-based routing │ ├── index.vue # / │ ├── login.vue # /login │ ├── dashboard/ │ │ ├── index.vue # /dashboard │ │ └── users/ │ │ ├── index.vue # /dashboard/users │ │ └── [id].vue # /dashboard/users/:id │ └── [...slug].vue # Capture all │ ├── layouts/ # layout │ ├── default.vue │ └── auth.vue │ ├── components/ # Automatically import components │ ├── Button/ │ │ └── Button.vue │ └── AppHeader.vue │ ├── composables/ # Combined functions (automatically imported) │ ├── useAuth.ts │ └── useFetch.ts │ ├── server/ # Server API │ ├── api/ # API routing │ │ └── users/ │ │ └── index.get.ts │ ├── middleware/ # Server-side middleware │ └── utils/ # Server-side tools │ ├── plugins/ # Plug-in │ └── i18n.client.ts │ ├── middleware/ # Routing middleware │ └── auth.ts │ ├── public/ # Static resources ├── assets/ # Resources to be built └── types/ # Type definition
| Mode | Configuration | Description | | ------- | --------------- | -------------- | | **SSR** | Default | `ssr: true` | | **SSG** | `nuxt generate` | Pre-render all pages | | **SPA** | `ssr: false` | Pure client-side rendering |
// nuxt.config.ts
export default defineNuxtConfig({
ssr: true, // or false
});frontend-craft is a universal frontend plugin that brings the same opinionated engineering standards to all 15 AI coding assistants.
Repo: bovinphang/frontend-craft
Use when reviewing or improving frontend accessibility, semantic structure, keyboard support, focus management, ARIA labels, screen reader behavior, WCAG 2.2…
Use when absorbing ideas, capabilities, workflows, architecture, quality systems, ecosystem extensions, or engineering practices from any reference system into…
Use when designing, implementing, or reviewing frontend-to-backend API integration, typed API clients, REST/tRPC/OpenAPI client choices, auth refresh, API…
Use when frontend work needs to communicate data, action, state, permission, validation, or business-rule needs to backend teams without dictating endpoint…
Use when choosing, implementing, or reviewing browser storage such as localStorage, sessionStorage, IndexedDB, cookies, client persistence, offline data,…
Use when building or reviewing Canvas 2D, Three.js/WebGL, React Three Fiber, GLSL shaders, ShaderToy-to-WebGL adaptation, 2D/3D visualization, game rendering,…