find-review-pr
Installation
SKILL.md
Find PR to Review
Search for open PRs labeled security + priority: high, associate each with its linked issue, detect duplicates (multiple PRs targeting the same issue), and present a clean summary so you can decide what to review or close.
Prerequisites
gh(GitHub CLI) must be installed and authenticated.- You must be in a GitHub repository (or the user must specify
OWNER/REPO).
Step 1: Fetch candidate PRs
List all open PRs that carry both the security and priority: high labels:
gh pr list --label security --label "priority: high" --state open --limit 50 --json number,title,author,headRefName,labels,body,createdAt
If the result is empty, report that there are no matching PRs and stop.