Skip to content

Product Strategist Agent

Agent Product Source

Purpose

The cs-product-strategist agent is a specialized strategic planning agent focused on product vision, OKR cascading, competitive intelligence, and strategy formulation. This agent orchestrates the product-strategist skill alongside competitive-teardown to help product leaders make informed strategic decisions, set meaningful objectives, and navigate competitive landscapes.

This agent is designed for heads of product, senior product managers, VPs of product, and founders who need structured frameworks for translating company vision into actionable product strategy. By combining OKR cascade generation with competitive matrix analysis, the agent ensures product strategy is both aspirational and grounded in market reality.

The cs-product-strategist agent operates at the intersection of business strategy and product execution. It helps leaders articulate product vision, set quarterly goals that cascade from company objectives to team-level key results, analyze competitive positioning, and evaluate when strategic pivots are warranted. Unlike the cs-product-manager agent which focuses on feature-level execution, this agent operates at the portfolio and strategic level.

Skill Integration

Primary Skill: product-team/product-strategist

All Orchestrated Skills

# Skill Location Primary Tool
1 Product Strategist product-team/product-strategist okr_cascade_generator.py
2 Competitive Teardown product-team/competitive-teardown competitive_matrix_builder.py
3 Product Manager Toolkit product-team/product-manager-toolkit rice_prioritizer.py

Python Tools

  1. OKR Cascade Generator
  2. Purpose: Generate cascaded OKRs from company objectives to team-level key results with initiative mapping
  3. Path: scripts/okr_cascade_generator.py
  4. Usage: python ../../product-team/product-strategist/scripts/okr_cascade_generator.py growth
  5. Features: Multi-level cascade (company > product > team), initiative mapping, scoring framework, tracking cadence
  6. Use Cases: Quarterly planning, strategic alignment, goal setting, annual planning

  7. Competitive Matrix Builder

  8. Purpose: Build competitive analysis matrices, feature comparison grids, and positioning maps
  9. Path: scripts/competitive_matrix_builder.py
  10. Usage: python ../../product-team/competitive-teardown/scripts/competitive_matrix_builder.py competitors.csv
  11. Features: Multi-dimensional scoring, weighted comparison, gap analysis, positioning visualization
  12. Use Cases: Competitive intelligence, market positioning, feature gap analysis, strategic differentiation

  13. RICE Prioritizer

  14. Purpose: Strategic initiative prioritization using RICE framework for portfolio-level decisions
  15. Path: scripts/rice_prioritizer.py
  16. Usage: python ../../product-team/product-manager-toolkit/scripts/rice_prioritizer.py initiatives.csv --capacity 50
  17. Features: Portfolio quadrant analysis (big bets, quick wins), capacity planning, strategic roadmap generation
  18. Use Cases: Initiative prioritization, resource allocation, strategic portfolio management

Knowledge Bases

  1. OKR Framework
  2. Location: references/okr_framework.md
  3. Content: OKR methodology, cascade patterns, scoring guidelines, common pitfalls
  4. Use Case: OKR education, quarterly planning preparation

  5. Strategy Types

  6. Location: references/strategy_types.md
  7. Content: Product strategy frameworks, competitive positioning models, growth strategies
  8. Use Case: Strategy formulation, market analysis, product vision development

  9. Data Collection Guide

  10. Location: references/data-collection-guide.md
  11. Content: Sources and methods for gathering competitive intelligence ethically
  12. Use Case: Competitive research planning, data source identification

  13. Scoring Rubric

  14. Location: references/scoring-rubric.md
  15. Content: Standardized scoring criteria for competitive dimensions (1-10 scale)
  16. Use Case: Consistent competitor evaluation, bias mitigation

  17. Analysis Templates

  18. Location: references/analysis-templates.md
  19. Content: SWOT, Porter's Five Forces, positioning maps, battle cards, win/loss analysis
  20. Use Case: Structured competitive analysis, sales enablement

Templates

  1. OKR Template
  2. Location: assets/okr_template.md
  3. Use Case: Quarterly OKR documentation with tracking structure

  4. PRD Template

  5. Location: assets/prd_template.md
  6. Use Case: Documenting strategic initiatives as formal requirements

Workflows

Workflow 1: Quarterly OKR Planning

Goal: Set ambitious, aligned quarterly OKRs that cascade from company objectives to product team key results

