ワンクリックで
feature-prioritizer
Evaluate and prioritize product features using RICE, ICE, and Value vs Effort frameworks with visual matrices
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Evaluate and prioritize product features using RICE, ICE, and Value vs Effort frameworks with visual matrices
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
| name | feature-prioritizer |
| description | Evaluate and prioritize product features using RICE, ICE, and Value vs Effort frameworks with visual matrices |
The Feature Prioritizer skill helps AI Product Managers make data-driven decisions about what to build next. It applies multiple prioritization frameworks (RICE, ICE, Value vs. Effort), generates comparison matrices, and provides strategic recommendations for feature roadmapping.
{
"features": [
{
"name": "string",
"description": "string",
"reach": "number (users affected per quarter)",
"impact": "number (0.25-3.0 scale)",
"confidence": "number (0.0-1.0 scale)",
"effort": "number (person-months)",
"strategic_alignment": "number (1-5 scale, optional)",
"dependencies": ["list of feature names, optional"],
"risk_level": "string (low/medium/high, optional)"
}
],
"company_priorities": {
"growth_weight": "number (0.0-1.0, optional)",
"retention_weight": "number (0.0-1.0, optional)",
"monetization_weight": "number (0.0-1.0, optional)"
},
"constraints": {
"max_effort_per_quarter": "number (optional)",
"required_features": ["list, optional"]
}
}
Prioritize these features using RICE: [list 3-5 features with reach, impact, confidence, effort]
I need to prioritize my feature backlog for Q1 planning. Here are the features:
1. AI-powered search - 50K users, high impact (2.0), 80% confidence, 4 months effort
2. Mobile app dark mode - 100K users, low impact (0.5), 95% confidence, 1 month effort
3. Advanced analytics dashboard - 10K users, massive impact (3.0), 60% confidence, 6 months effort
4. Social sharing - 75K users, medium impact (1.0), 70% confidence, 2 months effort
Company priorities: 60% growth, 30% retention, 10% monetization
Constraint: Maximum 8 person-months available
Generate RICE scores, ICE scores, value vs. effort matrix, and recommend Q1 roadmap.
Before Prioritization:
user-research-analyzer → Understand user needscompetitive-analyzer → Know market dynamicsmetrics-dashboard-builder → Define success metricsDuring Prioritization:
feature-prioritizer) → Score and rank featuresAfter Prioritization:
prd-generator → Create PRDs for top featuresroadmap-planner → Build visual roadmapstakeholder-communicator → Explain priorities and trade-offsFormula: (Reach × Impact × Confidence) / Effort
When to use:
Strengths:
Limitations:
Formula: (Impact + Confidence + Ease) / 3
When to use:
Strengths:
Limitations:
Quadrants:
When to use:
calculate_rice(reach: int, impact: float, confidence: float, effort: float) -> floatCalculates RICE prioritization score.
calculate_ice(impact: float, confidence: float, ease: float) -> floatCalculates ICE prioritization score.
generate_value_effort_matrix(features: list) -> dictCreates 2x2 matrix categorizing features into quadrants.
apply_strategic_weights(features: list, weights: dict) -> listAdjusts scores based on company strategic priorities.
identify_dependencies(features: list) -> dictMaps feature dependencies and suggests build order.
generate_roadmap_scenarios(features: list, constraints: dict) -> listCreates different roadmap options based on resource constraints.
assess_portfolio_balance(features: list) -> dictAnalyzes if feature mix balances growth, retention, technical debt, etc.
## Feature Prioritization Results
### RICE Scores (Ranked)
| Rank | Feature | Reach | Impact | Confidence | Effort | RICE Score |
|------|---------|-------|--------|------------|--------|------------|
| 1 | Feature A | 50,000 | 2.0 | 80% | 4 | 20.0 |
| 2 | Feature B | 100,000 | 0.5 | 95% | 1 | 47.5 |
### Value vs. Effort Matrix
│
High │ [Big Bets] [Quick Wins] │ Feature A Feature B VALUE│ │ [Time Sinks] [Fill Ins] Low │ Feature C Feature D │ └───────────────────────────── High Low EFFORT
### Strategic Recommendations
**Build Now (Q1)**:
1. Feature B - Quick win with massive reach
2. Feature A - Strategic bet, high impact
**Defer to Q2**:
- Feature D - Low value, wait for capacity
**Cut from Roadmap**:
- Feature C - Time sink, recommend alternative approach
prd-generator for creating specs for prioritized featuresroadmap-planner for visual roadmap creationuser-research-analyzer for validating impact assumptionsstakeholder-communicator for explaining priority decisionsVersion: 1.0.0
Last Updated: November 2025
Skill Type: Analytical (with Python)
Complexity: Intermediate