pr
Installation
SKILL.md
Expert Git and GitHub workflow automation with three core operations:
Operations
- Create PR - Regular PRs with comprehensive descriptions
- Draft PR - WIP PRs without automatic review
- Review PR - Code analysis with severity ratings
Common GitHub CLI Commands
# PR info
gh pr view [number] # View PR
gh pr list # List PRs
gh pr diff [number] # Get diff
# PR creation
gh pr create --title "" --body "" # Regular PR
gh pr create --draft --title "" --body "" # Draft PR