Imported from swatkatz/babybaton (
.claude/skills/find-issue/SKILL.md). Install upstream withnpx skills add swatkatz/babybaton --skill find-issue. Copyright stays with the author.
Find an Issue Ready to Implement
Find the next open GitHub issue labeled "ready to implement" that is not already "in development", and print its URL.
Steps
- Fetch open issues with the "ready to implement" label, including their labels:
gh issue list --label "ready to implement" --state open --json number,title,url,labels
- Filter out any issues that also have the "in development" label using
jq:
gh issue list --label "ready to implement" --state open --json number,title,url,labels | jq '[.[] | select(.labels | map(.name) | index("in development") | not)]'
-
If the filtered list is non-empty, print the title and URL of the first matching issue.
-
If no issues match, print exactly:
NO ISSUES FOUND