用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/vm0-ai/team-skills --skill turbo-reset命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | turbo-reset |
| description | Reset turbo environment (clean node_modules, reinstall, sync DB) |
| user-invocable | true |
Reset the turbo development environment to a clean state.
Remove node_modules across the monorepo:
bash -c 'cd turbo && rm -rf node_modules apps/*/node_modules packages/*/node_modules'
Clear turbo cache and Next.js generated files:
bash -c 'cd turbo && rm -rf .turbo apps/*/.turbo packages/*/.turbo apps/*/.next'
Reinstall dependencies:
cd turbo && pnpm install
Sync database migrations:
cd turbo/apps/web && pnpm db:migrate
Run all steps sequentially. Report success or failure after each step.