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".
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/comments/{comment_id}/replies -f body="...".sleep $((RANDOM % 3 + 3)).Guides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.
npx claudepluginhub ruslands/plugins --plugin github-dev