← Back to list

pr-response
by zopu
⭐ 0🍴 0📅 Jan 20, 2026
SKILL.md
name: pr-response description: Respond directly to individual PR review comments using the GitHub API. Use when asked to reply to PR comments, address reviewer feedback, or communicate with reviewers on a PR.
PR Comment Response
Respond directly to individual review comments on a GitHub PR.
Instructions
-
First, fetch the current PR's review comments to get the comment IDs:
gh pr view --json number -q '.number' # Get PR number gh api "repos/{owner}/{repo}/pulls/{pr_number}/comments" --jq '.[] | {id, path, body, user: .user.login}' -
For each comment you need to respond to, use the script in this skill directory:
~/.claude/skills/pr-response/gh-reply-pr-comment.sh <comment_id> "<response_body>" -
Always prefix your response with
[claude]so reviewers know the response is from Claude. -
Be concise, professional, and address the specific feedback in the comment.
Example
If a reviewer comments "Why did you use a map here instead of a for loop?":
~/.claude/skills/pr-response/gh-reply-pr-comment.sh 1234567890 "[claude] The map was chosen for its declarative style and to avoid mutation of external state. Happy to refactor to a for loop if that's preferred for consistency with the codebase."
When to use
- When asked to respond to PR review comments
- When asked to reply to feedback on a PR
- After addressing review feedback and wanting to notify the reviewer
Score
Total Score
40/100
Based on repository quality metrics
✓SKILL.md
SKILL.mdファイルが含まれている
+20
○LICENSE
ライセンスが設定されている
0/10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
Reviews
💬
Reviews coming soon