From cook-en
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.
How this skill is triggered — by the user, by Claude, or both
Slash command
/cook-en: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
Displays a prioritized list of open issues in the current repository.
Displays a prioritized list of open issues in the current repository.
# Request from Claude
"Show a prioritized list of open issues"
# Get repository information
gh repo view --json nameWithOwner | jq -r '.nameWithOwner'
# Get open issue information and request from Claude
gh issue list --state open --json number,title,author,createdAt,updatedAt,labels,assignees,comments --limit 30
"Organize the above issues by priority, including a 2-line summary for each issue. Generate URLs using the repository name obtained above"
Open Issues List (by Priority)
### High Priority
#number Title [labels] | Author | Time since opened | Comment count | Assignee
├─ Summary line 1
└─ Summary line 2
https://github.com/owner/repo/issues/number
### Medium Priority
(Similar format)
### Low Priority
(Similar format)
High Priority
bug labelcritical or urgent labelssecurity labelMedium Priority
enhancement labelfeature labelLow Priority
documentation labelgood first issue labelwontfix or duplicate labels# Get only issues with specific label
gh issue list --state open --label "bug" --json number,title,author,createdAt,labels,comments --limit 30
# Filter with multiple labels (AND condition)
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-enLists 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 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.