pr-review
Installation
SKILL.md
Workflow
Step 1 — Parse the PR URL
Extract owner, repo, pr_number from the URL:
https://github.com/{owner}/{repo}/pull/{pr_number}
Step 2 — Fetch PR metadata + diff
Use the GitHub API. If a token is available in context or provided by user, use it.
# PR metadata
curl -s -H "Authorization: Bearer {token}" \
-H "Accept: application/vnd.github.v3+json" \
"https://api.github.com/repos/{owner}/{repo}/pulls/{pr_number}"