Use when opening or updating a GitHub PR - writes a detailed PR description that explains what changed, why it changed, how it was implemented, and how it was tested.
75
92%
Does it follow best practices?
Run evals on this skill
Adds up to 20 points to the overall score
View guide
Low
Low-risk findings worth noting
Create and publish high-quality PR descriptions that help reviewers understand intent, implementation details, and verification steps.
Every PR body should clearly answer:
# Identify the active PR for current branch
gh pr view --json number,title,url,baseRefName,headRefName
# Inspect changed files and patch summary
gh pr diff --name-only
gh pr diff
# Review commit messages for intent
git log --oneline --decorate -n 10
# Apply updated body
gh pr edit <pr-number> --body-file /tmp/pr-body.mdUse the template in references/pr-body-template.md.
Required sections:
## Why## What Changed## Implementation Details## Testing## Risks / Follow-ups## Screenshots for UI work.## Rollout Notes when release sequencing matters.## Reviewer Guide for large diffs.60408ad
If you maintain this skill, you can claim it as your own. Once claimed, you can manage eval scenarios, bundle related skills, attach documentation or rules, and ensure cross-agent compatibility.