
Product Manager Toolkit
Prioritize features with RICE, analyze customer interviews, and draft PRDs using bundled scripts and templates from discovery through delivery.
Overview
Product Manager Toolkit is an agent skill most often used in Build (also Idea research and Validate scope) that applies RICE prioritization, interview analysis, and PRD templates from discovery to delivery.
Install
npx skills add https://github.com/sickn33/antigravity-awesome-skills --skill product-manager-toolkitWhat is this skill?
- RICE prioritization CLI with sample CSV, capacity flags, and portfolio quick-wins vs big-bets framing
- Customer interview analyzer script for structured synthesis from transcript text
- PRD templates in references with stakeholder review and version-control workflow
- End-to-end feature prioritization process from intake through quarterly roadmap dependencies
- Core workflows spanning discovery inputs, scoring, portfolio analysis, and roadmap generation
- RICE scoring with reach, impact, confidence, and effort dimensions
- Quarterly capacity example flag --capacity 15
Adoption & trust: 2.9k installs on skills.sh; 40.1k GitHub stars; 3/3 security scanners passed (skills.sh audits).
What problem does it solve?
You have customer noise, sales asks, and tech debt lists but no disciplined way to score work and publish a PRD your agent can execute.
Who is it for?
Solo founders running a SaaS or agent product who need lightweight PM ops without Jira enterprise overhead.
Skip if: Large enterprise portfolio PMO programs or teams that already enforce a full OKR system with dedicated research ops.
When should I use this skill?
You need feature prioritization, interview synthesis, or PRD creation as part of modern product management from discovery to delivery.
What do I get? / Deliverables
You produce a RICE-ranked backlog, interview insights, and a templated PRD ready for stakeholder review and implementation planning.
- RICE-ranked CSV or report
- Interview analysis output
- Stakeholder-ready PRD from template
Recommended Skills
Journey fit
Spans multiple journey phases - primary shelf plus alternate fits below.
PM artifact production and roadmap mechanics sit on the Build shelf under pm even though discovery inputs start earlier in the journey. The pm subphase is where prioritization matrices, PRDs, and stakeholder-ready specs become the operating system for what gets built next.
Where it fits
Run interview analyzer on five founder calls to extract themes before committing to a build.
RICE-score prototype candidates against a 15-point capacity quarter to decide what to validate first.
Fill a PRD template from references and version it before handing features to your coding agent.
Re-score backlog items after support tickets reveal new reach numbers for retention work.
How it compares
Script-and-template PM skill rather than a hosted product analytics or roadmap SaaS.
Common Questions / FAQ
Who is product-manager-toolkit for?
Solo and indie builders who own product decisions end-to-end and want agent-assisted prioritization, interview synthesis, and PRD drafting.
When should I use product-manager-toolkit?
In Idea when synthesizing discovery, in Validate when scoping what to prototype, and in Build pm when scoring the backlog and locking a PRD before coding sprints.
Is product-manager-toolkit safe to install?
It includes local Python scripts over your CSVs and transcripts; review the Security Audits panel on this Prism page and audit scripts before running on sensitive customer data.
SKILL.md
READMESKILL.md - Product Manager Toolkit
# Product Manager Toolkit Essential tools and frameworks for modern product management, from discovery to delivery. ## Quick Start ### For Feature Prioritization ```bash python scripts/rice_prioritizer.py sample # Create sample CSV python scripts/rice_prioritizer.py sample_features.csv --capacity 15 ``` ### For Interview Analysis ```bash python scripts/customer_interview_analyzer.py interview_transcript.txt ``` ### For PRD Creation 1. Choose template from `references/prd_templates.md` 2. Fill in sections based on discovery work 3. Review with stakeholders 4. Version control in your PM tool ## Core Workflows ### Feature Prioritization Process 1. **Gather Feature Requests** - Customer feedback - Sales requests - Technical debt - Strategic initiatives 2. **Score with RICE** ```bash # Create CSV with: name,reach,impact,confidence,effort python scripts/rice_prioritizer.py features.csv ``` - **Reach**: Users affected per quarter - **Impact**: massive/high/medium/low/minimal - **Confidence**: high/medium/low - **Effort**: xl/l/m/s/xs (person-months) 3. **Analyze Portfolio** - Review quick wins vs big bets - Check effort distribution - Validate against strategy 4. **Generate Roadmap** - Quarterly capacity planning - Dependency mapping - Stakeholder alignment ### Customer Discovery Process 1. **Conduct Interviews** - Use semi-structured format - Focus on problems, not solutions - Record with permission 2. **Analyze Insights** ```bash python scripts/customer_interview_analyzer.py transcript.txt ``` Extracts: - Pain points with severity - Feature requests with priority - Jobs to be done - Sentiment analysis - Key themes and quotes 3. **Synthesize Findings** - Group similar pain points - Identify patterns across interviews - Map to opportunity areas 4. **Validate Solutions** - Create solution hypotheses - Test with prototypes - Measure actual vs expected behavior ### PRD Development Process 1. **Choose Template** - **Standard PRD**: Complex features (6-8 weeks) - **One-Page PRD**: Simple features (2-4 weeks) - **Feature Brief**: Exploration phase (1 week) - **Agile Epic**: Sprint-based delivery 2. **Structure Content** - Problem → Solution → Success Metrics - Always include out-of-scope - Clear acceptance criteria 3. **Collaborate** - Engineering for feasibility - Design for experience - Sales for market validation - Support for operational impact ## Key Scripts ### rice_prioritizer.py Advanced RICE framework implementation with portfolio analysis. **Features**: - RICE score calculation - Portfolio balance analysis (quick wins vs big bets) - Quarterly roadmap generation - Team capacity planning - Multiple output formats (text/json/csv) **Usage Examples**: ```bash # Basic prioritization python scripts/rice_prioritizer.py features.csv # With custom team capacity (person-months per quarter) python scripts/rice_prioritizer.py features.csv --capacity 20 # Output as JSON for integration python scripts/rice_prioritizer.py features.csv --output json ``` ### customer_interview_analyzer.py NLP-based interview analysis for extracting actionable insights. **Capabilities**: - Pain point extraction with severity assessment - Feature request identification and classification - Jobs-to-be-done pattern recognition - Sentiment analysis - Theme extraction - Competitor mentions - Key quotes identification **Usage Examples**: ```bash # Analyze single interview python scripts/customer_interview_analyzer.py interview.txt # Output as JSON for aggregation python scripts/customer_interview_analyzer.py interview.txt json ``` ## Reference Documents ### prd_templates.md Multiple PRD formats for diff