From cook
Lists open PRs sorted by priority (high/medium/low) based on branch prefix and labels. Useful for triaging pull requests.
How this skill is triggered — by the user, by Claude, or both
Slash command
/cook:pr-listThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
現在のリポジトリのオープン PR 一覧を優先順位付きで表示します。
現在のリポジトリのオープン PR 一覧を優先順位付きで表示します。
# Claude に依頼
「オープン PR 一覧を優先順位付きで表示して」
# リポジトリ情報を取得
gh repo view --json nameWithOwner | jq -r '.nameWithOwner'
# オープン PR 情報を取得して Claude に依頼
gh pr list --state open --draft=false --json number,title,author,createdAt,additions,deletions,reviews --limit 30
「上記の PR を優先度別に整理して、各 PR の 2 行概要も含めて表示して。URL は上記で取得したリポジトリ名を使用して生成して」
オープン PR 一覧 (優先順位順)
### 高優先度
#番号 タイトル [Draft/DNM] | 作者 | オープンから経過時間 | Approved 数 | +追加/-削除
├─ 概要 1 行目
└─ 概要 2 行目
https://github.com/owner/repo/pull/番号
### 中優先度
(同様の形式)
### 低優先度
(同様の形式)
高優先度
fix: バグ修正release: リリース作業中優先度
feat: 新機能update: 機能改善低優先度
test:、build:、perf: の PRgh) が必要ですnpx claudepluginhub wasabeef/claude-code-cookbook --plugin cookLists open PRs in the current repository sorted by priority (high/medium/low) based on commit type and draft status. Useful for triaging pull requests.
Shows a prioritized list of open pull requests in the current GitHub repository, ranked by type (fix, release, feat, etc.). Helps developers triage and focus on high-impact PRs first.
Lists open PRs with a priority ranking (high/medium/low) based on conventional commit type, including summaries and age. Helps triage review workload.