breaking-brake/pr-to-main-cleanup
Clean up merged feature branches after PR to main is merged. Use when the user says "ブランチ削除", "cleanup", "マージ後の片付け", or wants to delete a merged branch.
npx skills add https://github.com/breaking-brake/cc-wf-studio --skill pr-to-main-cleanup
Delete merged feature branches after PR is merged to main.
git branch to identify current branchgit log --oneline -1 to confirm current stategit 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"Take breaking-brake/pr-to-main-cleanup from the repository into ~/.claude/skills for personal
use, or into .claude/skills inside a project.
The agent identifies a skill by the name field in its header. Two skills with the
same name cannot sit side by side — one of them will be ignored.