27 KiB
Note
本文档由 WeHub 基于上游 README 翻译整理,属于社区翻译,非官方中文文档。
English · 原始项目 · 上游 README
原作者、版权与许可证归属以原始项目及本仓库 LICENSE 文件为准。
PM Skills Marketplace:面向更佳产品决策的 AI 操作系统
9 个插件内含 68 项 PM 技能与 42 条串联工作流。支持 Claude Code、Cowork 等。覆盖从发现、战略、执行、发布、增长到交付 AI 构建代码的全流程。
为 Claude Code 与 Cowork 设计。技能亦兼容其他 AI 助手。
从这里开始
有新想法?→ /discover
需要战略清晰度?→ /strategy
要写 PRD?→ /write-prd
规划发布?→ /plan-launch
定义指标?→ /north-star
若本项目对你有帮助,请为仓库点 ⭐。
为什么选择 PM Skills Marketplace?
通用 AI 只会给你文本。PM Skills Marketplace 给你结构。
每项技能都编码了一套经实践验证的 PM 框架——发现、假设映射、优先级排序、战略——并一步步引导你完成。Teresa Torres、Marty Cagan 与 Alberto Savoia 的严谨方法论将融入你的日常工作流,而非躺在书架上积灰。
结果是:更好的产品决策,而不只是更快的文档。
工作原理(技能、命令、插件)
技能(Skills) 是市场的基础构件。每项技能为 Claude 提供领域知识、分析框架,或针对特定 PM 任务的引导式工作流。部分技能还可作为多项命令共享的可复用基础。
技能会在与对话相关时自动加载——无需显式调用。如有需要(例如让技能优先于通用知识),可使用 /plugin-name:skill-name 或 /skill-name 强制加载技能(Claude 会自动添加前缀)。
命令(Commands) 是由用户触发的工作流,通过 /command-name 调用。它们将一项或多项技能串联为端到端流程。例如,/discover 将四项技能串联:brainstorm-ideas → identify-assumptions → prioritize-assumptions → brainstorm-experiments。
插件(Plugins) 将相关技能与命令分组为可安装包。每个插件覆盖一个 PM 领域——发现、战略、执行等。安装本市场即可一次性获得全部 9 个插件。
命令使用技能。部分技能服务于多条命令。部分技能(如 prioritization-frameworks 或 opportunity-solution-tree)是独立参考资料,Claude 在相关时随时调用——无需命令。
命令设计为可相互衔接,契合 PM 工作流。任意命令完成后,会推荐相关的下一步命令——按提示继续即可。
安装
Claude Cowork(推荐给非开发者)
- 打开 Customize(左下角)
- 进入 Browse plugins → Personal → +
- 选择 Add marketplace from GitHub
- 输入:
phuryn/pm-skills
全部 9 个插件将自动安装。你将同时获得命令(/discover、/strategy 等)与技能。
Claude Code(CLI)
# Step 1: Add the marketplace
claude plugin marketplace add phuryn/pm-skills
# Step 2: Install individual plugins
claude plugin install pm-toolkit@pm-skills
claude plugin install pm-product-strategy@pm-skills
claude plugin install pm-product-discovery@pm-skills
claude plugin install pm-market-research@pm-skills
claude plugin install pm-data-analytics@pm-skills
claude plugin install pm-marketing-growth@pm-skills
claude plugin install pm-go-to-market@pm-skills
claude plugin install pm-execution@pm-skills
claude plugin install pm-ai-shipping@pm-skills
Codex CLI(OpenAI)
Codex 读取与 Claude Code 相同的插件市场文件,因此可原生安装 PM Skills——无需转换或复制文件:
# Step 1: Add the marketplace
codex plugin marketplace add phuryn/pm-skills
# Step 2: Install the plugins you want
codex plugin add pm-toolkit@pm-skills
codex plugin add pm-product-strategy@pm-skills
codex plugin add pm-product-discovery@pm-skills
codex plugin add pm-market-research@pm-skills
codex plugin add pm-data-analytics@pm-skills
codex plugin add pm-marketing-growth@pm-skills
codex plugin add pm-go-to-market@pm-skills
codex plugin add pm-execution@pm-skills
codex plugin add pm-ai-shipping@pm-skills
你将获得: 每项技能(PM 框架)均可供 Codex 使用,并可按名称调用。请安装完整插件,而非逐个挑选技能——一条工作流通常依赖多个一并交付的技能。
与 Claude Code 的区别: /slash 命令(/discover、/write-prd、…)会安装但不会作为 Codex 斜杠命令运行——Codex 插件不暴露命令。要运行工作流,只需用自然语言描述步骤,例如:
对 [你的想法] 执行产品发现:头脑风暴选项、映射假设、优先处理高风险项,再设计实验——每步之间暂停。
可选——让 Codex 将工作流转换为技能。 由于命令文件随每个已安装插件一并提供,你可以让 Codex 转换你最常用的那些:
阅读 pm-execution 插件中的命令文件,并为我最常用的工作流创建等效的 Codex 技能。
这是尽力而为、由模型驱动的转换(部分 Claude 专有命令语法无法翻译),但无需离开 CLI 即可在 Codex 上快速获得引导式工作流。
其他 AI 助手(仅技能)
skills/*/SKILL.md 文件遵循通用技能格式,适用于任何能读取该格式的工具。命令(/slash-commands)为 Claude 专用。
| 工具 | 使用方法 | 可用内容 |
|---|---|---|
| Gemini CLI | 将技能文件夹复制到 .gemini/skills/ |
仅技能 |
| OpenCode | 将技能文件夹复制到 .opencode/skills/ |
仅技能 |
| Cursor | 将技能文件夹复制到 .cursor/skills/ |
仅技能 |
| Kiro | 将技能文件夹复制到 .kiro/skills/ |
仅技能 |
# Example: copy all skills for OpenCode (project-level)
for plugin in pm-*/; do
mkdir -p .opencode/skills/
cp -r "$plugin/skills/"* .opencode/skills/ 2>/dev/null
done
# Example: copy all skills for Gemini CLI (global)
for plugin in pm-*/; do
cp -r "$plugin/skills/"* ~/.gemini/skills/ 2>/dev/null
done
可用插件
1. pm-product-discovery — 创意构思、实验、假设检验、OST、访谈(13 项技能,5 条命令)
技能(13 项):
brainstorm-ideas-existing— 面向现有产品的多视角创意构思(PM、设计师、工程师)brainstorm-ideas-new— 初始发现阶段的新产品创意构思brainstorm-experiments-existing— 为现有产品设计实验以检验假设brainstorm-experiments-new— 为新产品设计精益创业预原型(pretotypes,Alberto Savoia)identify-assumptions-existing— 识别价值(Value)、可用性(Usability)、商业可行性(Viability)与可实现性(Feasibility)方面的风险假设identify-assumptions-new— 识别涵盖市场进入(Go-to-Market)、战略与团队等 8 类风险维度的风险假设prioritize-assumptions— 使用影响 × 风险矩阵对假设排序,并给出实验建议prioritize-features— 基于影响、投入、风险与战略契合度对功能待办列表排序analyze-feature-requests— 按主题与战略契合度分析并归类客户功能需求opportunity-solution-tree— 构建机会方案树(Opportunity Solution Tree,Teresa Torres)——成果 → 机会 → 方案 → 实验interview-script— 编写结构化客户访谈脚本,含 JTBD(Jobs to Be Done)探询问题summarize-interview— 将访谈记录摘要为 JTBD、满意度信号与行动项metrics-dashboard— 设计产品指标看板,含北极星指标、输入指标与告警阈值
命令(5):
/discover— 完整发现周期:创意构思 → 假设映射 → 优先级排序 → 实验设计/brainstorm— 多视角创意构思(ideas|experiments×existing|new)/triage-requests— 分析并为一组功能需求排定优先级/interview— 准备访谈脚本或总结访谈记录(prep|summarize)/setup-metrics— 设计产品指标仪表盘
示例:
技能(Skills):
What are the riskiest assumptions for our AI writing assistant idea?Help me build an Opportunity Solution Tree for improving user activationPrioritize these 12 feature requests from our enterprise customers [attach CSV]
命令(Commands):
/discover AI-powered meeting summarizer for remote teams/brainstorm experiments existing — We need to reduce churn in our onboarding flow/interview prep — We're interviewing enterprise buyers about their procurement workflow
2. pm-product-strategy — 愿景、商业模式、定价、竞争格局(12 个技能,5 个命令)
产品战略、愿景、商业模式、定价与宏观环境分析。涵盖从愿景构建到竞争格局扫描的完整战略工具包。
技能(12):
product-strategy— 全面的 9 部分产品战略画布(愿景 → 防御性)startup-canvas— 结合产品战略(9 部分)与商业模式的初创画布——新产品可替代 BMC 和 Lean Canvas 的方案product-vision— 制定鼓舞人心、可实现且富有情感共鸣的产品愿景value-proposition— 6 部分 JTBD(Jobs-to-be-Done)价值主张(谁、为何、之前是什么、如何、之后是什么、替代方案)lean-canvas— 面向初创公司与新产品的 Lean Canvas 商业模式business-model— 包含全部 9 个构建模块的 Business Model Canvas(商业模式画布)monetization-strategy— 头脑风暴 3–5 种变现策略并配套验证实验pricing-strategy— 定价模型、竞争分析、支付意愿(willingness-to-pay)与价格弹性swot-analysis— SWOT 分析及可执行建议pestle-analysis— 宏观环境:政治(Political)、经济(Economic)、社会(Social)、技术(Technological)、法律(Legal)、环境(Environmental)porters-five-forces— 竞争力量分析(同业竞争、供应商、买方、替代品、新进入者)ansoff-matrix— 跨市场与产品的增长战略映射
命令(5):
/strategy— 创建完整的 9 部分产品战略画布/business-model— 探索商业模式(lean|full|startup|value-prop|all)/value-proposition— 使用 6 部分 JTBD 模板设计价值主张/market-scan— 结合 SWOT + PESTLE + Porter's + Ansoff 的宏观环境分析/pricing— 结合竞争分析与实验设计定价策略
示例:
技能(Skills):
Compare Lean Canvas vs Business Model Canvas vs Startup Canvas for my marketplace startupDesign a value proposition for our AI writing assistant targeting non-native English speakersRun a Porter's Five Forces analysis for the project management SaaS market
命令(Commands):
/strategy B2B project management tool for agencies/business-model startup — AI writing tool for non-native English speakers/value-proposition SaaS onboarding tool for enterprise customers
3. pm-execution — PRD、OKR、路线图、冲刺、回顾、发布说明、利益相关方管理(16 个技能,11 个命令)
日常产品管理:PRD、OKR、路线图、冲刺、回顾、发布说明、事前复盘(pre-mortem)、利益相关方管理、用户故事与优先级框架。
技能(16):
create-prd— 全面的 8 部分 PRD 模板brainstorm-okrs— 与公司目标对齐的团队级 OKRoutcome-roadmap— 将功能列表转化为以成果为导向的路线图sprint-plan— 冲刺规划:容量估算、故事选择与风险识别retro— 结构化的冲刺回顾引导release-notes— 基于工单、PRD 或变更日志生成面向用户的发布说明pre-mortem— 风险分析,采用 Tigers/Paper Tigers/Elephants 分类法stakeholder-map— 权力 × 利益矩阵及定制化沟通计划summarize-meeting— 会议记录 → 决策 + 行动项user-stories— 遵循 3 C's 与 INVEST 准则的用户故事job-stories— Job stories:当 [situation] 时,我想要 [motivation],以便我能 [outcome]wwas— Why-What-Acceptance 格式的产品待办项test-scenarios— 测试场景:正常路径、边界情况、错误处理dummy-dataset— 逼真的模拟数据集,支持 CSV、JSON、SQL 或 Python 格式prioritization-frameworks— 9 种优先级框架参考指南(Opportunity Score、ICE、RICE、MoSCoW、Kano 等)strategy-red-team— 对抗式压力测试:识别承重假设、指出每项假设的失败条件,并按最低成本测试排序
命令(11):
/write-prd— 根据功能想法或问题陈述创建 PRD/plan-okrs— 头脑风暴团队级 OKR/transform-roadmap— 将基于功能的路线图转化为以成果为导向的路线图/sprint— 冲刺生命周期(plan|retro|release)/pre-mortem— 针对 PRD 或发布计划进行事前复盘风险分析/red-team-prd— 对 PRD、路线图或战略进行对抗式压力测试,并按最低成本测试对风险最高的假设排序/meeting-notes— 将会议记录总结为结构化笔记/stakeholder-map— 绘制利益相关方地图并制定沟通计划/write-stories— 将功能拆分为待办项(user|job|wwa)/test-scenarios— 根据用户故事生成测试场景/generate-data— 创建逼真的模拟数据集
示例:
技能(Skills):
Which prioritization framework should I use for a 50-item backlog?Map our stakeholders for the platform migration projectWhat's the difference between Opportunity Score, ICE, and RICE?
命令(Commands):
/write-prd Smart notification system that reduces alert fatigue/sprint retro — Here are the notes from our last sprint/write-stories job — Break down the "team dashboard" feature into job stories
4. pm-market-research — 用户画像、细分、旅程图、市场规模、竞品分析(7 个技能,3 个命令)
用户研究与竞争分析:用户画像、细分、旅程图、市场规模、竞品分析及反馈分析。
技能(7):
user-personas— 根据研究数据创建精细化的用户画像market-segments— 识别 3–5 个客户细分,包含人口统计、JTBD 与产品契合度user-segmentation— 基于行为、JTBD 与需求,从反馈数据中细分用户customer-journey-map— 端到端旅程图,包含阶段、触点、情绪与痛点market-sizing— TAM、SAM、SOM,支持自上而下与自下而上方法competitor-analysis— 竞品优势、劣势与差异化机会sentiment-analysis— 用户反馈的情感分析与主题提取
命令(3):
/research-users— 构建用户画像、细分用户并绘制客户旅程图/competitive-analysis— 分析竞争格局/analyze-feedback— 基于用户反馈进行情感分析与细分洞察
示例:
技能(Skills):
Estimate TAM/SAM/SOM for an AI code review tool in the US marketCreate a customer journey map for our e-commerce checkout flowSegment these survey respondents by behavior and needs [attach CSV]
命令(Commands):
/research-users We have interview data from 12 users of our fitness app/competitive-analysis Figma competitors in the design tool space/analyze-feedback Here's 200 NPS responses from Q4 [attach file]
5. pm-data-analytics — SQL 生成、队列分析、A/B 测试分析(3 个技能,3 个命令)
面向 PM 的数据分析:SQL 查询生成、群组(cohort)分析和 A/B 测试分析。
Skills(3):
sql-queries— 从自然语言生成 SQL(BigQuery、PostgreSQL、MySQL)cohort-analysis— 按群组分析留存曲线、功能采用率和参与度趋势ab-test-analysis— 统计显著性、样本量验证,以及上线/延长/停止建议
Commands(3):
/write-query— 从自然语言生成 SQL 查询/analyze-cohorts— 对用户参与数据进行群组分析/analyze-test— 分析 A/B 测试结果
Examples:
Skills:
How large a sample do I need for 95% confidence with a 2% MDE?What retention metrics should I track for a subscription app?
Commands:
/write-query Show me monthly active users by country for Q4 2025 (BigQuery)/analyze-test Here are the results from our checkout flow A/B test [attach CSV]/analyze-cohorts Weekly retention for users who signed up in January vs February
6. pm-go-to-market — 滩头阵地细分市场、ICP、信息传递、增长飞轮、GTM 打法、作战卡(6 skills,3 commands)
上市策略(Go-to-market):滩头阵地细分市场、理想客户画像(ICP)、信息传递、增长飞轮、GTM 打法和竞品作战卡。
Skills(6):
gtm-strategy— 完整 GTM 策略:渠道、信息传递、成功指标和发布计划beachhead-segment— 识别首个滩头阵地市场细分ideal-customer-profile— 含人口统计、行为、JTBD 和需求的 ICPgrowth-loops— 设计可持续增长飞轮(flywheels)gtm-motions— 评估 GTM 打法与工具(产品驱动、销售驱动等)competitive-battlecard— 可用于销售的作战卡,含异议处理和赢单策略
Commands(3):
/plan-launch— 从滩头阵地到发布计划的完整 GTM 策略/growth-strategy— 设计增长飞轮并评估 GTM 打法/battlecard— 创建竞品作战卡
Examples:
Skills:
What's the best beachhead segment for a developer productivity tool?Design a growth loop for a B2B SaaS with a freemium tierDefine our ICP for an AI-powered HR screening platform
Commands:
/plan-launch AI code review tool targeting mid-size engineering teams/battlecard Our CRM vs Salesforce for the SMB market/growth-strategy Two-sided marketplace for connecting freelancers with startups
7. pm-marketing-growth — 营销创意、定位、价值主张、命名、北极星指标(5 skills,2 commands)
产品营销与增长:营销创意、定位、价值主张陈述、产品命名和北极星指标(North Star metrics)。
Skills(5):
marketing-ideas— 富有创意、成本效益高的营销创意,含渠道和信息传递positioning-ideas— 与竞争对手差异化的产品定位value-prop-statements— 面向营销、销售和 onboarding 的价值主张陈述product-name— 与品牌价值观和受众一致的产品命名头脑风暴north-star-metric— 北极星指标(North Star Metric)+ 输入指标,含业务博弈分类
Commands(2):
/market-product— 头脑风暴营销创意、定位、价值主张和产品名称/north-star— 定义北极星指标及配套输入指标
Examples:
Skills:
Brainstorm 5 positioning angles that differentiate us from NotionWhat's a good North Star Metric for a two-sided marketplace?Generate value prop statements for our sales team's pitch deck
Commands:
/market-product B2B analytics dashboard for e-commerce managers/north-star Two-sided marketplace connecting freelancers with clients
8. pm-toolkit — 简历审阅、法律文档、校对(4 skills,5 commands)
核心产品工作之外的 PM 实用工具:简历审阅、法律文档和校对。
Skills(4):
review-resume— PM 简历审阅与定制,对照 10 项最佳实践(XYZ+S 公式、关键词、结构)draft-nda— 含适用司法管辖区条款的保密协议(Non-Disclosure Agreement)privacy-policy— 涵盖 GDPR/CCPA 合规的隐私政策grammar-check— 语法、逻辑与行文流畅性检查,并提供针对性修改
Commands(5):
/review-resume— 全面的 PM 简历审阅/tailor-resume— 针对特定职位描述定制简历/draft-nda— 起草 NDA/privacy-policy— 起草隐私政策/proofread— 检查语法、逻辑与行文流畅性
Examples:
Skills:
Review my PM resume against best practices [attach PDF]Check this product announcement for grammar and clarity
Commands:
/review-resume [attach your PM resume]/tailor-resume [attach resume + paste job description]/proofread Here's the draft of our Q1 investor update
9. pm-ai-shipping — AI Shipping Kit:记录 vibe-coded 应用、审计安全与性能、绘制测试覆盖图、汇编发布包(2 skills,5 commands)
面向对 AI 生成代码负责的产品经理和创始人。AI 智能体编码很快,却不留下意图记录——系统应做什么、谁可以做什么、密钥存放在哪里、哪些规则真正得到验证。本工具包恢复可审阅性:先记录系统,再审计文档所述与代码实际行为之间的差距——这类问题是通用扫描器会漏掉的。
Skills(2):
shipping-artifacts— 使 AI 构建应用可审阅的持久文档集:每个应用都需要的核心部分(架构、用户/权限流程、权限、变量/密钥、测试覆盖图),以及仅在适用时添加的条件文档(邮件、cron、SEO、嵌入式智能体/自动化)。定义每份文档必须记录的内容,以及审阅者如何使用它们intended-vs-implemented— 查找系统文档所述与代码实际行为之间差距的方法,并在两侧提供有据引用的证据
Commands(5):
/ship-check— 将 vibe-coded 代码库转化为可供审阅者使用的发布包:编写文档、接入智能体上下文、运行安全与性能审计、绘制测试覆盖图并汇编结果/document-app— 将代码库逆向工程为审阅者和审计员所需的系统文档——核心集(架构、流程、权限、变量)以及适用时的条件文档(邮件、cron、SEO、自动化)/derive-tests— 将文档化的意图转化为测试覆盖图:盘点现有测试、将其与拟议测试和未验证缺口分离,并推荐合并前必须通过(green-before-merge)的 CI 门禁/security-audit-static— 静态安全审计:绘制信任边界、交叉引用文档化意图、对每个发现进行自我反驳,仅报告有证据支撑的风险/performance-audit-static— 静态性能审计:发现 N+1 查询和请求瀑布、过度获取、缺失索引和缓存机会,按工作量与影响排序
Examples:
Skills:
What documentation does my Supabase app need before someone can review it?Where does what this code does diverge from what the docs say it should do?
Commands:
/ship-check the payments service/document-app — Reverse-engineer the system docs for this repo/derive-tests — Which documented rules have no test yet?/security-audit-static src/api
About
本市场随产品实践和 AI 能力不断演进。
精选技能参考了以下著作:
- Teresa Torres — Continuous Discovery Habits
- Marty Cagan — INSPIRED and TRANSFORMED
- Alberto Savoia — The Right It
- Dan Olsen — The Lean Product Playbook
- Roger L. Martin — Playing to Win
- Ash Maurya — Running Lean
- Strategyzer — Business Model Generation and Value Proposition Design
- Christina Wodtke — Radical Focus
- Anthony W. Ulwick — Jobs to Be Done
- Alistair Croll & Benjamin Yoskovitz — Lean Analytics
- Sean Ellis — Hacking Growth
- Maja Voje — Go-To-Market Strategist
由 Paweł Huryn 策划,来自 The Product Compass Newsletter.
与 PM Brain 组合使用
PM Brain 是产品经理的「第二大脑」(second brain)。就是你笔记本电脑文件夹里的普通 Markdown 文件。Claude 在回答前会读取它们,回答后会写入它们,每周五会整理一遍。无需向量数据库。无需云端。无需智能体记忆技巧。
贡献
请参阅 CONTRIBUTING.md。
Windows 已知问题
如果你的 Cowork 不稳定且无法启动 VM(claude-code/issues/27010),,请尝试:
$action = New-ScheduledTaskAction -Execute "powershell.exe" -Argument "-WindowStyle Hidden -Command `"if ((Get-Service CoworkVMService).Status -ne 'Running') { Start-Service CoworkVMService }`""
$trigger = New-ScheduledTaskTrigger -RepetitionInterval (New-TimeSpan -Minutes 1) -Once -At (Get-Date)
$settings = New-ScheduledTaskSettingsSet -AllowStartIfOnBatteries -DontStopIfGoingOnBatteries
Register-ScheduledTask -TaskName "CoworkVMServiceMonitor" `
-Action $action `
-Trigger $trigger `
-Settings $settings `
-RunLevel Highest `
-User "SYSTEM"
这能解决 Windows 上 90% 的问题。 其余 10%:打开 services.msc > 手动启动「Claude」服务
许可证
MIT — 详见 LICENSE。



