What problem does it solve?
This Skill helps developers manage GitHub pull requests more efficiently by providing token-conscious patterns and ready-to-run gh CLI commands that reduce context switching and data transfer.
Core Features & Use Cases
- PR overview and filtering: fetch concise PR metadata using gh pr view and a focused --json payload.
- PR triage and collaboration: list, filter, and monitor PRs across repositories, assign reviewers, add labels, and draft reviews.
- Change inspection and CI insights: inspect files changed, diffs, and CI checks to identify failures quickly.
- Automated reporting: generate compact summaries of PRs for team updates and dashboards.
Quick Start
gh pr view 42 --json number,title,author
gh pr list --state open --json number,title,author
gh pr diff 42 > /tmp/pr-diff.patch
gh pr checks 42