Command
/rice
RICE feature prioritization with scoring and capacity planning. Usage: /rice prioritize <features.csv> [options]
One command from claude-skills.
shell
$ npx -y skills add alirezarezvani/claude-skills --agent claude-codeShips with claude-skills. Installing the plugin gets this command.
How it fires
How this command gets triggered: by you, by Claude, or both.
- Fires itselfClaude auto-loads it when your prompt matches the work.
- You can call itInvoke it directly when you want it.
- Slash command
/rice
Context preview
What this command does when you run it.
RICE feature prioritization with scoring and capacity planning. Usage: /rice prioritize <features.csv> [options]
Stats
Stars23,056
Forks3,139
LanguagePython
LicenseMIT
Ships with claude-skills
Command definition
rice.md
--- name: rice description: "RICE feature prioritization with scoring and capacity planning. Usage: /rice prioritize <features.csv> [options]" --- # /rice Prioritize features using RICE scoring (Reach, Impact, Confidence, Effort) with optional capacity constraints. ## Usage ``` /rice prioritize <features.csv> Score and rank features /rice prioritize <features.csv> --capacity 20 Rank with effort capacity limit ``` ## Input Format ```csv feature,reach,impact,confidence,effort Dark mode,5000,2,0.8,3 API v2,12000,3,0.9,8 SSO integration,3000,2,0.7,5 Mobile app,20000,3,0.5,13 ``` ## Examples ``` /rice prioritize features.csv /rice prioritize features.csv --capacity 20 /rice prioritize features.csv --output json ``` ## Scripts - `product-team/skills/product-manager-toolkit/scripts/rice_prioritizer.py` — RICE prioritizer (`<input.csv> [--capacity N] [--output text|json|csv]`) ## Skill Reference > `product-team/skills/product-manager-toolkit/SKILL.md`
