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}"

# Diff
curl -s -H "Authorization: Bearer {token}" \
  -H "Accept: application/vnd.github.v3.diff" \
  "https://api.github.com/repos/{owner}/{repo}/pulls/{pr_number}"
Related skills

More from masterfermin02/agent-skills

Installs
1
GitHub Stars
1
First Seen
Apr 9, 2026