From cook-es
Lists open GitHub issues prioritized by labels (bug, critical, security as high; enhancement, feature as medium; documentation, good first issue as low). Invoked via "mostrar issues" or "issues abiertos".
How this skill is triggered — by the user, by Claude, or both
Slash command
/cook-es: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
Muestra una lista priorizada de issues abiertos en el repositorio actual.
Muestra una lista priorizada de issues abiertos en el repositorio actual.
# Solicitar de Claude
"Mostrar una lista priorizada de issues abiertos"
# Obtener información del repositorio
gh repo view --json nameWithOwner | jq -r '.nameWithOwner'
# Obtener información de issues abiertos y solicitar de Claude
gh issue list --state open --json number,title,author,createdAt,updatedAt,labels,assignees,comments --limit 30
"Organizar los issues anteriores por prioridad, incluyendo un resumen de 2 líneas para cada issue. Generar URLs usando el nombre del repositorio obtenido arriba"
Lista de Issues Abiertos (por Prioridad)
### Alta Prioridad
#number Título [etiquetas] | Autor | Tiempo desde apertura | Conteo de comentarios | Asignado
├─ Línea de resumen 1
└─ Línea de resumen 2
https://github.com/owner/repo/issues/number
### Prioridad Media
(Formato similar)
### Baja Prioridad
(Formato similar)
Alta Prioridad
bugcritical o urgentsecurityPrioridad Media
enhancementfeatureBaja Prioridad
documentationgood first issuewontfix o duplicate# Obtener solo issues con etiqueta específica
gh issue list --state open --label "bug" --json number,title,author,createdAt,labels,comments --limit 30
# Filtrar con múltiples etiquetas (condición 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-esLists open GitHub Issues with priority ranking (high/medium/low) based on labels like bug, critical, security, enhancement, feature, documentation, and good first issue.
Lists open GitHub issues sorted by priority (high/medium/low) based on labels like bug, security, enhancement, and documentation. Useful for triaging project backlogs.
Displays a prioritized list of open GitHub issues ranked by labels (bug, security, enhancement, etc.) and generates issue URLs. Useful for triaging and organizing repository issues.