원클릭으로
turbo-reset
Reset turbo environment (clean node_modules, reinstall, sync DB)
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Reset turbo environment (clean node_modules, reinstall, sync DB)
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Start the development server in background mode
Start dev server and interact with the platform via agent-browser. Use when user asks to browse, test, or demo the platform UI, connect services, or perform any browser-based interaction with the local dev environment.
Check if a PR, commit, or tag has been deployed to production
Query, investigate, and manage Sentry issues for debugging and incident response
Create or update a PR and hand it off to a coding agent worker via load balancing. Removes pending label if present, then assigns a worker.
Query logs from Axiom for debugging (read-only, no ingestion allowed)
| 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.