From pm-planning
Scores and ranks product initiatives using the RICE framework. Use for backlog prioritization, quarterly planning, or ranking features objectively.
How this skill is triggered — by the user, by Claude, or both
Slash command
/pm-planning:rice-prioritisationThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Apply consistent, criteria-based RICE scoring to a list of features or initiatives to produce an objective prioritisation ranking.
Apply consistent, criteria-based RICE scoring to a list of features or initiatives to produce an objective prioritisation ranking.
If a professional-brain (brain/) exists, ground in it instead of re-asking for what you already know:
knowledge/strategy.md (so the ranking serves the direction), the items as entities/, and impact hypotheses/. Run python3 ../professional-brain/scripts/brain_query.py ./brain "<initiative theme>" and carry each fact's provenance tag through — an impact estimate is usually a [hunch], not [data].decisions/ and the reach/impact estimates as hypotheses/ tagged by evidence strength. Show them, get a yes, then write with ../professional-brain/scripts/brain_write.py … --commit (append-only, dry-run by default).Ask the user for these if not provided:
RICE Score = (Reach × Impact × Confidence) / Effort
This skill ships with a stdlib-only Python script that calculates and ranks RICE scores so the maths is consistent and the quick-win / moonshot flags are applied by rule, not by feel. Feed it the initiatives once R, I, C, and E are gathered.
# From a JSON file (confidence accepts 0.8 or 80)
python3 scripts/rice_calculator.py initiatives.json
# Or from a CSV with header: name,reach,impact,confidence,effort
python3 scripts/rice_calculator.py initiatives.csv --format csv
# Or piped in
echo '[{"name":"Onboarding","reach":5000,"impact":2,"confidence":0.8,"effort":3}]' \
| python3 scripts/rice_calculator.py -
It outputs a ranked table with computed RICE scores and auto-flags quick-win (strong score, low relative effort), moonshot (high impact, high effort), and low-confidence (≤50%) items. Use the computed ranking as the starting point, then apply the validation step below — never accept a surprising top rank without checking the estimates behind it.
| Initiative | Reach | Impact | Confidence | Effort | RICE Score | Notes |
|---|---|---|---|---|---|---|
| [name] | [n] | [score] | [%] | [months] | [score] | [flags] |
[Top 5 initiatives with rationale]
[Items to pick up alongside bigger bets]
[What information would most improve scoring accuracy]
npx claudepluginhub mohitagw15856/pm-claude-skills --plugin pm-planningQuantify and rank opportunities using the RICE framework (Reach, Impact, Confidence, Effort) to enable data-driven prioritization and trade-off discussions. Use when comparing diverse features, deciding what to build next, or allocating engineering time across initiatives.
Prioritizes lists of ideas, features, bugs, or initiatives using RICE framework (Reach × Impact × Confidence / Effort) with table ranking and recommendations. Use when deciding what to do first among options.
Scores and prioritizes feature lists or initiatives using RICE, ICE, or custom frameworks. Outputs ranked tables with scores, rationales, cut lines, and capacity recommendations.