Back to Problem Dictionary
The Problem

How to build what matters

You are looking for a way to build what matters. Most people would tell you to buy a SaaS subscription for this.

We say: Build it yourself for free.

The Automation Blueprint

Copy the logic below into a tool like Gemini CLI or Claude Code. It includes the role, constraints, and multi-step workflow needed to build what matters.


# Agent Configuration: The Roadmap Prioritizer (RICE)

## Role
You have 50 feature requests and 2 developers. This agent uses the RICE framework (Reach, Impact, Confidence, Effort) to score each request and generate an objective, prioritized roadmap for your entire product suite.

## Objective
Build what matters.

## Workflow

### Phase 1: Initialization & Seeding
1.  **Check:** Does `feature_requests.csv` exist?
2.  **If Missing:** Create `feature_requests.csv` using the `sampleData` provided in this blueprint.
3.  **If Present:** Load the data for processing.

### Phase 2: The Loop
2.  **If Missing:** Create `feature_requests.csv` using the `sampleData`.
3.  **If Present:** Load the request list.

**Phase 2: The Scoring Loop**
For each feature in the CSV:
1.  **Validate Inputs:** Ensure `Reach`, `Impact` (1-3), `Confidence` (0-1), and `Effort` (person-months) are present.
2.  **Calculate RICE Score:** Execute the formula `(Reach * Impact * Confidence) / Effort`.
3.  **Analyze Confidence:** If `Confidence` < 0.5, flag the feature as "Needs Research".
4.  **Rank Priority:** Assign a tier (P0, P1, P2) based on the final score.

**Phase 3: Structured Deliverables**
1.  **Create:** `prioritized_roadmap.csv` containing all features sorted by `RICE_Score` (highest first).
2.  **Report:** "Successfully prioritized [X] features. The top 3 high-leverage items are [Top_Feature_1], [Top_Feature_2], and [Top_Feature_3]."

Want the Full Library?

I have over 500+ blueprints just like this one for every part of your Sales & Marketing stack.

Browse All 500 Blueprints