pr-review-response

Solid

Teaches agents to reply to PR review comment threads after fixing issues, making resolutions traceable

Code & Development 58 stars 15 forks Updated 2 weeks ago MIT

Install

View on GitHub

Quality Score: 87/100

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

Skill Content

## Context When an agent fixes code in response to PR review comments (from Copilot, a human reviewer, or any GitHub reviewer), the fix alone is not enough. The reviewer needs to see — on the PR thread itself — which comments were addressed and how. Without replies, comments stay visually unresolved, reviewers must re-read the entire diff to verify fixes, and there's no traceable link between feedback and resolution. Use this skill whenever: - You are fixing code based on PR review feedback - You are addressing Copilot review suggestions - You are responding to reviewer-requested changes on a PR - A squad member hands you review comments to resolve ## SCOPE ✅ THIS SKILL PRODUCES: - Reply comments on each review thread explaining the fix - Optionally resolved threads (via GraphQL when appropriate) - Commit messages that reference the PR and review context ❌ THIS SKILL DOES NOT PRODUCE: - The code fixes themselves (that's the agent's domain work) - New review comments or reviews - PR descriptions or summaries ## Patterns ### Step 1: Read the review comments **Using MCP tools (preferred when available):** ``` github-mcp-server-pull_request_read method: "get_review_comments" owner: "{owner}" repo: "{repo}" pullNumber: {pr_number} ``` This returns review threads with metadata: `isResolved`, `isOutdated`, `isCollapsed`, and their associated comments. Each comment has an `id` you'll need for replies. **Using gh CLI (fallback):** ```bash gh api repos/{owner}/{repo...

Details

Author
DanWahlin
Repository
DanWahlin/ai-agent-board
Created
6 months ago
Last Updated
2 weeks ago
Language
TypeScript
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category

Code & Development Listed

speckit-resolve-pr

MANDATORY for resolving GitHub PR review comments by editing the source code those comments flagged. Use this skill — NOT a read-only PR review skill — whenever the user wants to ACT on PR review feedback by changing code, committing, and pushing. Triggers on these phrases: 'resolve PR review comments', 'address review feedback', 'fix the copilot comments', 'resolve the threads on PR #N', 'fix each review comment and resolve the threads', 'handle the Copilot review on this PR', 'work through the review comments on this PR', 'address them all', 'take care of the outstanding review feedback', or whenever a PR URL is pasted with unresolved comments. The skill edits files, runs project verification, commits the fixes, pushes, posts a reply per thread, and marks each thread resolved via gh API. NOT for read-only PR review, summarizing what a PR changes, or assessing PR merge risk — those are read-only review skills, this is a write skill that mutates the working tree.

5 Updated today
racecraft-lab
Code & Development Listed

pr-review

Use this skill when asked to review PR comments, address CoPilot feedback, respond to pull request review threads, or resolve PR conversations. Triggers on phrases like "review the PR comments", "address CoPilot feedback", "fix the PR", "go through PR comments", or any mention of pull request review threads needing attention. Always use this skill when a PR number or URL is mentioned alongside a request to review or respond to comments.

1 Updated 3 days ago
LunarCommand
Code & Development Listed

resolve-review-comments

Fetch, analyze, group, and resolve code review comments from GitHub PRs. Implements fixes, responds to questions, and updates PR threads. Can be run after /push or standalone.

0 Updated today
valasubramanian-kr