Product strategist

Strategic product leadership toolkit for Head of Product covering OKR cascade generation, quarterly planning, competitive landscape analysis, product vision documents, and team scaling proposals.

How to use it

Claude Code
  1. Run the line below. It pulls the whole folder into ~/.claude/skills/product-strategist, including the files SKILL.md points to.
  2. Describe your job in plain words. Claude Code follows the skill from there.
Claude Code — installs the whole folder, not just SKILL.md
npx degit alirezarezvani/claude-skills/product-team/skills/product-strategist#main ~/.claude/skills/product-strategist

For one project only, change the path to .claude/skills/product-strategist. This skill also uses okr_cascade_generator.py, okrs.json, q1_okrs.json — copying SKILL.md alone won't be enough. See the folder on GitHub.

Claude (web or desktop app)
  1. On this page open ⋯ → Download .md.
  2. Save it as SKILL.md in a folder, zip the folder, then Customize → Skills → + → Create skill → Upload a skill.
  3. Pick the file and Save. Claude shows the name and description and runs a security scan.
  4. Check the skill is switched on.
  5. Start a new chat and describe your job in plain words. The AI follows the skill from there.
ChatGPT or another app
  1. ChatGPT: make a Project and paste it into Instructions.
  2. Neither? Paste it at the top of a new chat — it works for that chat.
Not working?
  • Check which app you pasted it into — the steps above name the right one.
  • Some skills need the paid tier of Claude or ChatGPT.
Step-by-step guide with screenshots · Ask in the forum

Paste into Claude, ChatGPT or Cursor.

Source of Product strategist

Show the full text228 lines
namedescription
product-strategistStrategic product leadership toolkit for Head of Product covering OKR cascade generation, quarterly planning, competitive landscape analysis, product vision documents, and team scaling proposals. Use when creating quarterly OKR documents, defining product goals or KPIs, building product roadmaps, running competitive analysis, drafting team structure or hiring plans, aligning product strategy across engineering and design, or generating cascaded goal hierarchies from company to team level.

Product Strategist

Strategic toolkit for Head of Product to drive vision, alignment, and organizational excellence.


Core Capabilities

Capability Description Tool
OKR Cascade Generate aligned OKRs from company to team level okr_cascade_generator.py
Alignment Scoring Measure vertical and horizontal alignment Built into generator
Strategy Templates 5 pre-built strategy types Growth, Retention, Revenue, Innovation, Operational
Team Configuration Customize for your org structure --teams flag

Quick Start

# Growth strategy with default teams
python scripts/okr_cascade_generator.py growth

# Retention strategy with custom teams
python scripts/okr_cascade_generator.py retention --teams "Engineering,Design,Data"

# Revenue strategy with 40% product contribution
python scripts/okr_cascade_generator.py revenue --contribution 0.4

# Export as JSON for integration
python scripts/okr_cascade_generator.py growth --json > okrs.json

Workflow: Quarterly Strategic Planning

Step 1: Define Strategic Focus
Strategy When to Use
Growth Scaling user base, market expansion
Retention Reducing churn, improving LTV
Revenue Increasing ARPU, new monetization
Innovation Market differentiation, new capabilities
Operational Improving efficiency, scaling operations

See references/strategy_types.md for detailed guidance.

Step 2: Gather Input Metrics
{
  "current": 100000,      // Current MAU
  "target": 150000,       // Target MAU
  "current_nps": 40,      // Current NPS
  "target_nps": 60        // Target NPS
}
Step 3: Configure Teams & Run Generator
# Default teams
python scripts/okr_cascade_generator.py growth

# Custom org structure with contribution percentage
python scripts/okr_cascade_generator.py growth \
  --teams "Core,Platform,Mobile,AI" \
  --contribution 0.3
Step 4: Review Alignment Scores
Score Target Action if Below
Vertical Alignment >90% Ensure all objectives link to parent
Horizontal Alignment >75% Check for team coordination gaps
Coverage >80% Validate all company OKRs are addressed
Balance >80% Redistribute if one team is overloaded
Overall >80% <60% needs restructuring
Step 5: Refine, Validate, and Export

