Skip to content
Development
Skill

/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.

From plugin
cc-wf-studio
5.3k10 skills2 MCP
Install
$ npx -y skills add breaking-brake/cc-wf-studio --skill pr-to-main-cleanup --agent claude-code

How it fires

How this skill gets triggered: by you, by Claude, or both.

  • Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
  • You can call itInvoke it directly when you want it.
  • Slash command/pr-to-main-cleanup

Context preview

The summary Claude sees to decide when to auto-load this skill.

Clean up merged feature branches after PR to main is merged. Use when the user says "ブランチ削除", "cleanup", "マージ後の片付け", or wants to delete a merged branch.

SKILL.md

pr-to-main-cleanup.SKILL.md
name: pr-to-main-cleanup
description: Clean up merged feature branches after PR to main is merged. Use when the user says "ブランチ削除", "cleanup", "マージ後の片付け", or wants to delete a merged branch.

PR to Main Cleanup

Delete merged feature branches after PR is merged to main.

Workflow

1. **Gather context** (parallel):

  • `git branch` to identify current branch
  • `git log --oneline -1` to confirm current state

2. **Execute cleanup**:

  • Switch to main branch
  • Pull latest changes from origin
  • Delete local feature branch
  • Delete remote feature branch

Commands

git checkout main && git pull origin main && git branch -D <branch-name> && git push origin --delete <branch-name>

Important Notes

  • PRs to main are always squash-merged, so use `-D` (force delete) since git cannot detect squash merges as "merged"
  • Always pull latest main before deleting to sync merge status
Ships withcc-wf-studio

You think visually. AI thinks in .md. CC Workflow Studio speaks both. Design workflows on a canvas. Export as Markdown your AI agent already understands. No more prompt-guessing. Why CC Workflow Studio? - Speaker Deck Link

Get the whole plugin

Other skills on cc-wf-studio.