From cook-ko
Lists open PRs in the current repository sorted by priority (high/medium/low) based on commit type and draft status. Useful for triaging pull requests.
How this skill is triggered — by the user, by Claude, or both
Slash command
/cook-ko:pr-listThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
현재 리포지토리의 오픈 PR 목록을 우선순위와 함께 표시합니다.
현재 리포지토리의 오픈 PR 목록을 우선순위와 함께 표시합니다.
# Claude 에 의뢰
「오픈 PR 목록을 우선순위와 함께 표시하세요」
# 리포지토리 정보 취득
gh repo view --json nameWithOwner | jq -r '.nameWithOwner'
# 오픈 PR 정보 취득하여 Claude 에 의뢰
gh pr list --state open --draft=false --json number,title,author,createdAt,additions,deletions,reviews --limit 30
「위의 PR 을 우선순위별로 정리하여, 각 PR 의 2 행 개요도 포함해서 표시하세요. URL 은 위에서 취득한 리포지토리명을 사용하여 생성하세요」
오픈 PR 목록 (우선순위순)
### 고우선순위
#번호 제목 [Draft/DNM] | 작성자 | 오픈부터 경과 시간 | Approved 수 | +추가/-삭제
├─ 개요 1 행째
└─ 개요 2 행째
https://github.com/owner/repo/pull/번호
### 중우선순위
(동일한 형식)
### 저우선순위
(동일한 형식)
고우선순위
fix: 버그 수정release: 릴리스 작업중우선순위
feat: 신규 기능update: 기능 개선저우선순위
test:, build:, perf:인 PRgh)가 필요합니다npx claudepluginhub wasabeef/claude-code-cookbook --plugin cook-koLists open PRs with a priority ranking (high/medium/low) based on conventional commit type, including summaries and age. Helps triage review workload.
Shows a prioritized list of open pull requests in the current GitHub repository, ranked by type (fix, release, feat, etc.). Helps developers triage and focus on high-impact PRs first.
Lists open PRs sorted by priority (high/medium/low) based on branch prefix and labels. Useful for triaging pull requests.