fullstack-init
全栈项目初始化 Skill
技术栈约定
- 这是用户固定的技术选型,在给建议、生成代码、初始化项目时,始终遵循以下栈,不推荐替代方案,除非用户主动提出更换
- 在运行本 Skill 的过程中,明确指定不使用 brainstorming 的 Skill,以防止干扰项目初始化的流程步骤
项目结构约定
- 前后端分离开发,但放在同一个 Git 仓库(Monorepo)
- 目录结构如下:
project-root/
├── frontend/ # Vue3 前端项目(含自己的 .env)
├── backend/ # NestJS 后端项目(含自己的 .env)
├── docs/ # 项目文档
More from sonvee/ai-skills
my-coding-style
编码时必须严格遵循我的编码风格,编码时应优先使用该技能,在写文档时不使用该技能
10vue
Vue 3 Composition API, script setup macros, reactivity system, and built-in components. Use when writing Vue SFCs, defineProps/defineEmits/defineModel, watchers, or using Transition/Teleport/Suspense/KeepAlive.
8vueuse-functions
Apply VueUse composables where appropriate to build concise, maintainable Vue.js / Nuxt features.
7vue-best-practices
MUST be used for Vue.js tasks. Strongly recommends Composition API with `<script setup>` and TypeScript as the standard approach. Covers Vue 3, SSR, Volar, vue-tsc. Load for any Vue, .vue files, Vue Router, Pinia, or Vite with Vue work. ALWAYS use Composition API unless the project explicitly requires Options API.
7vite
Vite build tool configuration, plugin API, SSR, and Vite 8 Rolldown migration. Use when working with Vite projects, vite.config.ts, Vite plugins, or building libraries/SSR apps with Vite.
7vitest
Vitest fast unit testing framework powered by Vite with Jest-compatible API. Use when writing tests, mocking, configuring coverage, or working with test filtering and fixtures.
7