What problem does it solve? When a production deploy breaks, you need a fast, auditable way to restore the last working release without losing git history or bypassing your team's authorization rules. ## Core Features & Use Cases - Authority Gating: Refuses to run unless rollback is pre-granted in the repository's agent-authority list or explicitly requested by the user in the current turn. - Safe Git Revert: Reverts all commits between the target tag and HEAD on main using git revert, preserving full history with no force push. - Incident Tracking: Automatically creates a GitHub issue documenting the rollback, reverted changes, and follow-up action items. - Use Case: A broken release goes live on main. Run the rollback command to revert production to the previous tag (e.g., v1.2.3), file a tracking issue, and let Railway redeploy automatically from the updated main. ## Quick Start Ask the assistant to roll back production to the previous release tag, optionally specifying a target tag like v1.2.3.