rearrange
Installation
SKILL.md
Commit Rearrangement
Use this workflow when the user wants branch commits reorganized for reviewability.
Base Branch
- Use the user-provided base branch when present.
- Default to
mainwhen no base branch is provided.
Analysis
- Inspect commits since the base branch:
git log --oneline <base>..HEAD
git log --oneline --name-status <base>..HEAD
git log -p <base>..HEAD
Related skills