con un clic
turbo-reset
Reset turbo environment (clean node_modules, reinstall, sync DB)
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Menú
Reset turbo environment (clean node_modules, reinstall, sync DB)
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Basado en la clasificación ocupacional 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.