From github
Triage open GitHub issues by fetching the full list, investigating each in parallel with subagents, and producing a prioritized summary table grouped by feasibility (HIGH/MEDIUM/LOW). Trigger when the user asks to "triage issues", "check open issues", "review issues", or "what issues can we work on".
How this skill is triggered — by the user, by Claude, or both
Slash command
/github:issue-triageThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Fetch all open issues for the current repository, investigate each for feasibility, and produce a prioritized summary.
Fetch all open issues for the current repository, investigate each for feasibility, and produce a prioritized summary.
Fetch issues — Run gh issue list --state open --limit 50 --json number,title,labels,createdAt,body to get all open issues. Exclude automated issues (e.g. Renovate Dependency Dashboard).
Group and investigate in parallel — Group issues into batches of 3-5 by theme (bugs, features, etc.). Launch subagents (subagent_type: Explore) in parallel, one per batch. Each subagent should:
Produce summary table — Aggregate results into tables grouped by feasibility:
### HIGH feasibility (easy to fix)
| # | Title | Summary |
|---|-------|---------|
### MEDIUM feasibility
| # | Title | Summary |
|---|-------|---------|
### LOW feasibility / needs more info
| # | Title | Summary |
|---|-------|---------|
npx claudepluginhub yshrsmz/cc-plugins --plugin githubGuides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.