product-manager-toolkit

Prioritize features with RICE scoring and analyze customer interview transcripts using Python scripts.

2|Updated Aug 15, 2025
One-click install
npx skills add https://github.com/Grupo-6-ADS-B/FittNutri --skill product-manager-toolkit-grupo-6-ads-b
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: product-manager-toolkit
Source: https://github.com/Grupo-6-ADS-B/FittNutri/tree/main/.claude/skills/product-manager
Command: npx skills add https://github.com/Grupo-6-ADS-B/FittNutri --skill product-manager-toolkit-grupo-6-ads-b

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) and references (resource) components.

What problem does it solve? Product managers struggle to objectively prioritize feature backlogs and extract actionable insights from customer interviews. This Skill automates RICE score calculation, portfolio analysis, roadmap generation, and interview transcript analysis so decisions are grounded in structured data rather than gut feeling. ## Core Features & Use Cases - RICE Prioritization: Calculate RICE scores from a CSV of features, analyze portfolio balance (quick wins vs big bets), and generate a quarterly roadmap based on team capacity. - Customer Interview Analysis: Extract pain points, feature requests, jobs-to-be-done, sentiment, key themes, and competitor mentions from interview transcripts. - PRD Templates: Choose from Standard PRD, One-Page PRD, Agile Epic, and Feature Brief templates in the references directory. - Use Case: You have 20 feature requests from sales and customers. Export them to a CSV with reach, impact, confidence, and effort values, run the RICE prioritizer with your team's quarterly capacity, and get a ranked roadmap showing which features fit in each quarter. ## Quick Start Ask the assistant to prioritize your feature backlog using the RICE framework by providing a CSV file with feature names, reach, impact, confidence, and effort values.

Frequently Asked Questions about product-manager-toolkit

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I prioritize features using the RICE framework?

Create a CSV file with columns for name, reach, impact, confidence, and effort, then run rice_prioritizer.py against it. The script calculates RICE scores as (Reach x Impact x Confidence) / Effort and outputs a ranked list with portfolio analysis.

How to analyze customer interview transcripts for insights?

Run customer_interview_analyzer.py with a plain-text transcript file. It extracts pain points with severity levels, feature requests with priority, jobs-to-be-done patterns, sentiment scores, key themes, and competitor mentions.

What input format does the RICE prioritizer require?

The prioritizer accepts a CSV file with columns: name, reach (users per quarter), impact (massive/high/medium/low/minimal), confidence (high/medium/low), and effort (xl/l/m/s/xs person-months). You can generate a sample CSV by passing 'sample' as the argument.

Can I export RICE prioritization results as JSON?

Yes, both scripts support JSON output. Pass --output json to rice_prioritizer.py or add 'json' as the second argument to customer_interview_analyzer.py for machine-readable results suitable for integration with other tools.

What are the limitations of automated interview analysis?

The analyzer uses keyword and pattern matching rather than deep language understanding, so it may miss nuanced insights or sarcasm. It works best as a first-pass screening tool, with human review recommended for final synthesis.