From cook-pt
Lists open PRs with a priority ranking (high/medium/low) based on conventional commit type, including summaries and age. Helps triage review workload.
How this skill is triggered — by the user, by Claude, or both
Slash command
/cook-pt: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
Exibe a lista de PRs abertos do repositório atual com priorização.
Exibe a lista de PRs abertos do repositório atual com priorização.
# Solicitar ao Claude
"Exibir lista de PRs abertos com priorização"
# Obtém informações do repositório
gh repo view --json nameWithOwner | jq -r '.nameWithOwner'
# Obtém informações de PRs abertos e solicita ao Claude
gh pr list --state open --draft=false --json number,title,author,createdAt,additions,deletions,reviews --limit 30
"Organize os PRs acima por prioridade e exiba incluindo um resumo de 2 linhas para cada PR. Gere a URL usando o nome do repositório obtido acima"
Lista de PRs Abertos (ordenados por prioridade)
### Alta Prioridade
#número Título [Draft/DNM] | autor | tempo decorrido desde abertura | número de Approved | +adições/-remoções
├─ 1ª linha do resumo
└─ 2ª linha do resumo
https://github.com/owner/repo/pull/número
### Prioridade Média
(mesmo formato)
### Baixa Prioridade
(mesmo formato)
Alta Prioridade
fix: Correção de bugrelease: Trabalho de releasePrioridade Média
feat: Nova funcionalidadeupdate: Melhoria de funcionalidadeBaixa Prioridade
test:, build:, perf:gh)npx claudepluginhub wasabeef/claude-code-cookbook --plugin cook-ptShows 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 in the current repository sorted by priority (high/medium/low) based on commit type and draft status. Useful for triaging pull requests.
Lists open PRs in the current GitHub repository, organized by priority based on commit type. Uses gh CLI to fetch PR data and generate summaries with URLs.