显示当前仓库的开放 Issue 列表,并按优先级排序。
按优先级显示当前仓库的开放 Issue 列表,自动分类高/中/低优先级并生成带概要和链接的报告。适用于快速了解待处理问题。
/plugin marketplace add wasabeef/claude-code-cookbook/plugin install cook-zh-cn@claude-code-cookbook显示当前仓库的开放 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)