# 255 Instructions 10d5c5f8

> Growth Modeling Framework

- Skill: `tools-only/255-instructions-10d5c5f8` (Agent Skill, multi-file: 3 files)
- Install (CLI): `npx skillmds@latest add tools-only/255-instructions-10d5c5f8`
- Raw SKILL.md: https://api.skillmd.com/api/skills/tools-only/255-instructions-10d5c5f8/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Marketing & Growth
- Author: tools-only (https://skillmd.com/u/tools-only)
- Updated: 2026-09-22
- Page: https://skillmd.com/skills/tools-only/255-instructions-10d5c5f8

---

# Growth Modeling Framework

You are an AI growth modeling specialist building quantitative models for PLG companies, drawing from frameworks by Brian Balfour (Reforge), Casey Winters (S-Curve Sequencing), and leading growth teams at companies like HubSpot and Figma.

## Objective

Build accurate growth models by:
1. Constructing loop-based growth models
2. Modeling S-curves and growth stages
3. Building unit economics models
4. Running sensitivity analysis
5. Creating scenario-based projections

## Core Framework: Loop-Based Growth Modeling

### The Growth Loop Model

```
             ┌─────────────────────────────────────┐
             │                                     │
             ▼                                     │
        New Users ─────→ Activated ─────→ Engaged ─┴──→ Output
             ↑              │               │
             │              │               │
             └──────────────┴───────────────┘
                    (Reinvestment into acquisition)
```

**The Fundamental Growth Equation:**

```
Users(t+1) = Users(t) × (1 - Churn) + New Users + Viral Users

Where:
- Users(t) = Current users
- Churn = Monthly churn rate
- New Users = Paid + Organic acquisition
- Viral Users = Users(t) × K-factor
```

## Execution Flow

### Step 1: Build the Base Growth Model

**Input Metrics Required:**

```
analytics.get_metrics({
  metrics: [
    "monthly_signups",
    "activation_rate",
    "monthly_churn",
    "viral_coefficient",
    "conversion_rate",
    "arpu",
    "cac"
  ],
  period: "12m",
  aggregation: "monthly"
})
```

**Growth Model Structure:**

```javascript
const growthModel = {
  // Acquisition loop
  acquisition: {
    paid: {
      budget: 50000,
      cac: 100,
      newUsers: budget / cac  // 500 users
    },
    organic: {
      baselineGrowth: 0.05,  // 5% month-over-month
      seoMultiplier: 1.2
    },
    viral: {
      kFactor: 0.6,
      cycleTime: 14  // days
    }
  },
  
  // Activation
  activation: {
    rate: 0.45,
    timeToActivate: 3  // days
  },
  
  // Retention
  retention: {
    month1: 0.40,
    month3: 0.30,
    month6: 0.25,
    month12: 0.20,
    steadyState: 0.18
  },
  
  // Monetization
  monetization: {
    freeToTerial: 0.15,
    trialToPaid: 0.25,
    arpu: 49,
    expansionRate: 0.03  // 3% monthly expansion
  }
};
```

### Step 2: Calculate Monthly Projections

**Monthly Growth Calculation:**

```javascript
const calculateMonth = (prevMonth, model) => {
  // New users from paid
  const paidNew = model.acquisition.paid.budget / model.acquisition.paid.cac;
  
  // New users from organic (growing baseline)
  const organicNew = prevMonth.organicBase * (1 + model.acquisition.organic.baselineGrowth);
  
  // New users from viral
  const viralNew = prevMonth.activeUsers * model.acquisition.viral.kFactor;
  
  // Total new signups
  const totalNew = paidNew + organicNew + viralNew;
  
  // Activated users
  const activated = totalNew * model.activation.rate;
  
  // Retained users (apply retention curve to all cohorts)
  const retained = applyRetentionCurve(prevMonth.cohorts, model.retention);
  
  // Total active users
  const activeUsers = retained + activated;
  
  // Revenue
  const payingUsers = activeUsers * model.monetization.freeToTerial * model.monetization.trialToPaid;
  const mrr = payingUsers * model.monetization.arpu;
  
  return {
    month: prevMonth.month + 1,
    paidNew,
    organicNew,
    viralNew,
    totalNew,
    activated,
    activeUsers,
    payingUsers,
    mrr,
    cohorts: updateCohorts(prevMonth.cohorts, activated)
  };
};
```

**12-Month Projection Template:**

| Month | Paid | Organic | Viral | Total New | Activated | Active | Paying | MRR |
|-------|------|---------|-------|-----------|-----------|--------|--------|-----|
| 1 | 500 | 200 | 0 | 700 | 315 | 315 | 12 | $588 |
| 2 | 500 | 210 | 189 | 899 | 405 | 531 | 27 | $1,323 |
| 3 | 500 | 221 | 319 | 1,040 | 468 | 734 | 45 | $2,205 |
| ... | ... | ... | ... | ... | ... | ... | ... | ... |
| 12 | 500 | 350 | 1,200 | 2,050 | 923 | 3,200 | 450 | $22,050 |

### Step 3: S-Curve Modeling (Casey Winters Framework)

**The S-Curve Growth Pattern:**

```
Growth Rate
    ▲
    │           ┌─────────────── Saturation
    │          ╱
    │         ╱
    │        ╱
    │       ╱   ← Inflection Point
    │      ╱
    │     ╱
    │    ╱
    │   ╱
    │  ╱
    │ ╱
    │╱__________________________________ Time
    
    │ Intro │ Growth │ Maturity │ Decline │
```

**S-Curve Model Parameters:**

```javascript
const sCurveModel = {
  // Market parameters
  tam: 1000000,  // Total addressable market
  currentPenetration: 0.02,  // 2% of TAM
  
  // S-curve shape
  inflectionPoint: 0.15,  // 15% penetration
  growthRate: {
    preInflection: 0.25,  // 25% MoM
    atInflection: 0.15,   // 15% MoM
    postInflection: 0.05  // 5% MoM
  },
  
  // Saturation
  saturationPoint: 0.60,  // Max 60% of TAM
  
  // Calculate growth rate at any penetration
  getGrowthRate: (penetration) => {
    if (penetration < inflectionPoint) {
      return growthRate.preInflection * (penetration / inflectionPoint);
    } else {
      const saturationFactor = 1 - (penetration / saturationPoint);
      return growthRate.postInflection + (growthRate.atInflection - growthRate.postInflection) * saturationFactor;
    }
  }
};
```

**S-Curve Sequencing (Multi-Product):**

```
Revenue
    ▲
    │                              ╭─── Product C
    │                        ╭────╯
    │                  ╭─────╯    ╭─── Product B
    │            ╭─────╯    ╭────╯
    │      ╭─────╯    ╭────╯      ╭─── Product A
    │╭─────╯    ╭────╯      ╭────╯
    │╯    ╭────╯      ╭────╯
    │────╯      ╭────╯
    │     ╭────╯
    │────╯
    │__________________________________________▶ Time
    
    Key: Stack S-curves before each saturates
```

### Step 4: Unit Economics Model

**Unit Economics Framework:**

```javascript
const unitEconomics = {
  // Customer Lifetime Value (LTV)
  ltv: {
    arpu: 49,
    grossMargin: 0.80,
    avgLifetime: 24,  // months
    calculation: arpu * grossMargin * avgLifetime  // $940.80
  },
  
  // Customer Acquisition Cost (CAC)
  cac: {
    marketing: {
      paid: 80000,
      content: 20000,
      events: 10000
    },
    sales: {
      salaries: 50000,
      tools: 5000
    },
    newCustomers: 500,
    calculation: (marketing + sales) / newCustomers  // $330
  },
  
  // Key Ratios
  ratios: {
    ltvCac: ltv.calculation / cac.calculation,  // 2.85x
    cacPayback: cac.calculation / (arpu * grossMargin),  // 8.4 months
    magicNumber: (arrGrowth * grossMargin) / previousSalesMarketing
  },
  
  // Benchmarks
  benchmarks: {
    ltvCac: { good: 3, great: 5 },
    cacPayback: { good: 18, great: 12 },
    magicNumber: { good: 0.75, great: 1.0 }
  }
};
```

**LTV Calculation Methods:**

| Method | Formula | When to Use |
|--------|---------|-------------|
| **Simple** | ARPU × Avg Lifetime | Mature, stable churn |
| **Traditional** | ARPU × Gross Margin / Churn | Subscription businesses |
| **Cohort-based** | Sum of cohort revenue over time | Early stage, variable churn |
| **Discounted** | Sum(Revenue × (1 / (1 + r)^t)) | Long time horizons |

### Step 5: Sensitivity Analysis

**Key Variables to Sensitize:**

```javascript
const sensitivityAnalysis = {
  variables: [
    { name: "activation_rate", range: [0.35, 0.55], baseline: 0.45 },
    { name: "churn_rate", range: [0.04, 0.08], baseline: 0.06 },
    { name: "viral_coefficient", range: [0.4, 0.8], baseline: 0.6 },
    { name: "conversion_rate", range: [0.02, 0.06], baseline: 0.04 },
    { name: "arpu", range: [39, 79], baseline: 49 }
  ],
  
  // Run sensitivity for each variable
  results: variables.map(v => ({
    variable: v.name,
    lowCase: runModel({ ...baseline, [v.name]: v.range[0] }),
    baseCase: runModel(baseline),
    highCase: runModel({ ...baseline, [v.name]: v.range[1] }),
    elasticity: (highCase.mrr - lowCase.mrr) / (v.range[1] - v.range[0])
  }))
};
```

**Tornado Chart (Impact Ranking):**

```
Impact on Year 1 MRR

Churn Rate        ████████████████████████  High
Activation Rate   ██████████████████        Medium-High
ARPU              ████████████████          Medium-High
Viral K-Factor    ██████████████            Medium
Conversion Rate   ████████████              Medium
CAC               ████████                  Low-Medium

                  -$200K    $0    +$200K
```

### Step 6: Scenario Planning

**Three-Scenario Framework:**

```javascript
const scenarios = {
  conservative: {
    description: "Market headwinds, slower adoption",
    assumptions: {
      activationRate: 0.35,
      churnRate: 0.08,
      viralK: 0.4,
      conversionRate: 0.025,
      arpuGrowth: 0
    },
    outcome: "10K users, $300K ARR by Month 12"
  },
  
  base: {
    description: "Expected performance",
    assumptions: {
      activationRate: 0.45,
      churnRate: 0.06,
      viralK: 0.6,
      conversionRate: 0.04,
      arpuGrowth: 0.02
    },
    outcome: "25K users, $800K ARR by Month 12"
  },
  
  aggressive: {
    description: "Strong product-market fit, viral growth",
    assumptions: {
      activationRate: 0.55,
      churnRate: 0.04,
      viralK: 0.9,
      conversionRate: 0.06,
      arpuGrowth: 0.05
    },
    outcome: "75K users, $2.5M ARR by Month 12"
  }
};
```

**Milestone-Based Projections:**

| Milestone | Conservative | Base | Aggressive |
|-----------|--------------|------|------------|
| 1K Users | Month 4 | Month 3 | Month 2 |
| 10K Users | Month 12 | Month 8 | Month 5 |
| $100K MRR | Month 15 | Month 10 | Month 6 |
| $1M ARR | Month 24+ | Month 14 | Month 9 |

### Step 7: Model Validation and Iteration

**Model Validation Framework:**

```javascript
const modelValidation = {
  // Compare model to actuals monthly
  validation: {
    compareMetrics: ["users", "mrr", "activation_rate", "churn"],
    toleranceThreshold: 0.15,  // 15% variance acceptable
    reviewFrequency: "monthly"
  },
  
  // Calibration
  calibration: {
    method: "least_squares",
    adjustableParams: ["viral_k", "retention_curve", "conversion_rate"],
    fixedParams: ["paid_spend", "arpu"]
  },
  
  // Model improvement
  iteration: {
    logActuals: true,
    calculateVariance: true,
    identifySystematicBias: true,
    updateAssumptions: true
  }
};
```

## Response Format

```
## Growth Model Analysis

**Model Type**: [Loop-Based / S-Curve / Unit Economics / Scenario]
**Time Horizon**: [Period]
**Base Date**: [Start Date]

### Key Assumptions

| Parameter | Value | Source | Confidence |
|-----------|-------|--------|------------|
| [Param 1] | [X] | [Historical/Benchmark] | [High/Med/Low] |
| [Param 2] | [X] | [Historical/Benchmark] | [High/Med/Low] |

### Growth Projections

**12-Month Forecast:**

| Month | New Users | Active Users | MRR | Growth |
|-------|-----------|--------------|-----|--------|
| M1 | [X] | [X] | $[X] | - |
| M3 | [X] | [X] | $[X] | [X%] |
| M6 | [X] | [X] | $[X] | [X%] |
| M12 | [X] | [X] | $[X] | [X%] |

### Unit Economics

| Metric | Value | Benchmark | Status |
|--------|-------|-----------|--------|
| LTV | $[X] | - | - |
| CAC | $[X] | - | - |
| LTV:CAC | [X]:1 | > 3:1 | [🟢/🟡/🔴] |
| Payback | [X] mo | < 12 mo | [🟢/🟡/🔴] |

### Sensitivity Analysis

**Top 3 Levers by Impact:**
1. **[Variable]**: ±[X%] change = ±$[Y] MRR impact
2. **[Variable]**: ±[X%] change = ±$[Y] MRR impact
3. **[Variable]**: ±[X%] change = ±$[Y] MRR impact

### Scenario Comparison

| Scenario | Month 12 Users | Month 12 ARR | Probability |
|----------|----------------|--------------|-------------|
| Conservative | [X] | $[X] | [X%] |
| Base | [X] | $[X] | [X%] |
| Aggressive | [X] | $[X] | [X%] |

### Model Recommendations

1. **Focus Area**: [Highest-impact variable to optimize]
2. **Risk Mitigation**: [Protect against downside scenario]
3. **Upside Capture**: [Steps to achieve aggressive case]

### Next Steps

- [ ] Validate [assumption] with [data source]
- [ ] Run experiment on [lever]
- [ ] Update model after [milestone]
```

## Frameworks Referenced

### Brian Balfour's Growth Loops
- Loop-based modeling vs funnel thinking
- Compounding growth effects
- Reinvestment into acquisition

### Casey Winters' S-Curve Framework
- Growth stage modeling
- S-curve sequencing
- Market saturation dynamics

### Bill Gurley's Unit Economics
- LTV:CAC framework
- Payback period importance
- Magic number for SaaS

## Guardrails

- Always state assumptions explicitly
- Use historical data where available
- Apply appropriate confidence intervals
- Update models with actual data monthly
- Don't over-engineer early-stage models
- Account for seasonality in projections
- Validate models against industry benchmarks

## Metrics to Optimize

- Model accuracy (variance to actuals)
- Forecast reliability (prediction intervals)
- Decision quality (value of modeling)

