From cook-zh-cn
Shows 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'.
How this skill is triggered — by the user, by Claude, or both
Slash command
/cook-zh-cn: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-cnLists 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.
Lists open GitHub issues sorted by priority (high/medium/low) based on labels like bug, security, enhancement, and documentation. Useful for triaging project backlogs.
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.