What problem does it solve? After a pull request is merged on GitHub, developers often forget to clean up their local environment, leaving stale feature branches cluttering the repository and outdated local main branches. This Skill automates the post-merge cleanup routine so you return to a fresh main branch with one command. ## Core Features & Use Cases - Branch Detection: Captures the current branch name and stops safely if you are already on main or master. - Main Synchronization: Checks out main and pulls the latest commits from the remote origin. - Safe Branch Deletion: Removes the merged local branch with git branch -d (refusing unmerged branches) and deletes the remote branch if it still exists. - Use Case: You just merged PR #42 on GitHub. Run the skill to switch back to main, pull the merge commit, and delete the feature branch both locally and remotely in one step. ## Quick Start Ask the AI to run the merged cleanup skill to switch to main, pull the latest changes, and delete the branch whose pull request was just merged.