RE

An automated PR review tool that performs multiple review cycles with waiting intervals to verify CI status and resolve conflicts.

Install

mkdir -p .claude/skills/review-pr-3x && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/13954" && unzip -o skill.zip -d .claude/skills/review-pr-3x && rm skill.zip

Installs to .claude/skills/review-pr-3x

Activation

This is the description your AI agent reads to decide when to run this skill — the better it matches your request, the more reliably it fires.

Run review-pr three times with a 10-minute interval.
52 charsno explicit “when” trigger
Intermediate

Key capabilities

  • Resolve the target pull request
  • Execute three rounds of review, fix, and check cycles
  • Wait 10 minutes between review rounds
  • Check for conflicting files before committing and pushing changes
  • Provide a final summary of executed rounds and statuses

How it works

This skill executes the full review-pr workflow three times with 10-minute intervals, performing actionable comment collection, CI status checks, fix implementation, and conflict resolution in each round.

Inputs & outputs

You give it
Optional PR number or URL (e.g., review-pr-3x 19)
You get back
A final summary including total rounds, commits, latest review status, CI status, conflict-file check results, and remaining blockers

When to use review-pr-3x

  • Automating PR review cycles
  • Checking CI stability
  • Resolving merge conflicts
  • Reviewing large PRs

About this skill

Run review-pr three times with 10-minute intervals between runs.

Input: Optional PR number or URL (e.g., review-pr-3x 19). If omitted, infer from current branch using the same rule as review-pr.

Execution Plan

  1. Resolve target PR (same logic as review-pr).
  2. Execute 3 rounds of review/fix/check cycle.
  3. Wait 10 minutes (600s) between rounds 1→2 and 2→3.

Per Round (i = 1..3)

  • Announce: Round i/3 start.
  • Execute the full review-pr workflow for the same PR:
    • collect actionable review comments
    • check CI status and inspect failed logs if needed
    • implement fixes
    • check for conflicting files before commit/push:
      git diff --name-only --diff-filter=U
      rg -n "^(<<<<<<<|=======|>>>>>>>)" .
      
      • if conflicts are found, resolve all conflicting files first
    • push changes
    • re-check PR status
  • Announce: Round i/3 done with concise summary.

Interval

After round 1 and round 2:

sleep 600

During waiting, report that the command is intentionally paused for polling interval.

Completion Output

Provide a final summary including:

  • total rounds executed
  • commits created per round (if any)
  • latest review status
  • latest CI status
  • conflict-file check results by round
  • remaining blockers (if any)

Guardrails

  • Use the same PR for all 3 rounds.
  • If no actionable feedback and CI is green in a round, still continue to next scheduled round.
  • Conflict-file checks are mandatory before each round's commit/push.
  • If hard-blocked (permission/network/tool outage), report immediately and stop.

When not to use it

  • When hard-blocked by permission, network, or tool outages
  • When a single review cycle is sufficient
  • When immediate feedback is required without waiting intervals

Prerequisites

GitHub CLI (gh)review-pr skill logic

Limitations

  • It always runs for three rounds, even if no actionable feedback exists and CI is green
  • It uses the same PR for all three rounds
  • It stops immediately if a hard-block occurs

How it compares

This workflow automates repeated pull request reviews and conflict checks over time, unlike a manual single-pass review.

Compared to similar skills

review-pr-3x side by side with the closest alternatives in the catalog.

SkillInstallsUpdatedSafetyDifficulty
review-pr-3x (this skill)04moReviewIntermediate
verification-before-completion910moNo flagsBeginner
mutation-testing55moReviewAdvanced
workflow-patterns12moNo flagsIntermediate

Try saying

Example prompts that trigger this skill in your AI assistant.

Search skills

Search the agent skills registry