← ClaudeAtlas

pr-review-watcherlisted

Monitors for incoming PR reviews and summarizes their content. Determines approval/change-request/comment verdicts and extracts action items. Triggers on "did the PR review come in?", "when will the review arrive", "PR waiting" utterances.
chrono-meta/forge-harness · ★ 2 · AI & Automation · score 74
Install: claude install-skill chrono-meta/forge-harness
> **DEPRECATED (2026-05-18)**: Directly replaceable by `gh pr view --json reviews` call with no real-world usage evidence. For PR review-related functionality, use `hub-cc-pr-reviewer` skill instead. # pr-review-watcher — PR Review Arrival Monitor + Instant Summary Monitors in the background while waiting for a PR reviewer, maintaining the Claude Code session. Delivers review summary + approval status + action items all at once when a review arrives. ## Triggers ``` /pr-review-watcher <PR number> # Monitor PR in current repo (default 2-min interval) /pr-review-watcher <PR number> --repo owner/repo # Specify a particular repo /pr-review-watcher <PR number> --interval <seconds> # Change polling interval (default 120 seconds) /pr-review-watcher <PR number> --once # Check current review status only (no monitoring) ``` **Installable independently** — works correctly with plugin install only, without full harness clone. ## Step 1. Check Current Review Status ```bash gh pr view <PR number> --json title,state,reviewRequests,reviews \ --jq '{title: .title, state: .state, requested: [.reviewRequests[].login], reviews: [.reviews[] | {author: .author.login, state: .state, body: .body}]}' ``` Output interpretation: - `reviewRequests`: people with review requested (no response yet) - `reviews[].state`: `APPROVED` / `CHANGES_REQUESTED` / `COMMENTED` / `DISMISSED` **With `--once` flag**: Report Step 1 results only and exit. ## Step 2. Start B