Skip to main content
ClaudeWave
Slash Command260 estrellas del repoactualizado 16d ago

rice

The rice command applies the RICE prioritization framework to help teams rank features, tasks, or ideas by calculating impact relative to effort. Users provide a list of items, score each on reach (affected users), impact (magnitude of change), confidence (estimate certainty), and effort (person-months required), then the tool computes RICE scores, identifies quick wins and resource-intensive initiatives, and recommends top priorities for immediate action.

Instalar en Claude Code
Copiar
mkdir -p ~/.claude/commands && curl -fsSL https://raw.githubusercontent.com/borghei/Claude-Skills/HEAD/.claude/commands/rice.md -o ~/.claude/commands/rice.md
Después abre una sesión nueva de Claude Code; el slash command carga automáticamente.

rice.md

Apply RICE prioritization framework:

1. **Gather items** — ask the user for the list of features, tasks, or ideas to prioritize.
2. **Score each item** on four dimensions:
   - **Reach**: How many users/customers will this impact per quarter? (number)
   - **Impact**: How much will it move the needle per user? (3=massive, 2=high, 1=medium, 0.5=low, 0.25=minimal)
   - **Confidence**: How sure are we about these estimates? (100%=high, 80%=medium, 50%=low)
   - **Effort**: How many person-months to implement? (number)
3. **Calculate RICE score**: (Reach x Impact x Confidence) / Effort
4. **Rank by score** — highest RICE score = highest priority.
5. **Output a prioritized table:**
   | Rank | Item | Reach | Impact | Confidence | Effort | RICE Score |
6. **Highlight:**
   - **Quick wins**: high score, low effort (< 0.5 person-months)
   - **Big bets**: high reach and impact, but high effort
   - **Deprioritize**: low score items to explicitly defer
7. **Recommend** the top 3 items to tackle first with justification.