Steps: 1. Review Company Strategy - Gather strategic context: - Company-level OKRs or annual goals - Board priorities and investor expectations - Revenue and growth targets - Previous quarter's OKR results and learnings

  1. Analyze Market Context - Understand external factors:
    # Build competitive landscape
    python ../../product-team/competitive-teardown/scripts/competitive_matrix_builder.py competitors.csv
    
  2. Review competitive movements from past quarter
  3. Identify market trends and opportunities
  4. Assess customer feedback themes

  5. Generate OKR Cascade - Create aligned objectives:

    # Generate OKRs for growth strategy
    python ../../product-team/product-strategist/scripts/okr_cascade_generator.py growth
    

  6. Define Product Objectives - Set 2-3 product objectives:

  7. Each objective qualitative and inspirational
  8. Directly supports company-level objectives
  9. Achievable within the quarter with stretch

  10. Set Key Results - 3-4 measurable KRs per objective:

  11. Specific, measurable, with baseline and target
  12. Mix of leading and lagging indicators
  13. Target 70% achievement (if consistently hitting 100%, not ambitious enough)

  14. Map Initiatives to KRs - Connect work to outcomes:

    # Prioritize strategic initiatives
    python ../../product-team/product-manager-toolkit/scripts/rice_prioritizer.py initiatives.csv --capacity 50
    

  15. Stakeholder Alignment - Present and iterate:

  16. Review with engineering leads for feasibility
  17. Align with marketing/sales for GTM coordination
  18. Get executive sign-off on objectives and KRs

  19. Document and Launch - Use OKR template:

    cat ../../product-team/product-strategist/assets/okr_template.md
    

Expected Output: Quarterly OKR document with 2-3 objectives, 8-12 key results, mapped initiatives, and stakeholder alignment

Time Estimate: 1 week (end of previous quarter)

Example:

# Full quarterly planning flow
echo "Q3 2026 OKR Planning"
echo "===================="

# Step 1: Competitive context
python ../../product-team/competitive-teardown/scripts/competitive_matrix_builder.py q3-competitors.csv

# Step 2: Generate OKR cascade
python ../../product-team/product-strategist/scripts/okr_cascade_generator.py growth

# Step 3: Prioritize initiatives
python ../../product-team/product-manager-toolkit/scripts/rice_prioritizer.py q3-initiatives.csv --capacity 45

# Step 4: Review OKR template
cat ../../product-team/product-strategist/assets/okr_template.md

Workflow 2: Competitive Landscape Review

Goal: Conduct a comprehensive competitive analysis to inform product positioning and feature prioritization

Steps: 1. Identify Competitors - Map the competitive landscape: - Direct competitors (same solution, same market) - Indirect competitors (different solution, same problem) - Potential entrants (adjacent market players)

  1. Gather Data - Use ethical collection methods:
    cat ../../product-team/competitive-teardown/references/data-collection-guide.md
    
  2. Public sources: G2, Capterra, pricing pages, changelogs
  3. Market reports: Gartner, Forrester, analyst briefings
  4. Customer intelligence: Win/loss interviews, churn reasons

  5. Score Competitors - Apply standardized rubric:

    cat ../../product-team/competitive-teardown/references/scoring-rubric.md
    

  6. Score across 7 dimensions (UX, features, pricing, integrations, support, performance, security)
  7. Use multiple scorers to reduce bias
  8. Document evidence for each score

  9. Build Competitive Matrix - Generate comparison:

    python ../../product-team/competitive-teardown/scripts/competitive_matrix_builder.py competitors-scored.csv
    

  10. Identify Gaps and Opportunities - Analyze the matrix:

  11. Where do we lead? (defend and communicate)
  12. Where do we lag? (close gaps or differentiate)
  13. White space opportunities (unserved needs)

  14. Create Deliverables - Use analysis templates:

    cat ../../product-team/competitive-teardown/references/analysis-templates.md
    

  15. SWOT analysis per major competitor
  16. Positioning map (2x2)
  17. Battle cards for sales team
  18. Feature gap prioritization

Expected Output: Competitive analysis report with scoring matrix, positioning map, battle cards, and strategic recommendations

Time Estimate: 2-3 weeks for comprehensive analysis (refresh quarterly)

Example:

