From cook-zh-tw
Lists open GitHub Issues sorted by priority (high/medium/low) based on labels like bug, critical, security, enhancement, feature, documentation, and good first issue. Includes summaries, assignees, and comment counts.
How this skill is triggered — by the user, by Claude, or both
Slash command
/cook-zh-tw: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 cook-zh-twShows open GitHub Issues sorted by priority (high, medium, low) based on labels like bug, critical, security. Triggered by phrases such as 'show issues' or 'issue list'.
Displays a prioritized list of open GitHub issues ranked by labels (bug, security, enhancement, etc.) and generates issue URLs. Useful for triaging and organizing repository issues.
Lists open GitHub issues sorted by priority (high/medium/low) based on labels like bug, security, enhancement, and documentation. Useful for triaging project backlogs.