From cook
Prioritizes open GitHub issues by label (bug/critical/security high, enhancement/feature/assigned medium, documentation/good-first-issue low) and displays them with summaries. Useful for triaging issues and creating PRs from issues.
How this skill is triggered — by the user, by Claude, or both
Slash command
/cook:pr-issueThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
現在のリポジトリのオープン Issue 一覧を優先順位付きで表示します。
現在のリポジトリのオープン Issue 一覧を優先順位付きで表示します。
# Claude に依頼
「オープン Issue 一覧を優先順位付きで表示して」
# リポジトリ情報を取得
gh repo view --json nameWithOwner | jq -r '.nameWithOwner'
# オープン Issue 情報を取得して Claude に依頼
gh issue list --state open --json number,title,author,createdAt,updatedAt,labels,assignees,comments --limit 30
「上記の Issue を優先度別に整理して、各 Issue の 2 行概要も含めて表示して。URL は上記で取得したリポジトリ名を使用して生成して」
オープン Issue 一覧 (優先順位順)
### 高優先度
#番号 タイトル [ラベル] | 作者 | オープンから経過時間 | コメント数 | 担当者
├─ 概要 1 行目
└─ 概要 2 行目
https://github.com/owner/repo/issues/番号
### 中優先度
(同様の形式)
### 低優先度
(同様の形式)
高優先度
bug ラベルが付いている Issuecritical や urgent ラベルが付いている Issuesecurity ラベルが付いている Issue中優先度
enhancement ラベルが付いている Issuefeature ラベルが付いている Issue低優先度
documentation ラベルが付いている Issuegood first issue ラベルが付いている Issuewontfix や duplicate ラベルが付いている Issue# 特定のラベルの Issue のみ取得
gh issue list --state open --label "bug" --json number,title,author,createdAt,labels,comments --limit 30
# 複数ラベルでフィルタリング (AND 条件)
gh issue list --state open --label "bug,high-priority" --json number,title,author,createdAt,labels,comments --limit 30
gh) が必要ですnpx claudepluginhub wasabeef/claude-code-cookbook --plugin cookFetches open GitHub Issues from the current repository and displays them sorted by priority (high/medium/low) based on labels like bug, critical, security, enhancement, etc.
Lists open GitHub issues sorted by priority (high/medium/low) based on labels like bug, security, enhancement, and documentation. Useful for triaging project backlogs.
Lists open GitHub Issues with priority ranking (high/medium/low) based on labels like bug, critical, security, enhancement, feature, documentation, and good first issue.