create-pr
Installation
SKILL.md
Create Pull Request Skill
When creating a pull request, follow this structured process. A good PR tells reviewers what changed, why, and how to verify it.
1. Pre-PR Discovery
Before creating the PR, gather context:
Current Branch & Changes
# Current branch name
git branch --show-current
# Base branch (what we're merging into)
git log --oneline --decorate --first-parent HEAD | head -1
git remote show origin | grep "HEAD branch" | sed 's/.*: //'