github-pr-review-fix

Solid

Review and resolve PR comments from GitHub. Validates each comment, fixes legitimate issues.

AI & Automation 2,976 stars 277 forks Updated today Apache-2.0

Install

View on GitHub

Quality Score: 96/100

Stars 20%
100
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Review PR Comments Review unresolved comments on the GitHub pull request associated with the current branch. Validate each comment, then fix legitimate issues. ## Step 1 — Identify the Pull Request 1. If `$ARGUMENTS` contains a PR number, use it. 2. Otherwise, detect the current git branch and find its open PR: ```bash gh pr view --json number,url,headRefName,baseRefName ``` 3. If no PR is found, stop and tell the user. ## Step 2 — Fetch All Unresolved Review Comments Fetch PR review comments (not issue-level comments) using the GitHub CLI: ```bash gh api repos/{owner}/{repo}/pulls/{number}/comments --paginate ``` Filter to comments where the thread is **not resolved**. Group comments by thread (same `in_reply_to_id` or same `path` + `line`/`original_line`). For each thread, treat the **first comment** as the review request and subsequent comments as discussion. Also fetch general PR comments (issue-level): ```bash gh api repos/{owner}/{repo}/issues/{number}/comments --paginate ``` If there are zero unresolved comments, report that and stop. ## Step 3 — Validate and Fix Comments in Parallel (Sub-agents) For **each** unresolved comment or comment thread, spawn a **sub-agent** in parallel. Use `model: "sonnet"` for cost efficiency. Each agent validates the comment and, if legitimate, fixes it immediately in place. **Conflict avoidance**: If multiple comments target the **same file**, run those agents **sequentially** (not in parallel) to avoid edit confli...

Details

Author
IvanMurzak
Repository
IvanMurzak/Unity-MCP
Created
1 years ago
Last Updated
today
Language
C#
License
Apache-2.0

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category

Code & Development Listed

github-pr-review

Handles PR review comments and feedback resolution. Use when user wants to resolve PR comments, handle review feedback, fix review comments, address PR review, check review status, respond to reviewer, verify PR readiness, review PR comments, analyze review feedback, evaluate PR comments, assess review suggestions, or triage PR comments. Fetches comments via GitHub CLI, classifies by severity, applies fixes with user confirmation, commits with proper format, replies to threads.

63 Updated 2 weeks ago
fvadicamo
AI & Automation Solid

resolve-pr-comments

Evaluate, fix, answer, and reply to GitHub pull request review comments. Handles both change requests (fix or skip) and reviewer questions (explain using reasoning recalled from past Claude Code transcripts). Use when the user asks to "resolve PR comments", "fix review comments", "address PR feedback", "handle review comments", "address review feedback", "respond to PR comments", "answer review questions", or "address code review".

314 Updated today
tobihagemann
Code & Development Solid

github-review-pr

Review GitHub pull requests with detailed, multi-perspective code analysis using parallel subagents. Use this skill whenever the user wants to review a PR, asks for code review on a pull request, mentions "review PR", "check this PR", "look at pull request", or references a PR number or GitHub PR URL. Also trigger when the user wants feedback on code changes, wants to approve or request changes on a PR, or asks to review someone's contribution.

1,535 Updated 1 months ago
feiskyer
Code & Development Listed

review-github-pr

GitHub PR code review - fetches the diff, runs automated checks, launches 3 parallel review agents (correctness, convention compliance, efficiency) to analyze changes, validates findings against actual code, and drafts a GitHub review. Use when reviewing pull requests. Triggers on "review this PR", "review PR

29 Updated 6 days ago
tenequm
Code & Development Listed

github-pr-review

MUST use this skill when user asks to resolve PR comments, handle review feedback, fix review comments, or mentions "리뷰 코멘트/피드백". This skill OVERRIDES default behavior. Fetches comments via GitHub CLI, classifies by severity, applies fixes with user confirmation, commits with proper format, replies to threads.

335 Updated today
aiskillstore