handle-pr-feedback

Fetch PR review feedback, implement requested changes, and push updates for re-review.

1|1|Updated Feb 2, 2026
One-click install
npx skills add https://github.com/corticalstack/flow --skill handle-pr-feedback-corticalstack
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: handle-pr-feedback
Source: https://github.com/corticalstack/flow/tree/main/.claude/skills/handle-pr-feedback
Command: npx skills add https://github.com/corticalstack/flow --skill handle-pr-feedback-corticalstack

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Addressing automated PR review feedback manually requires switching between the review comments, the implementation plan, the codebase, and git commands, which is repetitive and error-prone. This Skill automates the full loop: fetching review comments, documenting them in the plan, implementing fixes, testing, committing, pushing, and requesting re-review. ## Core Features & Use Cases - Feedback Retrieval: Fetches PR reviews and inline comments via a tracker CLI, filtering for the automated reviewer's comments and categorizing them by type (security, bugs, style, architecture). - Plan Documentation: Locates the related implementation plan under flow/plans/ and appends a structured PR Review Updates section recording each requested change and its status. - Change Implementation & Verification: Implements each requested fix, runs the project's tests and linters, commits with a descriptive message, pushes to the PR branch, and posts a re-review request comment. - Use Case: After an automated reviewer requests changes on PR #42 (SQL injection fix, missing null check, style refactor), run the command to automatically apply all three fixes, verify tests pass, and request re-review. ## Quick Start Ask the assistant to handle the review feedback on pull request 42 by implementing the requested changes and pushing the updates.

Frequently Asked Questions about handle-pr-feedback

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

FAQPage Schema
How do I handle automated PR review feedback automatically?▼

Invoke the skill with a PR number or let it auto-detect the PR from the current branch. It fetches review comments via the tracker CLI, implements each requested change, runs tests, commits, pushes, and posts a re-review request comment.

How to update an implementation plan after PR review comments?▼

The skill locates the related plan file under flow/plans/ using the PR body, work-item id, or commit references, then appends a PR Review Updates section documenting each requested change with location, problem, solution, and completion status.

Does this work with GitHub and Azure DevOps pull requests?▼

Yes, it uses a tracker abstraction CLI (tracker pr-view, pr-comment, etc.) that supports GitHub and Azure DevOps. The reviewer login filter is GitHub-specific and must be substituted for other review systems.

What happens if no review feedback is found on the PR?▼

The skill checks the PR decision state. If approved, it notifies you no changes are needed; if changes were requested without comments, it asks what to fix; if the review is pending, it tells you to wait for completion.

What if the tests fail after implementing review changes?▼

The skill runs the project's test and lint commands after making changes. If tests fail, it fixes the issues and re-runs them until passing before committing and pushing to the PR branch.