pr-description
Installation
SKILL.md
PR Description Generator
Generate a concise, high-quality PR description from the current branch and its linked GitHub issue. Output to an unstaged .md file — never publish or update a PR.
Workflow
1. Gather Context
Run these in parallel:
# Current branch name
git branch --show-current
# Commits on this branch vs main
git log main..HEAD --oneline
# Full diff against main
git diff main...HEAD