review-prs
Installation
SKILL.md
Review PRs
Use this as a day-start review queue. It finds unreviewed open PRs, shows the queue, then runs the full auto-review-pr workflow one PR at a time.
Workflow
0. Load pipeline config
Load .ai/agentic.config.json using the standard snippet from the setup-agent-pipeline skill. If the file is missing, stop and tell the user to run setup-agent-pipeline first. This skill uses LABELS_ENABLED for the label-based queue filters below; each individual review delegates to auto-review-pr, which loads the rest of the config itself.
1. Fetch open PRs
gh pr list --state open --json number,title,url,author,labels,reviewDecision,createdAt,updatedAt,isDraft,assignees --limit 50
CURRENT_USER=$(gh api user --jq '.login')