From supergraph
Applies a formal state machine to GitHub issues — assigns category (bug/enhancement/question/spike) and state (needs-triage → ready-for-agent). Issues marked ready-for-agent become inputs to supergraph:plan.
How this skill is triggered — by the user, by Claude, or both
Slash command
/supergraph:triageThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Classify issues with a formal state machine. `ready-for-agent` is the handoff trigger to the supergraph pipeline.
Classify issues with a formal state machine. ready-for-agent is the handoff trigger to the supergraph pipeline.
Announce: "🗂️ /supergraph:triage — classifying issues..."
needs-triage
├── enough info → [assign category] → ready-for-agent | ready-for-human
└── missing info → needs-info → [info provided] → ready-for-agent | ready-for-human
ready-for-agent → supergraph:plan pipeline
ready-for-human → manual dev / architectural decision needed
wontfix → closed with reason
| Category | When |
|---|---|
bug | Observed behavior differs from specified behavior |
enhancement | New capability or improvement to existing behavior |
question | Needs clarification before any action |
spike | Research / proof-of-concept, no production code |
| State | Meaning |
|---|---|
needs-triage | Unreviewed — default for new issues |
needs-info | Blocked on missing information from reporter |
ready-for-agent | Fully specified — safe for /supergraph:plan to consume |
ready-for-human | Needs human judgment (architecture, business decision, security) |
wontfix | Will not be addressed — reason required |
1. Read the issue completely.
2. Assign category — bug / enhancement / question / spike.
3. Check readiness for agent:
A bug is ready-for-agent when:
An enhancement is ready-for-agent when:
If NOT ready → set needs-info and list exactly what's missing (one question per response).
4. Assign state and apply labels via GitHub CLI:
gh issue edit <number> --add-label "bug,needs-info"
gh issue edit <number> --add-label "enhancement,ready-for-agent"
gh issue edit <number> --add-label "wontfix"
# Add comment explaining state change:
gh issue comment <number> --body "Triage: [reason for state]"
5. For ready-for-agent issues — summarize for plan intake:
Issue #N: [title]
Category: bug | enhancement
Acceptance: [1-3 criteria]
Constraints: [any known]
→ /supergraph:plan
For a backlog of issues:
gh issue list --state open --label "needs-triage" --json number,title,body
Process each in order. Report counts at end:
Triaged: N issues
ready-for-agent: N ← entry point for /supergraph:plan
needs-info: N
ready-for-human: N
wontfix: N
ready-for-agent unless acceptance criteria are unambiguousready-for-human for anything requiring architecture, security, or business decisionsneeds-info issues — don't dump all questions at oncewontfix always requires a reason in the commentnpx claudepluginhub datit309/supergraph --plugin supergraphTriage issues through a state machine with bug/enhancement categories and workflow states. Automates issue review, categorization, and preparation for AFK agents.
Triages issues through a state machine with bug/enhancement categories and needs-triage/info/ready-for-agent/ready-for-human/wontfix states. Shows unlabeled and needs-triage issues, recommends labels, and attempts bug reproduction.
Triage issues and PRs through a state machine with roles like bug/enhancement and needs-triage/ready-for-agent. Writes agent-ready briefs.