From cook-ko
Fetches 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.
How this skill is triggered — by the user, by Claude, or both
Slash command
/cook-ko: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-koPrioritizes 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.
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.