agentskills.codes
RE

review-pr-3x

Run review-pr three times with a 10-minute interval.

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

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.

Search skills

Search the agent skills registry