ワンクリックで
gh-pr-list
List open pull requests in a GitHub repository. Use when the user wants to see PRs, check open pull requests, or browse PRs.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
List open pull requests in a GitHub repository. Use when the user wants to see PRs, check open pull requests, or browse PRs.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
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.
| name | gh-pr-list |
| description | List open pull requests in a GitHub repository. Use when the user wants to see PRs, check open pull requests, or browse PRs. |
| allowed-tools | Bash(python3 *) |
GitHub リポジトリのオープンな Pull Request を一覧表示するスキル。PR の確認やブラウジングに使用する。
python3 .claude/skills/gh-pr-list/scripts/list_prs.py \
--owner <owner> \
--repo <repo> \
[--limit <number>]
| Argument | Required | Default | Description |
|---|---|---|---|
--owner | Yes | - | Repository owner (username or organization) |
--repo | Yes | - | Repository name |
--limit | No | 10 | Maximum number of PRs to return (1-100) |
List open PRs with default limit:
python3 .claude/skills/gh-pr-list/scripts/list_prs.py \
--owner myorg --repo myrepo
List up to 5 open PRs:
python3 .claude/skills/gh-pr-list/scripts/list_prs.py \
--owner myorg --repo myrepo \
--limit 5
List all open PRs (up to 100):
python3 .claude/skills/gh-pr-list/scripts/list_prs.py \
--owner myorg --repo myrepo \
--limit 100