address-pr-feedback

Installation
SKILL.md

Address PR Feedback

Fetch all review comments on a pull request, categorize them, fix what should be fixed using TDD, and summarize the results.

Step 1: Identify the Pull Request

Determine which PR to work on using this priority order:

  1. $ARGUMENTS provided — If the user passed a PR number or URL, use it directly:
    • A number like 42gh pr view 42
    • A URL like https://github.com/owner/repo/pull/42 → extract the number and use it
  2. Current branch has a PR — Run gh pr view --json number,url,title,state to detect a PR for the current branch
  3. Ask the user — If neither works, ask: "I couldn't detect a PR for the current branch. Please provide a PR number or URL."

Validate that the PR is in an OPEN state. If it is merged or closed, inform the user and stop.

Store the PR number, URL, repo owner, and repo name for later steps. Extract owner and repo with:

Related skills
Installs
7
First Seen
Mar 2, 2026