product-strategylisted
Install: claude install-skill kelegele/oh-my-pm
# Product Strategy
Define where to win, decide what to build, plan when to build it — 一条主线,一次成稿。
## Overview
策略三件套不是三个并列模块,而是一条数据流主线:
```
定位声明 → 战略权重 → 优先级排序 → 排期映射 → 路线图
```
1. **定位声明**:明确"为谁、以什么差异化取胜",并从中推导出**战略权重**(差异化主轴决定评分倾向)。
2. **优先级排序**:用战略权重校准 RICE/MoSCoW,产出带 rank 与类别的排序结果。
3. **路线图**:把排序结果按类别与容量约束映射为 Now/Next/Later 与季度里程碑,每个里程碑回溯到定位的价值主张。
上游改动沿主线传导:定位变 → 权重变 → 排序变 → 排期变,三份交付物始终一致。
## When to Use
Activate this skill when:
- 用户需要产品定位、差异化策略或价值主张("我们如何定位 X"、"我们有��么不同")
- 用户需要对待办事项排序、决定先构建什么("给这个排优先级"、"如何对这些排名")
- 用户需要产品路线图、里程碑或发布规划("创建路线图"、"下季度路线图")
- 制定季度/年度产品战略,或向干系人沟通产品方向
## How It Works
1. **汇总感知输入** — 读取市场、竞品、用户研究、需求澄清与反馈综合结果
2. **定位声明** — 定义 ICP、价值主张、差异化主轴,推导战略权重
3. **优先级排序** — 按权重校准的 RICE/MoSCoW 对候选事项打分排名
4. **路线图排期** — 按 rank、类别与容量约束把事项排入时间线
## Process Flow
```dot
digraph strategy {
"Aggregate perception inputs" [shape=box];
"Positioning statement" [shape=box];
"Derive strategic weights" [shape=box];
"Weighted RICE/MoSCoW scoring" [shape=box];
"Completeness gate" [shape=diamond];
"Write three deliverables" [shape=doublecircle];
"Aggregate perception inputs" -> "Positioning statement";
"Positioning statement" -> "Derive strategic weights";
"Derive strategic weights" -> "Weighted RICE/MoSCoW scoring";
"Weighted RICE/MoSCoW scoring" -> "Completeness gate";
"Completeness gate" -> "Positioning statement" [label="gaps, backfill"];
"Completeness gate" -> "Write three deliverables" [label="user confirmed"];
}