product-manager-toolkit

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

2|1|Updated Jan 29, 2026
One-click install
npx skills add https://github.com/bhaktofmahakal/ai-counsellor-hf --skill product-manager-toolkit-bhaktofmahakal
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: product-manager-toolkit
Source: https://github.com/bhaktofmahakal/ai-counsellor-hf/tree/main/.claude/skills/product-manager-toolkit
Command: npx skills add https://github.com/bhaktofmahakal/ai-counsellor-hf --skill product-manager-toolkit-bhaktofmahakal

SYSTEM DOCUMENTATION & REQUIREMENTS

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

What problem does it solve? Product managers struggle to objectively rank competing feature requests and extract consistent insights from customer interviews. This Skill replaces gut-feel prioritization with quantitative RICE scoring and turns raw interview transcripts into structured pain points, feature requests, and jobs-to-be-done. ## Core Features & Use Cases - RICE Feature Prioritization: Score features by Reach, Impact, Confidence, and Effort from a CSV file, with portfolio analysis identifying quick wins versus big bets and capacity-based quarterly roadmap generation. - Customer Interview Analysis: Parse interview transcripts to extract pain points with severity, feature requests with priority, jobs-to-be-done patterns, sentiment scores, key themes, and competitor mentions. - PRD Templates: Four ready-to-use formats (Standard PRD, One-Page PRD, Agile Epic, Feature Brief) covering problem definition, requirements, success metrics, and go-to-market planning. - Use Case: A PM with 15 feature requests and a 10 person-month quarterly capacity runs the RICE prioritizer to produce a ranked list and suggested quarterly roadmap, then analyzes five user interview transcripts to validate which pain points the top features actually address. ## Quick Start Ask the AI to prioritize your feature backlog by running the RICE prioritizer script on a CSV of features, or to analyze a customer interview transcript file for pain points and feature requests.

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 with the RICE framework?▼

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

How to analyze customer interview transcripts for insights?▼

Run customer_interview_analyzer.py on 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, metrics, 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). Running it with the 'sample' argument generates an example CSV.

Can the interview analyzer aggregate multiple interviews?▼

The script includes an aggregate_interviews function that combines multiple analyses to surface common pain points, recurring requests, overall sentiment distribution, top themes, and competitor mention counts across interviews.

What are the limitations of keyword-based interview analysis?▼

The analyzer uses keyword matching and regex patterns, so it can miss nuanced or implied feedback and may misclassify sarcasm or context-dependent statements. Treat results as a first-pass synthesis and verify key quotes against the original transcript.