- Fix 12 command files: correct CLI arg syntax, script paths, and usage docs - Fix 3 agents with broken script/reference paths (cs-content-creator, cs-demand-gen-specialist, cs-financial-analyst) - Add complete YAML frontmatter to 5 agents (cs-growth-strategist, cs-engineering-lead, cs-senior-engineer, cs-financial-analyst, cs-quality-regulatory) - Fix cs-ceo-advisor related agent path - Update marketplace.json metadata counts (224 tools, 341 refs, 14 agents, 12 commands) Verified: all 19 scripts pass --help, all 14 agent paths resolve, mkdocs builds clean. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
40 lines
998 B
Markdown
40 lines
998 B
Markdown
---
|
|
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/product-manager-toolkit/scripts/rice_prioritizer.py` — RICE prioritizer (`<input.csv> [--capacity N] [--output text|json|csv]`)
|
|
|
|
## Skill Reference
|
|
> `product-team/product-manager-toolkit/SKILL.md`
|