ワンクリックで
ワンクリックで
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)
Implement issue, review PR, and verify CI — runs issue-implement, pr-review-loop, and pr-check-loop sequentially
Deep brainstorming and solution exploration based on research findings
| 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.