Before finalizing:

  • Review generated objectives with stakeholders
  • Adjust team assignments based on capacity
  • Validate contribution percentages are realistic
  • Ensure no conflicting objectives across teams
  • Set up tracking cadence (bi-weekly check-ins)
# Export JSON for tools like Lattice, Ally, Workboard
python scripts/okr_cascade_generator.py growth --json > q1_okrs.json

OKR Cascade Generator

Usage
python scripts/okr_cascade_generator.py [strategy] [options]

Strategies: growth | retention | revenue | innovation | operational

Configuration Options
Option Description Default
--teams, -t Comma-separated team names Growth,Platform,Mobile,Data
--contribution, -c Product contribution to company OKRs (0-1) 0.3 (30%)
--json, -j Output as JSON instead of dashboard False
--metrics, -m Metrics as JSON string Sample metrics
Output Examples
Dashboard Output (growth strategy)
============================================================
OKR CASCADE DASHBOARD
Quarter: Q1 2025  |  Strategy: GROWTH
Teams: Growth, Platform, Mobile, Data  |  Product Contribution: 30%
============================================================

🏢 COMPANY OKRS
📌 CO-1: Accelerate user acquisition and market expansion
   └─ CO-1-KR1: Increase MAU from 100,000 to 150,000
   └─ CO-1-KR2: Achieve 50% MoM growth rate
   └─ CO-1-KR3: Expand to 3 new markets

📌 CO-2: Achieve product-market fit in new segments
📌 CO-3: Build sustainable growth engine

🚀 PRODUCT OKRS
📌 PO-1: Build viral product features and market expansion
   ↳ Supports: CO-1
   └─ PO-1-KR1: Increase product MAU to 45,000
   └─ PO-1-KR2: Achieve 45% feature adoption rate

👥 TEAM OKRS
Growth Team:
  📌 GRO-1: Build viral product features through acquisition and activation
     └─ GRO-1-KR1: Increase product MAU to 11,250
     └─ GRO-1-KR2: Achieve 11.25% feature adoption rate

🎯 ALIGNMENT SCORES
✓ Vertical Alignment: 100.0%
! Horizontal Alignment: 75.0%
✓ Coverage: 100.0%  |  ✓ Balance: 97.5%  |  ✓ Overall: 94.0%
✅ Overall alignment is GOOD (≥80%)
JSON Output (retention --json, truncated)
{
  "quarter": "Q1 2025",
  "strategy": "retention",
  "company": {
    "objectives": [
      {
        "id": "CO-1",
        "title": "Create lasting customer value and loyalty",
        "key_results": [
          { "id": "CO-1-KR1", "title": "Improve retention from 70% to 85%", "current": 70, "target": 85 }
        ]
      }
    ]
  },
  "product": { "contribution": 0.3, "objectives": ["..."] },
  "teams": ["..."],
  "alignment_scores": {
    "vertical_alignment": 100.0, "horizontal_alignment": 75.0,
    "coverage": 100.0, "balance": 97.5, "overall": 94.0
  }
}

See references/examples/sample_growth_okrs.json for a complete example.


Reference Documents

Document Description
references/okr_framework.md OKR methodology, writing guidelines, alignment scoring
references/strategy_types.md Detailed breakdown of all 5 strategy types with examples
references/examples/sample_growth_okrs.json Complete sample output for growth strategy

Best Practices

OKR Cascade
  • Limit to 3-5 objectives per level, each with 3-5 key results
  • Key results must be measurable with current and target values
  • Validate parent-child relationships before finalizing
Alignment Scoring
  • Target >80% overall alignment; investigate any score below 60%
  • Balance scores ensure no team is overloaded
  • Horizontal alignment prevents conflicting goals across teams
Team Configuration
  • Configure teams to match your actual org structure
  • Adjust contribution percentages based on team size
  • Platform/Infrastructure teams often support all objectives
  • Specialized teams (ML, Data) may only support relevant objectives
  • Senior PM (project-management/senior-pm/) — Portfolio management and risk analysis inform strategic planning
  • Competitive Teardown (product-team/competitive-teardown/) — Competitive intelligence feeds product strategy