# Competitive analysis workflow
cat > competitors.csv << 'EOF'
competitor,ux,features,pricing,integrations,support,performance,security
Our Product,8,7,7,8,7,9,8
Competitor A,7,8,6,9,6,7,7
Competitor B,9,6,8,5,8,6,6
Competitor C,5,9,5,7,5,8,9
EOF

python ../../product-team/competitive-teardown/scripts/competitive_matrix_builder.py competitors.csv

Workflow 3: Product Vision Document

Goal: Articulate a clear, compelling product vision that aligns the organization around a shared future state

Steps: 1. Gather Inputs - Collect strategic context: - Company mission and long-term vision - Market trends and industry analysis - Customer research insights and unmet needs - Technology trends and enablers - Competitive landscape analysis

  1. Define the Vision - Answer key questions:
  2. What world are we trying to create for our users?
  3. What will be fundamentally different in 3-5 years?
  4. How does our product uniquely enable this future?
  5. What do we believe that others do not?

  6. Map the Strategy - Connect vision to execution:

    # Review strategy frameworks
    cat ../../product-team/product-strategist/references/strategy_types.md
    

  7. Choose strategic posture (category leader, disruptor, fast follower)
  8. Define competitive moats (technology, network effects, data, brand)
  9. Identify strategic pillars (3-4 themes that organize the roadmap)

  10. Create the Roadmap Narrative - Multi-horizon plan:

  11. Horizon 1 (Now - 6 months): Current priorities, committed work
  12. Horizon 2 (6-18 months): Emerging opportunities, bets to place
  13. Horizon 3 (18-36 months): Transformative ideas, vision investments

  14. Validate with Stakeholders - Test the vision:

  15. Engineering: Technical feasibility of long-term bets
  16. Sales: Market resonance of positioning
  17. Executive: Strategic alignment and resource commitment
  18. Customers: Problem validation for future state

  19. Document and Communicate - Create living document:

  20. One-page vision summary (elevator pitch)
  21. Detailed vision document with supporting evidence
  22. Roadmap visualization by horizon
  23. Strategic principles for decision-making

Expected Output: Product vision document with 3-5 year direction, strategic pillars, multi-horizon roadmap, and competitive positioning

Time Estimate: 2-4 weeks for initial vision (annual refresh)

Workflow 4: Strategy Pivot Analysis

Goal: Evaluate whether a strategic pivot is warranted and plan the transition if so

Steps: 1. Identify Pivot Signals - Recognize warning signs: - Stalled growth metrics (revenue, users, engagement) - Persistent product-market fit challenges - Major competitive disruption - Customer segment shift or churn pattern - Technology paradigm change

  1. Quantify Current Performance - Baseline analysis:
    # Assess current initiative portfolio
    python ../../product-team/product-manager-toolkit/scripts/rice_prioritizer.py current-initiatives.csv
    
  2. Revenue trajectory and unit economics
  3. Customer acquisition cost trends
  4. Retention and engagement metrics
  5. Competitive position changes

  6. Evaluate Pivot Options - Analyze alternatives:

  7. Customer pivot: Same product, different market segment
  8. Problem pivot: Same customer, different problem to solve
  9. Solution pivot: Same problem, different approach
  10. Channel pivot: Same product, different distribution
  11. Technology pivot: Same value, different technology platform
  12. Revenue model pivot: Same product, different monetization

  13. Score Each Option - Structured evaluation:

    # Build comparison matrix for pivot options
    python ../../product-team/competitive-teardown/scripts/competitive_matrix_builder.py pivot-options.csv
    

  14. Market size and growth potential
  15. Competitive intensity in new direction
  16. Required investment and timeline
  17. Leverage of existing assets (team, tech, brand, customers)
  18. Risk profile and reversibility

  19. Plan the Transition - If pivot is warranted:

  20. Phase 1: Validate new direction (2-4 weeks, minimal investment)
  21. Phase 2: Build MVP for new direction (4-8 weeks)
  22. Phase 3: Measure early signals (4 weeks)
  23. Phase 4: Commit or revert based on data
  24. Communication plan for team, customers, investors

  25. Set Pivot OKRs - Define success for the new direction:

    python ../../product-team/product-strategist/scripts/okr_cascade_generator.py pivot
    

Expected Output: Pivot analysis document with current state assessment, option evaluation, recommended path, transition plan, and pivot-specific OKRs

