Loading skill
Install any skill in seconds. Free to start, no credit card required.
Get Started Free →Clean up merged feature branches after PR to main is merged. Use when the user says "ブランチ削除", "cleanup", "マージ後の片付け", or wants to delete a merged branch.
| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-02 | ✗→✓ | ▲ Improved | -21% | 0% |
| case-08 | ✗→✓ | ▲ Improved | -10% | 0% |
| case-09 | ✗→✓ | ▲ Improved | -71% | 0% |
| case-10 | ✗→✓ | ▲ Improved | -8% | 0% |
| case-12 | ✗→✓ | ▲ Improved | -41% | 0% |
Delete merged feature branches after PR is merged to main.
git branch to identify current branchgit log --oneline -1 to confirm current statebashgit checkout main && git pull origin main && git branch -D <branch-name> && git push origin --delete <branch-name>
-D (force delete) since git cannot detect squash merges as "merged"Other measured skills in the registry, with their headline benchmark lift.