From github-issues
Lists GitHub Issues, aggregates by label, analyzes priorities, and organizes tasks
How this skill is triggered — by the user, by Claude, or both
Slash command
/github-issues:github-issuesThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
> **Language:** Respond in the user's language. If unclear, default to the language of the user's message.
Language: Respond in the user's language. If unclear, default to the language of the user's message.
Reviews GitHub Issues in this repository and organizes actionable tasks.
Check GitHub CLI authentication
gh auth status 2>/dev/null || echo "GitHub CLI authentication required: gh auth login"
List open Issues
echo "Open Issues:"
gh issue list --state open --limit 30 --json number,title,labels,assignees,createdAt --template '{{range .}}#{{.number}}: {{.title}}{{if .labels}} [{{range $i, $e := .labels}}{{if $i}}, {{end}}{{.name}}{{end}}]{{end}}{{if .assignees}} (Assignee: {{range $i, $e := .assignees}}{{if $i}}, {{end}}{{.login}}{{end}}){{end}}{{"\n"}}{{end}}'
Aggregate Issues by label
echo "Issues by label:"
gh issue list --state open --json labels --jq '[.[] | .labels[].name] | group_by(.) | map({label: .[0], count: length}) | sort_by(.count) | reverse | .[] | "\(.label): \(.count)"' | head -10
Recent Issues (within 7 days)
echo "Recently created Issues (within 7 days):"
gh issue list --state open --search "created:>$(date -d '7 days ago' +%Y-%m-%d 2>/dev/null || date -v-7d +%Y-%m-%d)" --limit 10 --json number,title,createdAt --template '{{range .}}#{{.number}}: {{.title}} ({{.createdAt | time "2006-01-02"}}){{"\n"}}{{end}}'
Check high-priority Issues
echo "High-priority Issues:"
gh issue list --state open --label "priority:high,bug,critical" --limit 10 --json number,title,labels --template '{{range .}}#{{.number}}: {{.title}} [{{range $i, $e := .labels}}{{if $i}}, {{end}}{{.name}}{{end}}]{{"\n"}}{{end}}'
Task organization suggestions Organize and suggest tasks based on the following perspectives:
/github-issues
No arguments required. GitHub CLI must be configured.
gh auth login)npx claudepluginhub dobachi/claude-skills-marketplace --plugin github-issuesManages GitHub issues using GitHub CLI: lists open issues, views details by number, creates with title/body/labels, edits labels/assignees, closes/reopens. Triggers on 'show open issues', 'create issue', etc.
Manage GitHub issues via CLI with bulk operations, JSON/jq parsing, search filters, and issue-to-PR workflow. Also stores AI session context for resuming tasks.
Investigates GitHub issues and PRs: pulls, classifies, searches codebase for root cause, reviews contributed code, proposes fixes with file:line references, and optionally implements fixes.