resolve-pr-comments

Solid

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".

AI & Automation 314 stars 25 forks Updated today MIT

Install

View on GitHub

Quality Score: 89/100

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

Skill Content

# Resolve PR Review Comments Fetch unresolved review comments from a GitHub PR, critically evaluate each one, fix or skip based on confidence, answer reviewer questions using recalled implementation reasoning, and reply to each thread. ## Task Tracking At the start, use `TaskCreate` to create a task for each step: 1. Fetch comments 2. Triage review body comments 3. Run `/interpret-feedback` skill 4. Split questions and change requests 5. Run `/evaluate-findings` skill 6. Resolve ambiguities 7. Choose implementation path 8. Implement and finalize 9. Verify fixes 10. Run `/recall-reasoning` skill for questions 11. Draft replies 12. Post replies 13. Summary ## Step 1: Fetch Comments Fetch review threads, top-level review body comments, and PR commits from the PR: ```bash gh api graphql -f query=' query($owner: String!, $repo: String!, $pr: Int!) { repository(owner: $owner, name: $repo) { pullRequest(number: $pr) { title url reviewThreads(first: 100) { nodes { id isResolved isOutdated comments(first: 50) { nodes { author { login } body path line originalLine diffHunk } } } } reviews(first: 50) { nodes { author { login } body state submittedAt } } commits(last: 50) { nodes { commit { oid abbreviatedOid message committedDate } } } } } }' -f owner='{owner}' -f repo='{repo}' -F pr={pr...

Details

Author
tobihagemann
Repository
tobihagemann/turbo
Created
2 months ago
Last Updated
today
Language
Python
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category

AI & Automation Solid

resolve-pr-comments

This skill should be used when user asks to "address PR comments", "resolve PR feedback", "handle review comments", "fix PR issues", "respond to PR review", or explicitly invokes "resolve-pr-comments".

713 Updated 3 days ago
fcakyon
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
Code & Development Solid

fetch-pr-comments

Fetch and summarize unresolved GitHub PR review comments without making changes. Use when the user asks to "fetch PR comments", "show PR comments", "check PR for unresolved comments", "list review comments", "what comments are on the PR", "show unresolved threads", or "summarize PR feedback".

314 Updated today
tobihagemann
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
AI & Automation Solid

github-pr-review-fix

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

2,976 Updated today
IvanMurzak