SH
sh-triage
Route raw INBOX items into the Scrumban pipeline (BACKLOG stages).
Install
mkdir -p .claude/skills/sh-triage && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/13340" && unzip -o skill.zip -d .claude/skills/sh-triage && rm skill.zipInstalls to .claude/skills/sh-triage
Activation
This is the description your AI agent reads to decide when to run this skill — the better it matches your request, the more reliably it fires.
Route raw INBOX items into the Scrumban pipeline (BACKLOG stages).66 charsno explicit “when” trigger
About this skill
Triage — INBOX to Pipeline
Process raw input and route it into the correct pipeline stage.
Pipeline Flow
INBOX.md --> BACKLOG.md (Ideation --> Refining --> Ready) --> TODO-Today.md --> DONE-Today.md
Triage Steps
- Read INBOX.md — scan for untriaged items (any line without a stage marker)
- Classify each item:
| Classification | Route To | Criteria |
|---|---|---|
[idea] | BACKLOG#Ideation | New feature, enhancement, exploration |
[bug] | BACKLOG#Ideation or #Refining | Defect with reproduction steps |
[hotfix] | TODO-Today (fast-track) | Actively blocking development |
[question] | Answer inline, no queue item | Clarification needed, no action |
[tooling] | BACKLOG#Ideation | Build, CI, dev experience improvement |
[debt] | BACKLOG#Ideation | Technical debt, refactoring need |
- Write the BACKLOG entry with classification tag, brief description, and
Next:action - Remove from INBOX — item moves, it doesn't copy
- STOP — never implement during triage
Queue-First Invariant
Even for obvious inline bugs, the sequence is always:
- Triage -> classify
- Write queue item (BACKLOG or TODO-Today for hotfix)
- STOP
Never implement during triage. Never commit without a queue item having existed first.
BACKLOG Entry Format
### [classification] Brief title
Description of the item.
Origin: INBOX (date)
Next: /sh:brainstorm (or appropriate next action)
Hotfix Fast-Track
If classified as [hotfix] (actively blocking):
- Verify Bug DOR-lite passes (see
/sh:dor) - Move directly to TODO-Today.md as next queue item
- Skip Ideation/Refining stages
Post-Triage
After triage completes, suggest next actions:
- Items routed to Ideation:
/sh:brainstormto explore requirements - Items in Refining:
/sh:spec-reviewto validate specs - Ready items:
/sh:workflowto generate queue - Hotfixes:
/sh:kickoffto resume execution