List Open Pull Requests

VerifiedSafe

Displays a list of open pull requests with priorities, sorted by review status and update date. Supports custom filtering options.

Sby Skills Guide Bot
DevelopmentBeginner
406/2/2026
Claude CodeCursorWindsurf
#pull-requests#github#pr-list#review-status

Recommended for

Our review

Lists open pull requests with priority sorting by review status.

Strengths

  • Quick overview of PR status
  • Sorted by review state
  • Shows branch names for context
  • Easy to use with gh CLI

Limitations

  • Requires gh CLI and GitHub repository
  • Does not display PR content
  • Limited to 50 PRs by default
When to use it

When you need a quick prioritized list of open PRs to manage your review workflow.

When not to use it

When you need detailed PR content or if you are not using GitHub as your platform.

Security analysis

Safe
Quality score90/100

The skill only runs 'gh pr list' commands with safe, predefined flags to fetch PR data. There are no destructive operations, no data exfiltration, and no code obfuscation.

No concerns found

Examples

List all open PRs
Show me all open PRs sorted by review priority.
My PRs only
List my open pull requests.
Include merged PRs
Show all PRs including merged ones.

name: list-prs description: オープン PR の一覧を優先順位付きで表示する。「PR 一覧」「PR リスト」「オープン PR」「PR を見せて」「プルリク一覧」「レビュー待ち PR」「PR 確認」などで起動。レビュー状態と優先度順にソートして表示。 allowed-tools: [Bash]

List PRs

オープン PR の一覧を優先順位付きで表示します。

引数

  • --all: マージ済みも含めて表示
  • --mine: 自分が作成したもののみ
  • --help: ヘルプを表示

実行手順

  1. gh pr list コマンドで PR 一覧を取得
# オープンのみ(デフォルト)
gh pr list --json number,title,headRefName,author,reviewDecision,updatedAt --limit 50

# マージ済みも含める(--all)
gh pr list --state all --json number,title,headRefName,author,reviewDecision,updatedAt,state --limit 50

# 自分が作成したもの(--mine)
gh pr list --author @me --json number,title,headRefName,author,reviewDecision,updatedAt --limit 50
  1. レビュー状態と優先順位でソート

  2. 以下の形式で表示

出力フォーマット

## オープン PR 一覧

| 状態 | # | タイトル | ブランチ | レビュー | 作成者 | 更新日 |
|:----:|---|----------|----------|----------|--------|--------|
| 🔄 | #10 | feat: 新機能 | feature/5 | ⏳ 待機中 | @user | 2024-01-01 |
| ✅ | #8 | fix: バグ修正 | fix/bug | ✅ 承認済 | @user | 2024-01-02 |
| ⚠️ | #6 | docs: 更新 | docs/update | ❌ 要修正 | @user | 2024-01-03 |

合計: 3 件のオープン PR

状態アイコン

| アイコン | 状態 | 条件 | |----------|------|------| | 🔄 | レビュー待ち | reviewDecision が null または REVIEW_REQUIRED | | ✅ | 承認済み | reviewDecision が APPROVED | | ⚠️ | 変更要求あり | reviewDecision が CHANGES_REQUESTED | | 🚧 | ドラフト | isDraft が true |

レビュー状態アイコン

| アイコン | 状態 | |----------|------| | ⏳ 待機中 | レビュー未依頼またはレビュー中 | | ✅ 承認済 | 承認済み(マージ可能) | | ❌ 要修正 | 変更要求あり |

重要な注意事項

  • ✅ レビュー状態順にソートして表示
  • ✅ ブランチ名を表示して関連 Issue を推測可能に
  • ✅ 更新日順でソート
  • ❌ PR の内容は表示しない(一覧のみ)
Related skills