Loading...
Loading...
Reimplement the current branch on a new branch with a clean, narrative-quality git commit history. Use when the user wants to clean up messy commits, create a tutorial-style commit history, or prepare a branch for review with logical, self-contained commits. Triggers on requests like "clean up my commits", "reimplement this branch", "create a clean history", or "make my commits reviewable".
npx skill4agent add ilamanov/skills reimplement-branchgit branch --show-currentgit status --shortgit log main..HEAD --onelinegit diff main...HEAD --statmainmaingit checkout main
git checkout -b <new-branch-name>{source-branch}-cleangit commit --no-verifygit diff <source-branch>--no-verify/pr