rollback
Installation
SKILL.md
Contains Hooks
This skill uses Claude hooks which can execute code automatically in response to events. Review carefully before installing.
/rollback - Safe Rollback
$ARGUMENTS
What This Command Does
Safely revert changes with appropriate safety checks and confirmation.
Rollback Types
1. Git Rollback
# Revert last commit (creates new commit)
git revert HEAD --no-edit
# Revert specific commit
git revert <commit-sha> --no-edit