Help us improve
Share bugs, ideas, or general feedback.
npx claudepluginhub joshuarweaver/cascade-code-devops-misc-2 --plugin leanentropy-civax-cc-agentsHow this command is triggered — by the user, by Claude, or both
Slash command
/railway-deployer:rollbackThis command is limited to the following tools:
The summary Claude sees in its command listing — used to decide when to auto-load this command
# Rollback Command Rollback a deployment to a previous version. ## Usage ## Rollback Methods ### Method 1: Git Revert (Recommended) Creates a new commit that undoes changes. Preserves history. ### Method 2: Railway Dashboard Rollback to specific deployment in Railway UI: 1. Go to Railway Dashboard 2. Select Service → Deployments 3. Click "Rollback" on previous healthy deployment ### Method 3: Hard Reset (Emergency Only) **Warning**: Rewrites history, requires force push. ## Interactive Workflow ## When to Rollback ### Immediate Rollback Needed - Application crashes on startup...
/rollback-deployGuides systematic deployment rollback to previous version: assesses incident, performs safety checks, database backup, traffic management, Kubernetes/Docker Swarm execution.
/rollbackRolls back a specified deployment to its previous stable version via Harness CD workflow. Requires deployment-id; supports --reason and --force flags; outputs progress, updates state, sends notifications.
/rollbackSafely rollbacks a failed or unwanted feature by invoking /specswarm:rollback with optional flags (--dry-run, --keep-artifacts, --force).
/rollback-deployGenerates templated description, key features, and usage docs for rollback-deploy DevOps configurations based on provided name and description.
/deployOrchestrates infrastructure deployments to <environment> with optional [strategy], rollback strategies, and health checks.
/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.
Share bugs, ideas, or general feedback.
Rollback a deployment to a previous version.
/railway-deployer:rollback [staging|production] [--to <commit|tag>]
Creates a new commit that undoes changes. Preserves history.
git revert <commit-hash>
git push origin main
# Railway auto-deploys the revert
Rollback to specific deployment in Railway UI:
Warning: Rewrites history, requires force push.
git reset --hard <commit>
git push --force origin main # DANGEROUS
Rollback Production
===================
Current deployment:
Commit: abc1234 (feat: new feature)
Deployed: 30 minutes ago
Status: unhealthy ⚠️
Recent deployments:
1. abc1234 - feat: new feature (30m ago) ⚠️
2. def5678 - fix: bug fix (2h ago) ✓
3. ghi9012 - Release v1.2.0 (1d ago) ✓
? Rollback to which deployment?
> def5678 - fix: bug fix
ghi9012 - Release v1.2.0
Enter specific commit/tag
? Rollback method:
> Git revert (recommended)
Railway rollback
Git reset (dangerous)
Creating revert commit...
✓ Reverted abc1234
✓ Pushed to origin/main
✓ Railway deployment triggered
Monitoring rollback...
✓ Build successful
✓ Deployment healthy
Rollback complete!
Production is now running: def5678
For critical production issues: