product-manager-toolkit by alirezarezvani/claude-skills
npx skills add https://github.com/alirezarezvani/claude-skills --skill product-manager-toolkit现代产品管理从探索到交付的必备工具与框架。
# 创建示例数据文件
python scripts/rice_prioritizer.py sample
# 根据团队容量运行优先级排序
python scripts/rice_prioritizer.py sample_features.csv --capacity 15
python scripts/customer_interview_analyzer.py interview_transcript.txt
references/prd_templates.md 中选择模板广告位招租
在这里展示您的产品或服务
触达数万 AI 开发者,精准高效
Gather → Score → Analyze → Plan → Validate → Execute
# 输入:包含功能的 CSV 文件
python scripts/rice_prioritizer.py features.csv --capacity 20
查看 references/frameworks.md 了解 RICE 公式和评分指南。
审查工具输出,关注:
在最终确定路线图之前:
Plan → Recruit → Interview → Analyze → Synthesize → Validate
references/frameworks.md)python scripts/customer_interview_analyzer.py transcript.txt
提取:
在构建之前:
references/frameworks.md)Scope → Draft → Review → Refine → Approve → Track
从 references/prd_templates.md 中选择:
| 模板 | 使用场景 | 时间线 |
|---|---|---|
| 标准 PRD | 复杂功能,跨团队 | 6-8 周 |
| 一页 PRD | 简单功能,单团队 | 2-4 周 |
| 功能简报 | 探索阶段 | 1 周 |
| 敏捷史诗 | 基于冲刺的交付 | 持续进行 |
发布后:
具有组合分析功能的高级 RICE 框架实现。
功能:
CSV 输入格式:
name,reach,impact,confidence,effort,description
User Dashboard Redesign,5000,high,high,l,Complete redesign
Mobile Push Notifications,10000,massive,medium,m,Add push support
Dark Mode,8000,medium,high,s,Dark theme option
命令:
# 创建示例数据
python scripts/rice_prioritizer.py sample
# 使用默认容量运行(10 人月)
python scripts/rice_prioritizer.py features.csv
# 自定义容量
python scripts/rice_prioritizer.py features.csv --capacity 20
# JSON 输出用于集成
python scripts/rice_prioritizer.py features.csv --output json
# CSV 输出用于电子表格
python scripts/rice_prioritizer.py features.csv --output csv
基于 NLP 的访谈分析,用于提取可操作的洞察。
能力:
命令:
# 分析访谈记录
python scripts/customer_interview_analyzer.py interview.txt
# JSON 输出用于聚合
python scripts/customer_interview_analyzer.py interview.txt json
→ 查看 references/input-output-examples.md 了解详情
兼容的工具和平台:
| 类别 | 平台 |
|---|---|
| 分析 | Amplitude, Mixpanel, Google Analytics |
| 路线图规划 | ProductBoard, Aha!, Roadmunk, Productplan |
| 设计 | Figma, Sketch, Miro |
| 开发 | Jira, Linear, GitHub, Asana |
| 研究 | Dovetail, UserVoice, Pendo, Maze |
| 沟通 | Slack, Notion, Confluence |
JSON 导出支持与大多数工具的集成:
# 导出用于 Jira 导入
python scripts/rice_prioritizer.py features.csv --output json > priorities.json
# 导出用于仪表板
python scripts/customer_interview_analyzer.py interview.txt json > insights.json
| 陷阱 | 描述 | 预防措施 |
|---|---|---|
| 解决方案先行 | 在理解问题之前就跳转到功能 | 每个 PRD 都以问题陈述开始 |
| 分析瘫痪 | 过度研究而不交付 | 为研究阶段设置时间限制 |
| 功能工厂 | 发布功能而不衡量影响 | 在构建前定义成功指标 |
| 忽视技术债务 | 不为平台健康分配时间 | 预留 20% 容量用于维护 |
| 利益相关者意外 | 未能及早且经常沟通 | 每周异步更新,每月演示 |
| 指标剧场 | 优化虚荣指标而非真实价值 | 将指标与交付的用户价值挂钩 |
撰写优秀的 PRD:
有效的优先级排序:
客户探索:
# 优先级排序
python scripts/rice_prioritizer.py features.csv --capacity 15
# 访谈分析
python scripts/customer_interview_analyzer.py interview.txt
# 生成示例数据
python scripts/rice_prioritizer.py sample
# JSON 输出
python scripts/rice_prioritizer.py features.csv --output json
python scripts/customer_interview_analyzer.py interview.txt json
references/prd_templates.md - 适用于不同场景的 PRD 模板references/frameworks.md - 详细的框架文档(RICE、MoSCoW、Kano、JTBD 等)每周安装量
217
代码仓库
GitHub 星标数
4.1K
首次出现
2026年1月20日
安全审计
安装于
claude-code184
opencode170
gemini-cli167
codex153
cursor146
github-copilot136
Essential tools and frameworks for modern product management, from discovery to delivery.
# Create sample data file
python scripts/rice_prioritizer.py sample
# Run prioritization with team capacity
python scripts/rice_prioritizer.py sample_features.csv --capacity 15
python scripts/customer_interview_analyzer.py interview_transcript.txt
references/prd_templates.mdGather → Score → Analyze → Plan → Validate → Execute
# Input: CSV with features
python scripts/rice_prioritizer.py features.csv --capacity 20
See references/frameworks.md for RICE formula and scoring guidelines.
Review the tool output for:
Before finalizing the roadmap:
Plan → Recruit → Interview → Analyze → Synthesize → Validate
references/frameworks.md)python scripts/customer_interview_analyzer.py transcript.txt
Extracts:
Before building:
references/frameworks.md)Scope → Draft → Review → Refine → Approve → Track
Select from references/prd_templates.md:
| Template | Use Case | Timeline |
|---|---|---|
| Standard PRD | Complex features, cross-team | 6-8 weeks |
| One-Page PRD | Simple features, single team | 2-4 weeks |
| Feature Brief | Exploration phase | 1 week |
| Agile Epic | Sprint-based delivery | Ongoing |
After launch:
Advanced RICE framework implementation with portfolio analysis.
Features:
CSV Input Format:
name,reach,impact,confidence,effort,description
User Dashboard Redesign,5000,high,high,l,Complete redesign
Mobile Push Notifications,10000,massive,medium,m,Add push support
Dark Mode,8000,medium,high,s,Dark theme option
Commands:
# Create sample data
python scripts/rice_prioritizer.py sample
# Run with default capacity (10 person-months)
python scripts/rice_prioritizer.py features.csv
# Custom capacity
python scripts/rice_prioritizer.py features.csv --capacity 20
# JSON output for integration
python scripts/rice_prioritizer.py features.csv --output json
# CSV output for spreadsheets
python scripts/rice_prioritizer.py features.csv --output csv
NLP-based interview analysis for extracting actionable insights.
Capabilities:
Commands:
# Analyze interview transcript
python scripts/customer_interview_analyzer.py interview.txt
# JSON output for aggregation
python scripts/customer_interview_analyzer.py interview.txt json
→ See references/input-output-examples.md for details
Compatible tools and platforms:
| Category | Platforms |
|---|---|
| Analytics | Amplitude, Mixpanel, Google Analytics |
| Roadmapping | ProductBoard, Aha!, Roadmunk, Productplan |
| Design | Figma, Sketch, Miro |
| Development | Jira, Linear, GitHub, Asana |
| Research | Dovetail, UserVoice, Pendo, Maze |
| Communication | Slack, Notion, Confluence |
JSON export enables integration with most tools:
# Export for Jira import
python scripts/rice_prioritizer.py features.csv --output json > priorities.json
# Export for dashboard
python scripts/customer_interview_analyzer.py interview.txt json > insights.json
| Pitfall | Description | Prevention |
|---|---|---|
| Solution-First | Jumping to features before understanding problems | Start every PRD with problem statement |
| Analysis Paralysis | Over-researching without shipping | Set time-boxes for research phases |
| Feature Factory | Shipping features without measuring impact | Define success metrics before building |
| Ignoring Tech Debt | Not allocating time for platform health | Reserve 20% capacity for maintenance |
| Stakeholder Surprise | Not communicating early and often | Weekly async updates, monthly demos |
| Metric Theater | Optimizing vanity metrics over real value | Tie metrics to user value delivered |
Writing Great PRDs:
Effective Prioritization:
Customer Discovery:
# Prioritization
python scripts/rice_prioritizer.py features.csv --capacity 15
# Interview Analysis
python scripts/customer_interview_analyzer.py interview.txt
# Generate sample data
python scripts/rice_prioritizer.py sample
# JSON outputs
python scripts/rice_prioritizer.py features.csv --output json
python scripts/customer_interview_analyzer.py interview.txt json
references/prd_templates.md - PRD templates for different contextsreferences/frameworks.md - Detailed framework documentation (RICE, MoSCoW, Kano, JTBD, etc.)Weekly Installs
217
Repository
GitHub Stars
4.1K
First Seen
Jan 20, 2026
Security Audits
Gen Agent Trust HubPassSocketPassSnykPass
Installed on
claude-code184
opencode170
gemini-cli167
codex153
cursor146
github-copilot136
开源项目教练指南 - 诊断问题、制定行动计划、优化开源项目运营
31,600 周安装
色彩可访问性指南:WCAG对比度标准、色盲模拟与最佳实践
212 周安装
AgentOps技能转换器 - 一键将技能转换为Codex、Cursor等AI平台格式
212 周安装
Agile Skill Build:快速创建和扩展ace-skills的自动化工具,提升AI技能开发效率
1 周安装
LLM评估工具lm-evaluation-harness使用指南:HuggingFace模型基准测试与性能分析
212 周安装
Agently TriggerFlow 状态与资源管理:runtime_data、flow_data 和运行时资源详解
1 周安装
Agently Tools 工具系统详解:Python 代理工具注册、循环控制与内置工具使用
1 周安装