Loading skill
Install any skill in seconds. Free to start, no credit card required.
Get Started Free →Display open Issues with priority ranking. Trigger with "show issues", "open issues?", "list issues", "create PR from issue".
| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-11 | ✗→✓ | ▲ Improved | -2% | 0% |
| case-13 | ✗→✓ | ▲ Improved | 65% | 0% |
| case-15 | ✗→✓ | ▲ Improved | 26% | 0% |
| case-17 | ✗→✓ | ▲ Improved | -21% | 0% |
| case-18 | ✗→✓ | ▲ Improved | -34% | 0% |
Displays a prioritized list of open issues in the current repository.
bash# Request from Claude "Show a prioritized list of open issues"
bash# 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"
textOpen 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 labelsbash# 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)Other measured skills in the registry, with their headline benchmark lift.