askill
review-requests

review-requestsSafety 95Repository

Open outstanding GitHub review requests in pair-review for AI-powered code review. Finds open PRs where my review is pending from the past week and starts pair-review analysis for each. Use when the user says "review requests", "review my PRs", "check review requests", "open review requests", "pair-review my requests", or wants to batch-review their outstanding GitHub review requests.

18 stars
1.2k downloads
Updated 3/14/2026

Package Files

Loading files...
SKILL.md

Review Requests

Batch-open outstanding GitHub review requests in pair-review with AI analysis.

Workflow

Phase 1: Discover pair-review server

Call mcp__pair-review__get_server_info to get the pair-review web UI URL. If the server is not running, inform the user and stop.

Phase 2: Find pending review requests

Use user-review-requested:@me (not review-requested) to find only PRs where the user was directly requested as a reviewer, excluding team-based review requests. The gh search prs CLI does not support this qualifier, so use the search API directly:

SINCE=$(date -v-7d +%Y-%m-%d 2>/dev/null || date -d '7 days ago' +%Y-%m-%d)
gh api "search/issues?q=is:pr+is:open+user-review-requested:@me+updated:>=${SINCE}&per_page=30" \
  --jq '.items[] | {number, title, html_url, repo: (.repository_url | split("/")[-2:] | join("/"))}'

Each result provides number, title, html_url, and repo (as owner/repo).

Phase 3: Open each PR in pair-review with auto-analysis

Limit: Open at most 5 PRs. If more than 5 are found, open only the first 5 (most recently updated) and report how many were skipped.

For each PR found (up to the limit), open it in the browser with the ?analyze=true query parameter, which automatically starts AI analysis when the page loads:

open "{server_url}/pr/{owner}/{repo}/{number}?analyze=true"

where {owner}/{repo} comes from the repo field split on /.

No MCP calls per PR are needed — the ?analyze=true parameter handles triggering analysis.

Phase 4: Report

Summarize what was done:

  • How many PRs were found with pending review
  • List each PR opened in pair-review with title and URL
  • If no pending review requests exist, say so

Install

Download ZIP
Requires askill CLI v1.0+

AI Quality Score

78/100Analyzed 3/2/2026

Well-structured skill with clear workflow phases, specific API commands, and comprehensive documentation including trigger phrases. Limited reusability due to tight coupling with pair-review tool, and path suggests internal plugin usage. High actionability with executable commands, but scope is narrow to a specific tool. Tags and metadata improve discoverability.

95
90
50
80
90

Metadata

Licenseunknown
Version-
Updated3/14/2026
Publisherin-the-loop-labs

Tags

apigithubgithub-actions