1---
2name: "product-strategist"
3description: Strategic product leadership toolkit for Head of Product covering OKR cascade generation, quarterly planning, competitive landscape analysis, product vision documents, and team scaling proposals. Use when creating quarterly OKR documents, defining product goals or KPIs, building product roadmaps, running competitive analysis, drafting team structure or hiring plans, aligning product strategy across engineering and design, or generating cascaded goal hierarchies from company to team level.
4---
5 
6# Product Strategist
7 
8Strategic toolkit for Head of Product to drive vision, alignment, and organizational excellence.
9 
10---
11 
12## Core Capabilities
13 
14| Capability | Description | Tool |
15|------------|-------------|------|
16| **OKR Cascade** | Generate aligned OKRs from company to team level | `okr_cascade_generator.py` |
17| **Alignment Scoring** | Measure vertical and horizontal alignment | Built into generator |
18| **Strategy Templates** | 5 pre-built strategy types | Growth, Retention, Revenue, Innovation, Operational |
19| **Team Configuration** | Customize for your org structure | `--teams` flag |
20 
21---
22 
23## Quick Start
24 
25```bash
26# Growth strategy with default teams
27python scripts/okr_cascade_generator.py growth
28 
29# Retention strategy with custom teams
30python scripts/okr_cascade_generator.py retention --teams "Engineering,Design,Data"
31 
32# Revenue strategy with 40% product contribution
33python scripts/okr_cascade_generator.py revenue --contribution 0.4
34 
35# Export as JSON for integration
36python scripts/okr_cascade_generator.py growth --json > okrs.json
37```
38 
39---
40 
41## Workflow: Quarterly Strategic Planning
42 
43### Step 1: Define Strategic Focus
44 
45| Strategy | When to Use |
46|----------|-------------|
47| **Growth** | Scaling user base, market expansion |
48| **Retention** | Reducing churn, improving LTV |
49| **Revenue** | Increasing ARPU, new monetization |
50| **Innovation** | Market differentiation, new capabilities |
51| **Operational** | Improving efficiency, scaling operations |
52 
53See `references/strategy_types.md` for detailed guidance.
54 
55### Step 2: Gather Input Metrics
56 
57```json
58{
59 "current": 100000, // Current MAU
60 "target": 150000, // Target MAU
61 "current_nps": 40, // Current NPS
62 "target_nps": 60 // Target NPS
63}
64```
65 
66### Step 3: Configure Teams & Run Generator
67 
68```bash
69# Default teams
70python scripts/okr_cascade_generator.py growth
71 
72# Custom org structure with contribution percentage
73python scripts/okr_cascade_generator.py growth \
74 --teams "Core,Platform,Mobile,AI" \
75 --contribution 0.3
76```
77 
78### Step 4: Review Alignment Scores
79 
80| Score | Target | Action if Below |
81|-------|--------|-----------------|
82| Vertical Alignment | >90% | Ensure all objectives link to parent |
83| Horizontal Alignment | >75% | Check for team coordination gaps |
84| Coverage | >80% | Validate all company OKRs are addressed |
85| Balance | >80% | Redistribute if one team is overloaded |
86| **Overall** | **>80%** | <60% needs restructuring |
87 
88### Step 5: Refine, Validate, and Export
89 
90Before finalizing:
91 
92- [ ] Review generated objectives with stakeholders
93- [ ] Adjust team assignments based on capacity
94- [ ] Validate contribution percentages are realistic
95- [ ] Ensure no conflicting objectives across teams
96- [ ] Set up tracking cadence (bi-weekly check-ins)
97 
98```bash
99# Export JSON for tools like Lattice, Ally, Workboard
100python scripts/okr_cascade_generator.py growth --json > q1_okrs.json
101```
102 
103---
104 
105## OKR Cascade Generator
106 
107### Usage
108 
109```bash
110python scripts/okr_cascade_generator.py [strategy] [options]
111```
112 
113**Strategies:** `growth` | `retention` | `revenue` | `innovation` | `operational`
114 
115### Configuration Options
116 
117| Option | Description | Default |
118|--------|-------------|---------|
119| `--teams`, `-t` | Comma-separated team names | Growth,Platform,Mobile,Data |
120| `--contribution`, `-c` | Product contribution to company OKRs (0-1) | 0.3 (30%) |
121| `--json`, `-j` | Output as JSON instead of dashboard | False |
122| `--metrics`, `-m` | Metrics as JSON string | Sample metrics |
123 
124### Output Examples
125 
126#### Dashboard Output (`growth` strategy)
127 
128```
129============================================================
130OKR CASCADE DASHBOARD
131Quarter: Q1 2025 | Strategy: GROWTH
132Teams: Growth, Platform, Mobile, Data | Product Contribution: 30%
133============================================================
134 
135🏢 COMPANY OKRS
136📌 CO-1: Accelerate user acquisition and market expansion
137 └─ CO-1-KR1: Increase MAU from 100,000 to 150,000
138 └─ CO-1-KR2: Achieve 50% MoM growth rate
139 └─ CO-1-KR3: Expand to 3 new markets
140 
141📌 CO-2: Achieve product-market fit in new segments
142📌 CO-3: Build sustainable growth engine
143 
144🚀 PRODUCT OKRS
145📌 PO-1: Build viral product features and market expansion
146 ↳ Supports: CO-1
147 └─ PO-1-KR1: Increase product MAU to 45,000
148 └─ PO-1-KR2: Achieve 45% feature adoption rate
149 
150👥 TEAM OKRS
151Growth Team:
152 📌 GRO-1: Build viral product features through acquisition and activation
153 └─ GRO-1-KR1: Increase product MAU to 11,250
154 └─ GRO-1-KR2: Achieve 11.25% feature adoption rate
155 
156🎯 ALIGNMENT SCORES
157✓ Vertical Alignment: 100.0%
158! Horizontal Alignment: 75.0%
159✓ Coverage: 100.0% | ✓ Balance: 97.5% | ✓ Overall: 94.0%
160✅ Overall alignment is GOOD (≥80%)
161```
162 
163#### JSON Output (`retention --json`, truncated)
164 
165```json
166{
167 "quarter": "Q1 2025",
168 "strategy": "retention",
169 "company": {
170 "objectives": [
171 {
172 "id": "CO-1",
173 "title": "Create lasting customer value and loyalty",
174 "key_results": [
175 { "id": "CO-1-KR1", "title": "Improve retention from 70% to 85%", "current": 70, "target": 85 }
176 ]
177 }
178 ]
179 },
180 "product": { "contribution": 0.3, "objectives": ["..."] },
181 "teams": ["..."],
182 "alignment_scores": {
183 "vertical_alignment": 100.0, "horizontal_alignment": 75.0,
184 "coverage": 100.0, "balance": 97.5, "overall": 94.0
185 }
186}
187```
188 
189See `references/examples/sample_growth_okrs.json` for a complete example.
190 
191---
192 
193## Reference Documents
194 
195| Document | Description |
196|----------|-------------|
197| `references/okr_framework.md` | OKR methodology, writing guidelines, alignment scoring |
198| `references/strategy_types.md` | Detailed breakdown of all 5 strategy types with examples |
199| `references/examples/sample_growth_okrs.json` | Complete sample output for growth strategy |
200 
201---
202 
203## Best Practices
204 
205### OKR Cascade
206 
207- Limit to 3-5 objectives per level, each with 3-5 key results
208- Key results must be measurable with current and target values
209- Validate parent-child relationships before finalizing
210 
211### Alignment Scoring
212 
213- Target >80% overall alignment; investigate any score below 60%
214- Balance scores ensure no team is overloaded
215- Horizontal alignment prevents conflicting goals across teams
216 
217### Team Configuration
218 
219- Configure teams to match your actual org structure
220- Adjust contribution percentages based on team size
221- Platform/Infrastructure teams often support all objectives
222- Specialized teams (ML, Data) may only support relevant objectives
223 
224## Related Skills
225 
226- **Senior PM** (`project-management/senior-pm/`) — Portfolio management and risk analysis inform strategic planning
227- **Competitive Teardown** (`product-team/competitive-teardown/`) — Competitive intelligence feeds product strategy
228 

Discussion

Alternatives

Also in Roadmap & prioritiesSee all 277 in Product →