om-auto-review-pr

Fetch a GitHub PR into an isolated worktree and run the code-review workflow.

6|2|Updated Mar 27, 2026
One-click install
npx skills add https://github.com/SHGrowth/om-superpowers --skill om-auto-review-pr
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: om-auto-review-pr
Source: https://github.com/SHGrowth/om-superpowers/tree/main/skills/om-auto-review-pr
Command: npx skills add https://github.com/SHGrowth/om-superpowers --skill om-auto-review-pr

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Manually reviewing GitHub pull requests can be slow and error-prone when developers want to avoid touching their own working tree. This Skill automates the end-to-end PR review workflow by fetching the exact PR into an isolated worktree, running the full code-review cycle, and submitting a verdict without altering the local environment.

Core Features & Use Cases

  • Isolated PR review: fetch the PR into a temporary worktree to prevent changes to the developer's working state.
  • Full code-review cycle: run the existing code-review skill against the PR, including checks and validations.
  • Autofix & fix-forward flow: iterate through conflict resolution, code fixes, unit tests, and typechecks until the PR is merge-ready or blocked.
  • Label management: apply and adjust pipeline labels automatically to reflect review status.
  • Scenarios: supports in-repo PRs and cross-repo forks with consistent review behavior.

Quick Start

Invoke the skill with a PR number to begin automatic PR review.

Frequently Asked Questions about om-auto-review-pr

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I automate GitHub PR reviews without altering my local working tree?▼

Automated PR review fetches a targeted pull request into an isolated worktree and runs the full code-review cycle against it, ensuring your local environment remains completely untouched.

Can I run concurrent PR reviews on cross-repository forks?▼

Yes, concurrent auto-review supports both in-repo pull requests and cross-repository forks by fetching each PR into a separate, isolated worktree for parallel processing.

How does an automated code review handle failing checks and merge conflicts?▼

An autofix and fix-forward loop iterates through conflict resolution, code fixes, unit tests, and typechecks until the PR is merge-ready or completely blocked by unresolvable issues.

What is the best way to apply and manage pipeline labels automatically during PR review?▼

Autonomous label management applies and adjusts pipeline labels automatically during the review workflow to accurately reflect the current review status of the pull request.

Do I need a specific environment setup to run sandboxed worktree PR reviews?▼

You need a local Git environment supporting worktrees to run sandboxed PR reviews, which fetches the exact PR into a temporary worktree to prevent changes to your working state.

What are the limitations of automated fix-forward loops in code review?▼

The fix-forward loop continues iterating through fixes and tests until the PR is merge-ready, but it will stop and leave the PR blocked if it encounters unresolvable conflicts or persistent test failures.