address-pr-review

Resolves unresolved pull request review comments with per-thread commits and staged replies.

23|10|Updated Aug 31, 2017
One-click install
npx skills add https://github.com/IntentArchitect/Intent.Modules --skill address-pr-review-intentarchitect
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: address-pr-review
Source: https://github.com/IntentArchitect/Intent.Modules/tree/main/.claude/skills/address-pr-review
Command: npx skills add https://github.com/IntentArchitect/Intent.Modules --skill address-pr-review-intentarchitect

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Reviewers leave inline comments on a pull request and the author must work through each one: decide whether to change code, make the fix, commit it, and write a reply per thread. Doing this manually is slow and threads get missed, leaving reviewers unsure whether their feedback was seen. ## Core Features & Use Cases - Thread-by-thread triage: Reads every unresolved review thread via the GitHub API, classifies each as fix, decline-with-reason, or ask, and acts on each one individually. - Generated-code awareness: Uses a change review to distinguish fully generated files (fixed by changing the model and rerunning the software factory) from hand-written files (edited directly), so fixes survive regeneration. - One commit per thread with staged replies: Commits each fix separately and stages all replies into the user's pending review in a single call, never pushing or submitting on the user's behalf. - Use Case: A pull request on an Intent Architect solution returns with eight unresolved comments, some on generated code. The skill fixes model-level issues through the designer, patches custom code directly, runs the build, commits each fix, and stages a reply per thread for the user to review and submit. ## Quick Start Ask the assistant to address the unresolved review comments on pull request 42 in this repository, working from the worktree cut at its head commit.

Frequently Asked Questions about address-pr-review

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

FAQPage Schema
How do I respond to all review comments on a pull request at once?▼

Fetch the unresolved review threads, triage each comment as fix, decline, or clarify, then commit each fix separately and stage one reply per thread into a pending review. The user reviews the staged replies and submits them together so each reviewer gets a single notification.

How do I fix review comments on generated code without losing changes?▼

Never hand-edit fully generated files because the next generator run reclaims the edit. Instead change the underlying model or designer, rerun the software factory, and apply the regenerated output so the fix persists.

Can an AI assistant push commits and submit a pull request review automatically?▼

In this workflow it does not. The assistant commits fixes to a session branch and stages replies into the user's pending review only; the user pushes the branch and submits the review manually from the pull request page.

What happens to review threads I decide not to change?▼

Declined threads still receive a staged reply explaining why the code is correct as it stands, but no commit is attached. Every examined thread gets a response so none appear ignored.

Why must each review comment get its own commit?▼

Per-thread commits let each staged reply reference the exact commit SHA that addressed it. A single lumped commit cannot distinguish which change answered which comment, making the review history ambiguous.