From cook-en
Displays a prioritized list of open PRs in the current repository using GitHub CLI, ranked by priority (fix/release > feat/update > draft/test).
How this skill is triggered — by the user, by Claude, or both
Slash command
/cook-en: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
Displays a prioritized list of open PRs in the current repository.
Displays a prioritized list of open PRs in the current repository.
# Request from Claude
"Show a prioritized list of open PRs"
# Get repository information
gh repo view --json nameWithOwner | jq -r '.nameWithOwner'
# Get open PR information and request from Claude
gh pr list --state open --draft=false --json number,title,author,createdAt,additions,deletions,reviews --limit 30
"Organize the above PRs by priority, including a 2-line summary for each PR. Generate URLs using the repository name obtained above"
Open PRs List (by Priority)
### High Priority
#number Title [Draft/DNM] | Author | Time since opened | Approved count | +additions/-deletions
├─ Summary line 1
└─ Summary line 2
https://github.com/owner/repo/pull/number
### Medium Priority
(Similar format)
### Low Priority
(Similar format)
High Priority
fix: Bug fixesrelease: Release workMedium Priority
feat: New featuresupdate: Feature improvementsLow Priority
test:, build:, perf:gh)npx claudepluginhub wasabeef/claude-code-cookbook --plugin cook-enShows 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 with a priority ranking (high/medium/low) based on conventional commit type, including summaries and age. Helps triage review workload.
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.