github-pr-review

Installation
Summary

Resolve PR review comments with severity-based prioritization, fix application, and thread replies.

  • Fetches inline comments and review bodies from GitHub, classifies by severity (CRITICAL > HIGH > MEDIUM > LOW), and displays a structured summary table before processing
  • Parses CodeRabbit review sections (outside diff, duplicate, nitpick) and uses embedded "Prompt for AI Agents" context to understand issues and suggested fixes
  • Applies fixes with user confirmation, commits functionally separate changes and batches cosmetic fixes, then replies to threads with standard templates
  • Handles multi-issue comments by verifying all referenced locations are fixed, including "also applies to" ranges, and runs tests before pushing
  • Submits formal PR review status and reminds about missing milestones at completion
SKILL.md
Contains Shell Commands

This skill contains shell command directives (!`command`) that may execute system commands. Review carefully before installing.

GitHub PR review

Resolves Pull Request review comments with severity-based prioritization, fix application, and thread replies.

Current PR

!gh pr view --json number,title,state,milestone -q '"PR #\(.number): \(.title) (\(.state)) | Milestone: \(.milestone.title // "none")"' 2>/dev/null

Core workflow

1. Fetch, filter, and classify comments

REPO=$(gh repo view --json nameWithOwner -q '.nameWithOwner')
PR=$(gh pr view --json number -q '.number')
LAST_PUSH=$(git log -1 --format=%cI HEAD)
Related skills
Installs
442
GitHub Stars
61
First Seen
Jan 21, 2026