From github-issues
Lists GitHub Issues, aggregates by label, analyzes priorities, and organizes tasks
npx claudepluginhub dobachi/claude-skills-marketplace --plugin github-issuesThis skill uses the workspace's default tool permissions.
> **Language:** Respond in the user's language. If unclear, default to the language of the user's message.
Guides Next.js Cache Components and Partial Prerendering (PPR) with cacheComponents enabled. Implements 'use cache', cacheLife(), cacheTag(), revalidateTag(), static/dynamic optimization, and cache debugging.
Migrates code, prompts, and API calls from Claude Sonnet 4.0/4.5 or Opus 4.1 to Opus 4.5, updating model strings on Anthropic, AWS, GCP, Azure platforms.
Analyzes BMad project state from catalog CSV, configs, artifacts, and query to recommend next skills or answer questions. Useful for help requests, 'what next', or starting BMad.
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)