git-pr
Installation
SKILL.md
Generate PR Description
Create a comprehensive pull request description based on the branch diff.
Process
1. Gather Context
# Get current branch name
git branch --show-current
# Find base branch (usually main or master)
git remote show origin | grep 'HEAD branch'
# Get all commits on this branch
git log main..HEAD --oneline