backlog-prioritization-assistant
Installation
SKILL.md
When to invoke
- You have a backlog of initiatives and want a repeatable prioritization with transparent scoring.
- You need to generate a "next up" list for planning from a CSV export.
Inputs needed
--inputpath to a CSV with one row per item.- Required columns:
id,title,impact,effort - Optional columns:
reach,confidence,cost_of_delay,job_size
- Required columns:
--methodone of:rice,wsjf,simple.
Workflow
- Validate required columns and parse numeric fields.
- Compute a score per item:
- RICE: (\text{reach} \times \text{impact} \times \text{confidence} / \max(\text{effort},\epsilon))
- WSJF: (\text{cost_of_delay} / \max(\text{job_size},\epsilon))
- Simple: (\text{impact} / \max(\text{effort},\epsilon))
- Apply tie-breakers (higher impact, lower effort).
- Emit a ranked JSON report with per-item rationale.