From cook-es
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.
How this skill is triggered — by the user, by Claude, or both
Slash command
/cook-es: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
Muestra una lista priorizada de PRs abiertos en el repositorio actual.
Muestra una lista priorizada de PRs abiertos en el repositorio actual.
# Solicitar de Claude
"Mostrar una lista priorizada de PRs abiertos"
# Obtener información del repositorio
gh repo view --json nameWithOwner | jq -r '.nameWithOwner'
# Obtener información de PRs abiertos y solicitar de Claude
gh pr list --state open --draft=false --json number,title,author,createdAt,additions,deletions,reviews --limit 30
"Organizar los PRs anteriores por prioridad, incluyendo un resumen de 2 líneas para cada PR. Generar URLs usando el nombre del repositorio obtenido arriba"
Lista de PRs Abiertos (por Prioridad)
### Alta Prioridad
#number Título [Draft/DNM] | Autor | Tiempo desde apertura | Conteo de aprobaciones | +adiciones/-eliminaciones
├─ Línea de resumen 1
└─ Línea de resumen 2
https://github.com/owner/repo/pull/number
### Prioridad Media
(Formato similar)
### Baja Prioridad
(Formato similar)
Alta Prioridad
fix: Correcciones de bugsrelease: Trabajo de releasePrioridad Media
feat: Nuevas característicasupdate: Mejoras de característicasBaja Prioridad
test:, build:, perf:gh)npx claudepluginhub wasabeef/claude-code-cookbook --plugin cook-esLists 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.
Lists open PRs sorted by priority (high/medium/low) based on branch prefix and labels. Useful for triaging pull requests.