arch-nuxt-lite
Vitesse Lite — lightweight Vite + Vue 3 SPA with file-based routing, UnoCSS, VueUse, Vitest. Use when scaffolding or maintaining a simple Vue SPA with this stack.
What this skill does
arch-nuxt-lite (Vitesse Lite) is the **lightweight Vite + Vue 3 SPA** starter: file-based routing via unplugin-vue-router, components and composables auto-import, UnoCSS, VueUse, and Vitest. No SSR, i18n, layouts, SSG, PWA, or Markdown. Prefer it for simple client-only apps; use arch-nuxt or Nuxt for SSR. > The skill is based on vitesse-lite (arch-nuxt-lite source), generated at 2026-01-30. **Recommended practices:** - Prefer Vite + unplugin-vue-router for file-based routing; keep routes in `src/pages` - Use `~/` alias for `src/` in imports - Use VueUse (useDark, useToggle, useCounter, etc.) and composables in `src/composables`; all auto-imported ## Core References | Topic | Description | Reference | |-------|-------------|-----------| | Overview | Project purpose, structure, stack, when to use | [core-overview](references/core-overview.md) | | App structure | Entry, RouterView, path alias, App.vue | [core-app-structure](references/core-app-structure.md) | | Vite config | defineConfig, plugins, alias, Vitest | [core-vite-config](references/core-vite-config.md) | | Scripts | build, dev, lint, typecheck, preview, test | [core-scripts](references/core-scripts.md) | | CI | GitHub Actions — build, test, lint, typecheck matrix | [core-ci](references/core-ci.md) | | ESLint | @antfu/eslint-config, unocss, formatters, pnpm | [core-eslint](references/core-eslint.md) | ## Features | Topic | Description | Reference | |-------|-------------|-----------| | Routing | unplugin-vue-router, file-based routes, useRoute/useRouter, typed params | [features-routing](references/features-routing.md) | | Components | unplugin-vue-components, auto-import, UnoCSS icons | [features-components](references/features-components.md) | | Composables | unplugin-auto-import, composables dir, dark mode (useDark, useToggle) | [features-composables](references/features-composables.md) | | UnoCSS | uno.config.ts, shortcuts, presets, icons, web fonts | [features-unocss](references/features-unocss.md) | | Testing | Vitest, jsdom, component tests with @vue/test-utils | [features-testing](references/features-testing.md) | | Deploy | Netlify, netlify.toml, SPA redirect | [features-deploy](references/features-deploy.md) | ## Best Practices | Topic | Description | Reference | |-------|-------------|-----------| | Routing | File-based routing patterns, dynamic/catch-all routes | [best-practices-routing](references/best-practices-routing.md) |
Related in Web Dev
generating-lwc-components
IncludedLightning Web Components with PICKLES methodology and 165-point scoring. Use this skill when the user creates or edits LWC components, builds wire service patterns, or writes Jest tests for LWC. TRIGGER when: user creates/edits LWC components, touches lwc/**/*.js, .html, .css, .js-meta.xml files, or asks about wire service, SLDS, or Jest LWC tests. DO NOT TRIGGER when: Apex classes (use generating-apex), Aura components, or Visualforce.
tanstack-query
IncludedManage server state in React with TanStack Query v5. Set up queries with useQuery, mutations with useMutation, configure QueryClient caching strategies, implement optimistic updates, and handle infinite scroll with useInfiniteQuery. Use when: setting up data fetching in React projects, migrating from v4 to v5, or fixing object syntax required errors, query callbacks removed issues, cacheTime renamed to gcTime, isPending vs isLoading confusion, keepPreviousData removed problems.
document-processor-api
IncludedProcess documents with Nutrient DWS. Use when the user wants to generate PDFs from HTML or URLs, convert Office/images/PDFs, assemble or split packets, OCR scans, extract text/tables/key-value pairs, redact PII, watermark, sign, fill forms, optimize PDFs, or produce compliance outputs like PDF/A or PDF/UA. Triggers include convert to PDF, merge these PDFs, OCR this scan, extract tables, redact PII, sign this PDF, make this PDF/A, or linearize for web delivery.
nutrient-document-processing
IncludedProcess documents with Nutrient DWS. Use when the user wants to generate PDFs from HTML or URLs, convert Office/images/PDFs, assemble or split packets, OCR scans, extract text/tables/key-value pairs, redact PII, watermark, sign, fill forms, optimize PDFs, or produce compliance outputs like PDF/A or PDF/UA. Triggers include convert to PDF, merge these PDFs, OCR this scan, extract tables, redact PII, sign this PDF, make this PDF/A, or linearize for web delivery.
tanstack-query
IncludedManage server state in React with TanStack Query v5. Covers useMutationState, simplified optimistic updates, throwOnError, network mode (offline/PWA), and infiniteQueryOptions. Use when setting up data fetching, fixing v4→v5 migration errors (object syntax, gcTime, isPending, keepPreviousData), or debugging SSR/hydration issues with streaming server components.
accelint-nextjs-best-practices
IncludedNext.js performance optimization and best practices. Use when writing Next.js code (App Router or Pages Router); implementing Server Components, Server Actions, or API routes; optimizing RSC serialization, data fetching, or server-side rendering; reviewing Next.js code for performance issues; fixing authentication in Server Actions; or implementing Suspense boundaries, parallel data fetching, or request deduplication.