From cook-pt
Lists open GitHub Issues with priority ranking (high/medium/low) based on labels like bug, critical, security, enhancement, feature, documentation, and good first issue.
How this skill is triggered — by the user, by Claude, or both
Slash command
/cook-pt: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
Exibe a lista de Issues abertas do repositório atual com priorização.
Exibe a lista de Issues abertas do repositório atual com priorização.
# Solicitar ao Claude
"Exibir lista de Issues abertas com priorização"
# Obtém informações do repositório
gh repo view --json nameWithOwner | jq -r '.nameWithOwner'
# Obtém informações de Issues abertas e solicita ao Claude
gh issue list --state open --json number,title,author,createdAt,updatedAt,labels,assignees,comments --limit 30
"Organize as Issues acima por prioridade e exiba incluindo um resumo de 2 linhas para cada Issue. Gere a URL usando o nome do repositório obtido acima"
Lista de Issues Abertas (ordenadas por prioridade)
### Alta Prioridade
#número Título [rótulo] | autor | tempo decorrido desde abertura | número de comentários | responsável
├─ 1ª linha do resumo
└─ 2ª linha do resumo
https://github.com/owner/repo/issues/número
### Prioridade Média
(mesmo formato)
### Baixa Prioridade
(mesmo formato)
Alta Prioridade
bugcritical ou urgentsecurityPrioridade Média
enhancementfeatureBaixa Prioridade
documentationgood first issuewontfix ou duplicate# Obtém apenas Issues com rótulo específico
gh issue list --state open --label "bug" --json number,title,author,createdAt,labels,comments --limit 30
# Filtragem com múltiplos rótulos (condição 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-ptLists 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".
Lists open GitHub issues sorted by priority (high/medium/low) based on labels like bug, security, enhancement, and documentation. Useful for triaging project backlogs.
Fetches open GitHub Issues from the current repository and displays them sorted by priority (high/medium/low) based on labels like bug, critical, security, enhancement, etc.