agents/skills/prioritize/SKILL.md
RICE-scored backlog prioritization. Use for sprint planning, feature prioritization, or backlog grooming.
npx skillsauth add drn/dots prioritizeInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Score and rank a list of work items using the RICE framework, then produce a prioritized backlog ready for sprint planning.
$ARGUMENTS - Required: list of items to prioritize, OR a path to a file containing them, OR "backlog" to pull from git issues/PRsIf no arguments provided, ask the user what items to prioritize.
git rev-parse --show-toplevel 2>/dev/null | grep -oE '[^/]+$' | head -1gh issue list --limit 20 --state open 2>/dev/null | head -20gh pr list --limit 10 --state open 2>/dev/null | head -10Parse the input into a list of discrete work items. Each item needs:
If $ARGUMENTS is "backlog", pull from open GitHub issues and PRs.
If fewer than 3 items, ask the user if they want to add more -- RICE works best with 5+ items to compare.
For each item, estimate:
| Factor | Scale | How to Estimate | |--------|-------|-----------------| | Reach | Number of users/devs affected per quarter | Ask: who benefits? How many? | | Impact | 0.25 (minimal), 0.5 (low), 1 (medium), 2 (high), 3 (massive) | Ask: how much does this move the needle? | | Confidence | 50%, 80%, or 100% | How certain are these estimates? Use 80% as default. | | Effort | Person-days (0.5 = half day, 1 = one day, etc.) | How long to implement, test, and ship? |
RICE Score = (Reach x Impact x Confidence) / Effort
When estimating, be conservative:
After scoring, classify each item:
Ask the user:
Apply the 15% buffer rule: reserve 15% of capacity for unexpected work. Available capacity = stated capacity x 0.85.
Allocate the 20% tech debt rule: at least 20% of sprint capacity should go to tech debt, bugs, or maintenance -- not just new features.
## Prioritized Backlog
### Sprint Capacity
- **Duration:** {N} weeks
- **Available:** {N} person-days (after 15% buffer)
- **Tech debt allocation:** {N} person-days (20%)
- **Feature allocation:** {N} person-days (80%)
### Ranked Items
| Rank | Item | RICE | R | I | C | E | MoSCoW | Fits Sprint? |
|------|------|------|---|---|---|---|--------|--------------|
| 1 | ... | ... | . | . | . | . | Must | Yes |
### Sprint Recommendation
**Include in sprint:**
{items that fit within capacity, prioritized by RICE score, Must items first}
**Deferred:**
{items that don't fit, with brief reason}
**Won't (out of scope):**
{items explicitly excluded}
### Assumptions
{list any assumptions made during estimation}
Print the backlog so the user can review and adjust scores.
If the user disagrees with any score, adjust and re-rank. The user's domain knowledge overrides model estimates.
development
Build a self-contained, single-file HTML presentation deck from talking points or a source doc, using a terminal/TUI-styled template with keyboard, tap, and swipe navigation. Use when the user wants to create slides, build a presentation or deck, turn talking points or a doc into a talk, make an HTML slideshow, or produce a presentation as a shareable artifact (instead of Google Slides).
development
Render a Markdown file to GitHub-flavored HTML and open a styled local preview (light + dark) in the browser. Use when the user wants to preview markdown, see how a README renders on GitHub, check that relative screenshots or images display correctly, or get a GitHub-like local preview without installing grip or glow.
tools
Mark the current Argus task as complete. Use when the work for the current worktree is done and the user wants the task to transition to the "complete" status.
development
Launch a dynamic Workflow where the top-tier session model (Fable) handles planning and orchestration while implementation subagents run on Sonnet for routine tasks and Opus for complex ones. Use when the user wants to orchestrate a build, a dynamic workflow, a model-tiered build, fable planning with sonnet and opus implementation, or tiered agents.