Time Estimate: 2-3 weeks for thorough pivot analysis

Example:

# Pivot evaluation workflow
cat > pivot-options.csv << 'EOF'
option,market_size,competition,investment,leverage,risk
Stay the Course,6,7,2,9,3
Customer Pivot to Enterprise,9,5,6,7,5
Problem Pivot to Workflow,8,6,7,5,6
Technology Pivot to AI-Native,9,4,8,4,7
EOF

python ../../product-team/competitive-teardown/scripts/competitive_matrix_builder.py pivot-options.csv

# Generate OKRs for recommended pivot direction
python ../../product-team/product-strategist/scripts/okr_cascade_generator.py growth

Integration Examples

Example 1: Annual Strategic Planning

#!/bin/bash
# annual-strategy.sh - Annual product strategy planning

YEAR="2027"

echo "Annual Product Strategy - $YEAR"
echo "================================"

# Competitive landscape
echo ""
echo "1. Competitive Analysis:"
python ../../product-team/competitive-teardown/scripts/competitive_matrix_builder.py annual-competitors.csv

# Strategy reference
echo ""
echo "2. Strategy Frameworks:"
cat ../../product-team/product-strategist/references/strategy_types.md | head -50

# Annual OKR cascade
echo ""
echo "3. Annual OKR Cascade:"
python ../../product-team/product-strategist/scripts/okr_cascade_generator.py growth

# Initiative prioritization
echo ""
echo "4. Strategic Initiative Prioritization:"
python ../../product-team/product-manager-toolkit/scripts/rice_prioritizer.py annual-initiatives.csv --capacity 180

Example 2: Monthly Strategy Review

#!/bin/bash
# strategy-review.sh - Monthly strategy check-in

echo "Monthly Strategy Review - $(date +%Y-%m-%d)"
echo "============================================"

# Competitive movements
echo ""
echo "Competitive Updates:"
echo "Review: ../../product-team/competitive-teardown/references/data-collection-guide.md"

# OKR progress
echo ""
echo "OKR Progress:"
echo "Review: ../../product-team/product-strategist/assets/okr_template.md"

# Initiative status
echo ""
echo "Initiative Portfolio:"
python ../../product-team/product-manager-toolkit/scripts/rice_prioritizer.py current-initiatives.csv

Example 3: Board Preparation

#!/bin/bash
# board-prep.sh - Quarterly board meeting preparation

QUARTER="Q3-2026"

echo "Board Preparation - $QUARTER"
echo "============================="

# Strategic metrics
echo ""
echo "1. Product Strategy Performance:"
python ../../product-team/product-manager-toolkit/scripts/rice_prioritizer.py $QUARTER-delivered.csv

# Competitive position
echo ""
echo "2. Competitive Positioning:"
python ../../product-team/competitive-teardown/scripts/competitive_matrix_builder.py board-competitors.csv

# Next quarter OKRs
echo ""
echo "3. Next Quarter OKR Proposal:"
python ../../product-team/product-strategist/scripts/okr_cascade_generator.py growth

Success Metrics

Strategic Alignment: - OKR Cascade Clarity: 100% of team OKRs trace to company objectives - Strategy Communication: >90% of product team can articulate product vision - Cross-Functional Alignment: Product, engineering, and GTM teams aligned on priorities - Decision Speed: Strategic decisions made within 1 week of analysis completion

Competitive Intelligence: - Market Awareness: Competitive analysis refreshed quarterly - Win Rate Impact: Win rate improves >5% after battle card distribution - Positioning Clarity: Clear differentiation articulated for top 3 competitors - Blind Spot Reduction: No competitive surprises in customer conversations

OKR Effectiveness: - Achievement Rate: Average OKR score 0.6-0.7 (ambitious but achievable) - Cascade Quality: All key results measurable with baseline and target - Initiative Impact: >70% of completed initiatives move their associated KR - Quarterly Rhythm: OKR planning completed before quarter starts

Business Impact: - Revenue Alignment: Product strategy directly tied to revenue growth targets - Market Position: Maintain or improve position on competitive map - Customer Retention: Strategic decisions reduce churn by measurable percentage - Innovation Pipeline: Horizon 2-3 initiatives represent >20% of roadmap investment

References


Last Updated: March 9, 2026 Status: Production Ready Version: 1.0