diff --git a/skills/SKILL.md b/skills/SKILL.md index f1bf522..eae8e89 100644 --- a/skills/SKILL.md +++ b/skills/SKILL.md @@ -15,7 +15,7 @@ DO NOT trigger when: 编写后端代码、纯前端通用开发(与 Vben 框 ``` ├── apps/ # 应用目录 -│ ├── web-antd/ # Ant Design Vue 应用 +│ ├── web-antdv-next/ # 当前 Ant Design Vue Next 应用 │ ├── web-ele/ # Element Plus 应用 │ ├── web-naive/ # Naive UI 应用 │ └── backend-mock/ # Mock 后端服务 @@ -32,17 +32,19 @@ DO NOT trigger when: 编写后端代码、纯前端通用开发(与 Vben 框 ```bash # 开发 -pnpm dev:antd # 启动 Ant Design 应用 +pnpm dev # 等价启动 web-antdv-next +pnpm dev:antdv-next # 启动当前 Ant Design Vue Next 应用 pnpm dev:ele # 启动 Element Plus 应用 pnpm dev:naive # 启动 Naive UI 应用 # 构建 pnpm build # 构建所有应用 -pnpm build:antd # 构建指定应用 +pnpm build:antdv-next # 构建当前应用 # 其他 pnpm lint # 代码检查 -pnpm check:type # 类型检查 +pnpm check:type # 全仓类型检查 +pnpm verify:commit # commit lint + web-antdv-next typecheck pnpm reinstall # 重新安装依赖 ```