From github-dev
Analyzes unresolved PR review comments, fixes valid concerns, and drafts responses for comments that don't require code changes.
How this skill is triggered — by the user, by Claude, or both
Slash command
/github-dev:resolve-pr-commentsThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Analyze unresolved PR review comments, fix valid concerns, and draft responses for comments
Analyze unresolved PR review comments, fix valid concerns, and draft responses for comments that do not require code changes.
When explicitly invoked with extra text, treat that text as the PR number or URL. If no PR reference is provided, infer it from the current branch.
Preferred execution
github-dev:pr-comment-resolver and pass the PR reference.Fetch unresolved comments
gh pr view --json number,headRefName.gh api repos/{owner}/{repo}/pulls/{number}/comments.gh pr view <number> --json reviews,comments.Resolve each comment
Reply style
Never auto-submit
gh api repos/{owner}/{repo}/pulls/{number}/comments/{comment_id}/replies -f body="..." (the {number} PR number is required, the endpoint 404s without it).sleep $((RANDOM % 3 + 3)).npx claudepluginhub fcakyon/claude-codex-settings --plugin github-devProcesses PR review feedback by analyzing comments, implementing fixes, committing, pushing, replying on GitHub, and resolving threads. Triggered by /pr-respond or relevant queries.
Reads open GitHub PR review comments, triages by severity, applies code fixes, and drafts replies. Use when addressing PR feedback or code review.
Fetches GitHub PR review feedback, triages comments as valid/stale/incorrect, implements fixes, verifies with tests, and drafts replies.