Help us improve
Share bugs, ideas, or general feedback.
From github-dev
This skill should be used when user asks to "address PR comments", "resolve PR feedback", "handle review comments", "fix PR issues", "respond to PR review", or explicitly invokes "resolve-pr-comments".
npx claudepluginhub ruslands/plugins --plugin github-devHow 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
Mandates invoking relevant skills via tools before any response in coding sessions. Covers access, priorities, and adaptations for Claude Code, Copilot CLI, Gemini CLI.
Share bugs, ideas, or general feedback.
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/comments/{comment_id}/replies -f body="...".sleep $((RANDOM % 3 + 3)).