Help us improve
Share bugs, ideas, or general feedback.
From claude-code-toolkit
Deploys app to staging/production/preview with pre/post checks. Auto-detects method (Vercel/Netlify/Docker/Kubernetes/SSH/GitHub Pages), tags deploys, verifies health, outputs status and rollback.
npx claudepluginhub rohitg00/awesome-claude-code-toolkitHow this command is triggered — by the user, by Claude, or both
Slash command
/claude-code-toolkit:deploydevops/The summary Claude sees in its command listing — used to decide when to auto-load this command
Deploy the application to a target environment with pre/post checks. ## Steps 1. Determine the target environment from the argument (staging, production, preview). 2. Run pre-deployment checks: - All tests pass: run the test suite. - No uncommitted changes: `git status --porcelain`. - Branch is up to date: `git fetch && git status -uno`. - Build succeeds: run the build command. - No critical vulnerabilities: run dependency audit. 3. Detect the deployment method: - **Vercel/Netlify**: `vercel --prod` or `netlify deploy --prod`. - **Docker**: Build image, push to regist...
/deployDeploys to specified environment with pre-checks (git clean, tests, npm audit, build, env vars), staging first, smoke tests, monitoring, prod approval, blue-green prod deploy, report, and rollback.
/deployRuns pre-flight checks (env validation, migrations, bundle size, ship audit), deploys the project, and performs production health check.
/deployDeploys project safely through multi-gate pipeline: tests, build verification, staging deploy/verify, optional production promotion. Argument: staging|production.
/deployOrchestrates infrastructure deployments to <environment> with optional [strategy], rollback strategies, and health checks.
/deployExecutes automated deployment pipeline with pre-flight validation, staging tests, production rollout using blue-green/canary strategies, and post-deployment monitoring.
/deployGenerates GitHub Actions workflow to build and deploy VitePress wiki site to GitHub Pages after checking for wiki directory and existing workflows.
Share bugs, ideas, or general feedback.
Deploy the application to a target environment with pre/post checks.
git status --porcelain.git fetch && git status -uno.vercel --prod or netlify deploy --prod.kubectl apply.gh-pages branch.git tag deploy-<env>-<timestamp>.Deployment: <environment>
Version: <git-sha-short>
Status: <success/failed>
Pre-checks:
- [x] Tests passing
- [x] Build successful
- [x] No uncommitted changes
Deployed at: <timestamp>
URL: <deployment-url>
Health: <healthy/unhealthy>
Rollback: <rollback-command>