What problem does it solve? Merging a pull request involves several manual steps — checking mergeability, confirming reviews and checks, merging, deleting the branch, and switching back to the base branch — and skipping any of them leaves a stale or dirty working copy. ## Core Features & Use Cases - Pre-flight merge readiness check: Inspects PR state, draft status, merge conflicts, check results, and review decisions via gh pr view before merging. - Confirmed merge with branch cleanup: Merges using the repository's default merge method through gh pr merge --delete-branch after explicit user approval, never bypassing branch protection. - Automatic return to base branch: Checks out the PR's base branch (e.g., dev) and pulls the latest changes so work can continue immediately. - Use Case: After a feature PR passes review, run the skill to merge PR #42, delete the feature branch, and land back on an up-to-date dev branch in one flow. ## Quick Start Ask the assistant to merge PR #42 and switch back to the base branch with the merge pulled in.