بنقرة واحدة
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.