ワンクリックで
gh-pr-reviewers
Request reviewers for a GitHub pull request. Use when the user wants to add reviewers to a PR or request a code review.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Request reviewers for a GitHub pull request. Use when the user wants to add reviewers to a PR or request a code review.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
Get file changes from a GitHub pull request with commentable positions. Use when reviewing code and need to know where to place review comments.
Add a general comment to a GitHub pull request. Use when the user wants to post a comment on a PR conversation.
Get all comments from a GitHub pull request including both conversation and code review comments. Use when the user wants to read PR comments or review feedback.
Create a new GitHub pull request. Use when the user wants to create a PR, open a pull request, or submit changes for review.
Get the unified diff for a GitHub pull request. Use when the user wants to see code changes, review a diff, or understand what changed in a PR.
Get detailed information about a specific GitHub pull request. Use when the user wants to see PR details, check PR status, or view PR metadata.
SOC 職業分類に基づく
| name | gh-pr-reviewers |
| description | Request reviewers for a GitHub pull request. Use when the user wants to add reviewers to a PR or request a code review. |
| allowed-tools | Bash(python3 *) |
Request reviewers for a GitHub pull request. Adds one or more GitHub users as requested reviewers on a specified PR.
python3 .claude/skills/gh-pr-reviewers/scripts/request_reviewers.py --owner OWNER --repo REPO --pr-number PR_NUMBER --reviewers USER1,USER2
| Argument | Required | Description |
|---|---|---|
--owner | Yes | Repository owner (username or organization) |
--repo | Yes | Repository name |
--pr-number | Yes | Pull request number |
--reviewers | Yes | Comma-separated list of GitHub usernames to request as reviewers |
Request a single reviewer:
python3 .claude/skills/gh-pr-reviewers/scripts/request_reviewers.py --owner octocat --repo hello-world --pr-number 42 --reviewers alice
Request multiple reviewers:
python3 .claude/skills/gh-pr-reviewers/scripts/request_reviewers.py --owner octocat --repo hello-world --pr-number 42 --reviewers alice,bob,charlie