pr-review-triage
Installation
SKILL.md
Pull review comments on a PR and triage each one. Figure out what's substantive, what's bikeshedding, and what's noise.
Get the comments
Default source: GitHub via the gh CLI.
If the user gives a PR number or URL, use it. Otherwise list their open PRs and ask which one.
gh pr view <number-or-url> --json reviews,reviewThreads,comments
gh api repos/{owner}/{repo}/pulls/{number}/comments
Pull both review-level comments and inline thread comments. For each, capture: author, body, file + line (if inline), thread resolution status, and the commit SHA the comment was made against. Where possible, note whether the code at that line has changed since the comment was posted.
Classify each comment
Apply labels. Multiple can apply.