npx claudepluginhub LeanEntropy/civax-cc-agents --plugin railway-deployer/rollbackRolls back the most recent database migration or to a specific version, with data loss warnings, explicit confirmation, transactional execution, schema verification, and status report.
/rollbackReverts to a previous Shipyard checkpoint via git tag, with state-only or full code scope. Supports --list flag; prompts for checkpoint and scope if needed.
/rollbackSafely rollbacks a failed or unwanted feature by invoking /specswarm:rollback with optional flags (--dry-run, --keep-artifacts, --force).
/rollbackRollbacks orchestrator project state to a specified checkpoint ID, restoring task status and optionally resetting Git commit. Lists available checkpoints if none provided.
/rollbackReverts git repository to checkpoint before specified phase number after previewing changes and user confirmation. Also lists checkpoints with --list.
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: