ventureos 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (96) hide show
  1. package/README.md +149 -0
  2. package/SETUP.md +193 -0
  3. package/_memory/venture-state.yaml +142 -0
  4. package/agents/business-architect.md +76 -0
  5. package/agents/customer-discovery.md +112 -0
  6. package/agents/domain-explorer.md +77 -0
  7. package/agents/financial-analyst.md +76 -0
  8. package/agents/growth-strategist.md +78 -0
  9. package/agents/pitch-master.md +115 -0
  10. package/agents/product-strategist.md +79 -0
  11. package/agents/venture-evaluator.md +116 -0
  12. package/agents/venture-ops.md +76 -0
  13. package/config.yaml +33 -0
  14. package/install.js +274 -0
  15. package/package.json +43 -0
  16. package/scoring/gate-rubric.yaml +100 -0
  17. package/scoring/pain-scoring.yaml +63 -0
  18. package/scoring/pivot-triggers.yaml +73 -0
  19. package/techniques/brainstorming-techniques.csv +14 -0
  20. package/techniques/synthetic-tools.csv +14 -0
  21. package/templates/business-model-canvas.md +151 -0
  22. package/templates/concept-card.md +84 -0
  23. package/templates/conversion-analysis.md +129 -0
  24. package/templates/ecosystem-map.md +120 -0
  25. package/templates/experiment-plan.md +124 -0
  26. package/templates/financial-model.md +144 -0
  27. package/templates/gate-evaluation.md +199 -0
  28. package/templates/icp-profile.md +114 -0
  29. package/templates/interview-script.md +114 -0
  30. package/templates/interview-synthesis.md +114 -0
  31. package/templates/market-experiment.md +146 -0
  32. package/templates/market-sizing.md +128 -0
  33. package/templates/messaging-infrastructure.md +129 -0
  34. package/templates/monetisation-plan.md +101 -0
  35. package/templates/mothership-asset-map.md +109 -0
  36. package/templates/pain-atomization.md +101 -0
  37. package/templates/pain-hypothesis.md +67 -0
  38. package/templates/pain-journey-map.md +108 -0
  39. package/templates/pitch-deck.md +272 -0
  40. package/templates/pivot-log.md +117 -0
  41. package/templates/pricing-model.md +118 -0
  42. package/templates/product-roadmap.md +101 -0
  43. package/templates/sales-process-map.md +117 -0
  44. package/templates/solution-feasibility.md +122 -0
  45. package/templates/stakeholder-map.md +94 -0
  46. package/templates/team-charter.md +75 -0
  47. package/templates/value-proposition.md +107 -0
  48. package/templates/venture-canvas.md +74 -0
  49. package/templates/venture-killer-risks.md +112 -0
  50. package/templates/vision-story.md +89 -0
  51. package/templates/wedge-definition.md +114 -0
  52. package/venture-master.md +126 -0
  53. package/workflow-engine.md +111 -0
  54. package/workflows/0-explore/domain-deep-dive/instructions.xml +137 -0
  55. package/workflows/0-explore/domain-deep-dive/workflow.yaml +46 -0
  56. package/workflows/1-setup-team/mothership-alignment/instructions.xml +89 -0
  57. package/workflows/1-setup-team/mothership-alignment/workflow.yaml +28 -0
  58. package/workflows/1-setup-team/team-formation/instructions.xml +89 -0
  59. package/workflows/1-setup-team/team-formation/workflow.yaml +30 -0
  60. package/workflows/2-understand-market/market-mapping/instructions.xml +101 -0
  61. package/workflows/2-understand-market/market-mapping/workflow.yaml +29 -0
  62. package/workflows/2-understand-market/stakeholder-identification/instructions.xml +90 -0
  63. package/workflows/2-understand-market/stakeholder-identification/workflow.yaml +28 -0
  64. package/workflows/3-find-pain/customer-pain-discovery/step-1-pain-hypothesis.md +92 -0
  65. package/workflows/3-find-pain/customer-pain-discovery/step-2-interviews.md +104 -0
  66. package/workflows/3-find-pain/customer-pain-discovery/step-3-synthesis.md +120 -0
  67. package/workflows/3-find-pain/customer-pain-discovery/step-4-pain-atomization.md +138 -0
  68. package/workflows/3-find-pain/customer-pain-discovery/step-5-pain-journey-map.md +150 -0
  69. package/workflows/3-find-pain/customer-pain-discovery/workflow.md +82 -0
  70. package/workflows/4-define-solution/feasibility-assessment/instructions.xml +81 -0
  71. package/workflows/4-define-solution/feasibility-assessment/workflow.yaml +29 -0
  72. package/workflows/4-define-solution/wedge-design/step-1-wedge-hypothesis.md +66 -0
  73. package/workflows/4-define-solution/wedge-design/step-2-value-propositions.md +81 -0
  74. package/workflows/4-define-solution/wedge-design/step-3-prototype.md +78 -0
  75. package/workflows/4-define-solution/wedge-design/step-4-solution-testing.md +107 -0
  76. package/workflows/4-define-solution/wedge-design/workflow.md +69 -0
  77. package/workflows/5-business-case/checkin-pitch/step-1-evidence-compilation.md +78 -0
  78. package/workflows/5-business-case/checkin-pitch/step-2-pitch-creation.md +87 -0
  79. package/workflows/5-business-case/checkin-pitch/step-3-nvb-review.md +111 -0
  80. package/workflows/5-business-case/checkin-pitch/workflow.md +49 -0
  81. package/workflows/5-business-case/initial-business-case/instructions.xml +83 -0
  82. package/workflows/5-business-case/initial-business-case/workflow.yaml +28 -0
  83. package/workflows/6-design-business/business-model-design/instructions.xml +82 -0
  84. package/workflows/6-design-business/business-model-design/workflow.yaml +32 -0
  85. package/workflows/6-design-business/final-pitch/step-1-narrative.md +73 -0
  86. package/workflows/6-design-business/final-pitch/step-2-slides.md +121 -0
  87. package/workflows/6-design-business/final-pitch/step-3-excalidraw.md +92 -0
  88. package/workflows/6-design-business/final-pitch/step-4-nvb-final-review.md +121 -0
  89. package/workflows/6-design-business/final-pitch/workflow.md +46 -0
  90. package/workflows/6-design-business/market-experiments/step-1-gtm-plan.md +66 -0
  91. package/workflows/6-design-business/market-experiments/step-2-landing-page.md +94 -0
  92. package/workflows/6-design-business/market-experiments/step-3-pilot-engagement.md +82 -0
  93. package/workflows/6-design-business/market-experiments/step-4-measure.md +114 -0
  94. package/workflows/6-design-business/market-experiments/workflow.md +44 -0
  95. package/workflows/venture-status/instructions.xml +97 -0
  96. package/workflows/venture-status/workflow.yaml +24 -0
@@ -0,0 +1,124 @@
1
+ # Operating & Experiment Plan
2
+ <!-- Venture Ops / Growth Strategist Agent — Phase 5: Initial Business Case -->
3
+ <!-- Purpose: Define the experiment and operating plan for the next phase of incubation -->
4
+
5
+ ## Context
6
+ - **Venture:**
7
+ - **Plan Period:** Weeks ___ to ___
8
+ - **Date:**
9
+ - **Phase:** [ ] Check-in (preparing for Phase 6) [ ] Post-check-in (executing Phase 6)
10
+
11
+ ---
12
+
13
+ ## Phase Objectives
14
+
15
+ What we need to prove by the end of this plan period:
16
+ 1.
17
+ 2.
18
+ 3.
19
+
20
+ ---
21
+
22
+ ## Experiments to Run
23
+
24
+ ### Experiment 1: [Name]
25
+
26
+ | Field | Value |
27
+ |-------|-------|
28
+ | **Hypothesis** | We believe [what we expect to happen] because [rationale] |
29
+ | **Experiment** | We will [specific action to run] |
30
+ | **Success Metric** | If we see [specific measurable outcome] within [timeframe] |
31
+ | **Failure Indicator** | If we see [alternative outcome], the hypothesis is wrong |
32
+ | **Type** | [ ] Landing page [ ] Pilot outreach [ ] Paid ads [ ] Demo [ ] Prototype test |
33
+ | **Owner** | |
34
+ | **Timeline** | Start: ___ End: ___ |
35
+ | **Budget Required** | |
36
+ | **Status** | [ ] Planned [ ] Running [ ] Complete |
37
+ | **Result** | |
38
+
39
+ ---
40
+
41
+ ### Experiment 2: [Name]
42
+
43
+ | Field | Value |
44
+ |-------|-------|
45
+ | **Hypothesis** | |
46
+ | **Experiment** | |
47
+ | **Success Metric** | |
48
+ | **Failure Indicator** | |
49
+ | **Type** | |
50
+ | **Owner** | |
51
+ | **Timeline** | |
52
+ | **Budget Required** | |
53
+ | **Status** | |
54
+ | **Result** | |
55
+
56
+ ---
57
+
58
+ ### Experiment 3: [Name]
59
+ _(repeat structure)_
60
+
61
+ ---
62
+
63
+ ## KPIs for This Plan Period
64
+
65
+ | KPI | Target | Current | Status |
66
+ |-----|--------|---------|--------|
67
+ | # Customer interviews conducted | | | |
68
+ | # Pilot customer conversations | | | |
69
+ | Landing page conversion rate | | | |
70
+ | # Demo meetings | | | |
71
+ | Pain validation score (FIP avg) | | | |
72
+ | Desirability score | | | |
73
+
74
+ ---
75
+
76
+ ## Pilot Customer Pipeline
77
+
78
+ _(B2B: target accounts to engage before the final gate)_
79
+
80
+ | Company | Contact | Role | Status | Next Action | Date |
81
+ |---------|---------|------|--------|------------|------|
82
+ | | | | Prospect | | |
83
+ | | | | Outreach sent | | |
84
+ | | | | Demo scheduled | | |
85
+ | | | | Pilot agreed | | |
86
+
87
+ **Target:** ___ pilot customers engaged by end of plan period
88
+
89
+ ---
90
+
91
+ ## Operational Plan
92
+
93
+ ### Weeks ___ to ___: [Theme]
94
+
95
+ | Week | Key Activities | Owner | Output |
96
+ |------|--------------|-------|--------|
97
+ | | | | |
98
+ | | | | |
99
+
100
+ ### Resource Requirements
101
+
102
+ | Resource | What's Needed | Source | Status |
103
+ |---------|--------------|--------|--------|
104
+ | Budget | | Mothership / External | |
105
+ | Legal / IP review | | | |
106
+ | Technology access | | | |
107
+ | Partner intro | | | |
108
+
109
+ ---
110
+
111
+ ## Decisions Needed from NVB / Sponsor
112
+
113
+ | Decision | Context | Needed By |
114
+ |---------|---------|----------|
115
+ | | | |
116
+ | | | |
117
+
118
+ ---
119
+
120
+ ## Plan Risk Flags
121
+
122
+ | Risk | Likelihood | Impact | Owner | Action |
123
+ |------|-----------|--------|-------|--------|
124
+ | | | | | |
@@ -0,0 +1,144 @@
1
+ # Financial Model
2
+ <!-- Financial Analyst Agent — Phase 6 -->
3
+ <!-- Purpose: 3-5 year financial projections with unit economics and funding requirements -->
4
+ <!-- Assumption labels: [sourced] = from data | [benchmarked] = from comparables | [assumed] = requires validation -->
5
+
6
+ ## Context
7
+ - **Venture:**
8
+ - **Date:**
9
+ - **Model Version:** v___
10
+ - **Scenarios Modeled:** Conservative / Base / Upside
11
+
12
+ ---
13
+
14
+ ## Key Assumptions
15
+
16
+ | Assumption | Conservative | Base | Upside | Label |
17
+ |-----------|-------------|------|--------|-------|
18
+ | ACV ($/year per customer) | $ | $ | $ | |
19
+ | Gross Margin | % | % | % | |
20
+ | Monthly customer growth rate | % | % | % | |
21
+ | Churn rate (annual) | % | % | % | |
22
+ | CAC | $ | $ | $ | |
23
+ | Sales cycle length | months | months | months | |
24
+ | Time to first revenue | month | month | month | |
25
+
26
+ ---
27
+
28
+ ## Unit Economics
29
+
30
+ | Metric | Value | Label | Notes |
31
+ |--------|-------|-------|-------|
32
+ | ACV | $ | | |
33
+ | Gross Margin | % | | |
34
+ | LTV = ACV × GM% / Churn rate | $ | | |
35
+ | CAC | $ | | |
36
+ | LTV:CAC Ratio | | | Target: >3x |
37
+ | Payback Period | months | | |
38
+ | Customer Contribution (Year 1) | $ | | LTV - CAC |
39
+
40
+ ---
41
+
42
+ ## Revenue Projections (Base Case)
43
+
44
+ | Month | New Customers | Churned | Total Customers | MRR | ARR |
45
+ |-------|-------------|---------|----------------|-----|-----|
46
+ | Month 1 | | | | $ | $ |
47
+ | Month 3 | | | | $ | $ |
48
+ | Month 6 | | | | $ | $ |
49
+ | Month 12 | | | | $ | $ |
50
+ | Month 18 | | | | $ | $ |
51
+ | Month 24 | | | | $ | $ |
52
+ | Month 36 | | | | $ | $ |
53
+
54
+ ---
55
+
56
+ ## Revenue by Stream
57
+
58
+ | Stream | Year 1 | Year 2 | Year 3 |
59
+ |--------|--------|--------|--------|
60
+ | Primary (subscription) | $ | $ | $ |
61
+ | Secondary stream 2 | $ | $ | $ |
62
+ | Secondary stream 3 | $ | $ | $ |
63
+ | **Total Revenue** | $ | $ | $ |
64
+
65
+ ---
66
+
67
+ ## Cost Structure
68
+
69
+ ### Fixed Costs (per month)
70
+
71
+ | Cost Item | Month 1-6 | Month 7-12 | Year 2 | Year 3 |
72
+ |-----------|----------|-----------|--------|--------|
73
+ | Salaries & benefits | $ | $ | $ | $ |
74
+ | Technology infrastructure | $ | $ | $ | $ |
75
+ | Office / operations | $ | $ | $ | $ |
76
+ | Legal & compliance | $ | $ | $ | $ |
77
+ | **Total Fixed** | $ | $ | $ | $ |
78
+
79
+ ### Variable Costs (per customer / per month)
80
+
81
+ | Cost Item | $ per customer | Notes |
82
+ |-----------|---------------|-------|
83
+ | Cloud / hosting | $ | |
84
+ | Third-party APIs | $ | |
85
+ | Customer support | $ | |
86
+ | Payment processing | $ | |
87
+ | **Total Variable per Customer** | $ | |
88
+
89
+ ### Sales & Marketing Spend
90
+
91
+ | Period | Budget | # Customers Acquired | Blended CAC |
92
+ |--------|--------|---------------------|------------|
93
+ | Year 1 | $ | | $ |
94
+ | Year 2 | $ | | $ |
95
+ | Year 3 | $ | | $ |
96
+
97
+ ---
98
+
99
+ ## P&L Summary (Base Case)
100
+
101
+ | Line Item | Year 1 | Year 2 | Year 3 |
102
+ |----------|--------|--------|--------|
103
+ | Total Revenue | $ | $ | $ |
104
+ | Cost of Revenue (COGS) | $ | $ | $ |
105
+ | **Gross Profit** | $ | $ | $ |
106
+ | **Gross Margin** | % | % | % |
107
+ | Sales & Marketing | $ | $ | $ |
108
+ | R&D / Product | $ | $ | $ |
109
+ | G&A | $ | $ | $ |
110
+ | **Total OpEx** | $ | $ | $ |
111
+ | **EBITDA** | $ | $ | $ |
112
+ | **Net Income** | $ | $ | $ |
113
+
114
+ ---
115
+
116
+ ## Cash Flow & Funding Requirements
117
+
118
+ | Metric | Value |
119
+ |--------|-------|
120
+ | Monthly burn rate (Year 1) | $ |
121
+ | Months of runway (current) | ___ months |
122
+ | Break-even month | Month ___ |
123
+ | Total capital required to break-even | $ |
124
+ | Capital required to reach next milestone | $ |
125
+
126
+ **Use of proceeds:**
127
+ | Item | Amount | % of Raise |
128
+ |------|--------|-----------|
129
+ | Product development | $ | % |
130
+ | Sales & marketing | $ | % |
131
+ | Operations | $ | % |
132
+ | Working capital | $ | % |
133
+
134
+ ---
135
+
136
+ ## Scenario Comparison (Year 3 ARR)
137
+
138
+ | Scenario | ARR | Customers | Gross Margin | Break-Even Month |
139
+ |---------|-----|-----------|-------------|-----------------|
140
+ | Conservative | $ | | % | |
141
+ | Base | $ | | % | |
142
+ | Upside | $ | | % | |
143
+
144
+ **Key swing factor between base and upside:**
@@ -0,0 +1,199 @@
1
+ # Gate Evaluation Scorecard
2
+ <!-- Venture Evaluator Agent — Phase 5 (Check-in) and Phase 6 (Final) -->
3
+ <!-- Rubric: See data/scoring/gate-rubric.yaml -->
4
+
5
+ ## Evaluation Context
6
+ - **Venture:**
7
+ - **Gate Type:** [ ] Check-in Gate (~Week 8) [ ] Final Gate (~Week 12)
8
+ - **Date:**
9
+ - **Evaluator:** Venture Evaluator (AI-simulated NVB)
10
+
11
+ > **Note for Check-in Gate:** Focus evaluation on Customer Pain Validation, Market Opportunity, and Wedge Clarity. Traction/Experiments and full Business Model are not yet expected.
12
+
13
+ ---
14
+
15
+ ## Criteria Scoring
16
+
17
+ ### 1. Customer Pain Validation (Weight: 20%)
18
+
19
+ | Score | Interpretation |
20
+ |-------|---------------|
21
+ | 5 | Strong quantitative pain scores across 20+ interviews; FIP data clear; buyer and user both identified |
22
+ | 4 | Good pain evidence from 10-20 interviews; pain atomization complete; ICP defined |
23
+ | 3 | Some interview evidence; pain hypothesis partially validated; ICP emerging |
24
+ | 2 | Minimal interviews; pain mostly hypothetical; ICP unclear |
25
+ | 1 | No customer interviews; pain assumed, not validated |
26
+
27
+ **Score assigned:** ___ / 5
28
+ **Evidence cited:**
29
+ **Key gaps:**
30
+
31
+ ---
32
+
33
+ ### 2. Market Opportunity Size (Weight: 15%)
34
+
35
+ | Score | Interpretation |
36
+ |-------|---------------|
37
+ | 5 | Large, fast-growing market (TAM >$1B); clear SAM/SOM; barriers identified and manageable |
38
+ | 4 | Solid market ($500M-$1B TAM); growing; some barriers identified |
39
+ | 3 | Moderate market ($100M-$500M TAM); moderate growth |
40
+ | 2 | Small or unclear market (<$100M TAM); slow growth |
41
+ | 1 | Tiny market or no sizing done |
42
+
43
+ **Score assigned:** ___ / 5
44
+ **Evidence cited:**
45
+ **Key gaps:**
46
+
47
+ ---
48
+
49
+ ### 3. Wedge Clarity & Differentiation (Weight: 15%)
50
+
51
+ | Score | Interpretation |
52
+ |-------|---------------|
53
+ | 5 | Crystal clear wedge; strong tested value prop; validated differentiation; wedge-to-vision hypothesis articulated |
54
+ | 4 | Clear wedge with tested value props; some differentiation evidence |
55
+ | 3 | Wedge defined but not yet fully tested; differentiation assumed |
56
+ | 2 | Vague wedge; value props untested |
57
+ | 1 | No wedge defined |
58
+
59
+ **Score assigned:** ___ / 5
60
+ **Evidence cited:**
61
+ **Key gaps:**
62
+
63
+ ---
64
+
65
+ ### 4. Business Model & Revenue Viability (Weight: 15%)
66
+ _(Final gate only — for check-in, note if not yet expected)_
67
+
68
+ | Score | Interpretation |
69
+ |-------|---------------|
70
+ | 5 | Multiple validated revenue streams; pricing tested; monetisation plan clear; unit economics positive |
71
+ | 4 | Revenue model defined; pricing strategy developed; basic unit economics |
72
+ | 3 | Revenue model selected; pricing exploratory |
73
+ | 2 | Revenue model vague; no pricing work |
74
+ | 1 | No business model thinking |
75
+
76
+ **Score assigned:** ___ / 5 _(or N/A for check-in gate)_
77
+ **Evidence cited:**
78
+ **Key gaps:**
79
+
80
+ ---
81
+
82
+ ### 5. Traction / Market Experiment Results (Weight: 15%)
83
+ _(Final gate only — for check-in, note if not yet expected)_
84
+
85
+ | Score | Interpretation |
86
+ |-------|---------------|
87
+ | 5 | Landing page live with conversion data; CAC calculated; pilot customers engaged; A/B test results; strong desirability scores |
88
+ | 4 | Some experiment results; pilot pipeline identified; early conversion data |
89
+ | 3 | Experiments planned; pilot outreach started |
90
+ | 2 | No experiments run; pipeline empty |
91
+ | 1 | No market testing at all |
92
+
93
+ **Score assigned:** ___ / 5 _(or N/A for check-in gate)_
94
+ **Evidence cited:**
95
+ **Key gaps:**
96
+
97
+ ---
98
+
99
+ ### 6. Technical Feasibility (Weight: 10%)
100
+
101
+ | Score | Interpretation |
102
+ |-------|---------------|
103
+ | 5 | Prototype built; feasibility fully assessed; build/buy/partner strategy decided; ecosystem mapped |
104
+ | 4 | Feasibility assessed; prototype in progress; clear technical path |
105
+ | 3 | Feasibility analysis done; technical path defined |
106
+ | 2 | High-level feasibility only; many unknowns |
107
+ | 1 | No feasibility assessment |
108
+
109
+ **Score assigned:** ___ / 5
110
+ **Evidence cited:**
111
+ **Key gaps:**
112
+
113
+ ---
114
+
115
+ ### 7. Mothership Advantage & Team Readiness (Weight: 10%)
116
+
117
+ | Score | Interpretation |
118
+ |-------|---------------|
119
+ | 5 | Asset Jam complete; clear mothership advantages being leveraged; sponsor aligned; team charter complete; operating plan ready |
120
+ | 4 | Key mothership assets identified; sponsor engaged; team roles clear |
121
+ | 3 | Some mothership assets identified; team partially formed |
122
+ | 2 | Minimal mothership leverage; team incomplete |
123
+ | 1 | No mothership engagement; team undefined |
124
+
125
+ **Score assigned:** ___ / 5
126
+ **Evidence cited:**
127
+ **Key gaps:**
128
+
129
+ ---
130
+
131
+ ## Weighted Score Calculation
132
+
133
+ | Criterion | Score | Weight | Weighted Score |
134
+ |-----------|-------|--------|---------------|
135
+ | Customer Pain Validation | | 0.20 | |
136
+ | Market Opportunity | | 0.15 | |
137
+ | Wedge Clarity & Differentiation | | 0.15 | |
138
+ | Business Model & Revenue | | 0.15 | |
139
+ | Traction / Experiments | | 0.15 | |
140
+ | Technical Feasibility | | 0.10 | |
141
+ | Mothership & Team | | 0.10 | |
142
+ | **Total Weighted Score** | | 1.00 | |
143
+
144
+ ---
145
+
146
+ ## Gate Decision
147
+
148
+ | Threshold | Score | Decision |
149
+ |-----------|-------|---------|
150
+ | GO | ≥ 3.5 | Proceed to acceleration |
151
+ | PIVOT | 2.5 – 3.49 | Specific change required before continuing |
152
+ | KILL | < 2.5 | Document learnings; archive venture |
153
+
154
+ **Overall Score:** ___
155
+ **Decision:** [ ] **GO** — ✅ [ ] **PIVOT** — 🔄 [ ] **KILL** — ❌
156
+
157
+ ---
158
+
159
+ ## Decision Rationale
160
+
161
+ **Key strengths driving this decision:**
162
+ 1.
163
+ 2.
164
+ 3.
165
+
166
+ **Key concerns driving this decision:**
167
+ 1.
168
+ 2.
169
+ 3.
170
+
171
+ **Top 3 questions the NVB would ask:**
172
+ 1.
173
+ 2.
174
+ 3.
175
+
176
+ ---
177
+
178
+ ## If PIVOT — Pivot Details
179
+
180
+ **Pivot Type:** [ ] Customer [ ] Problem [ ] Solution [ ] Business Model [ ] Market
181
+
182
+ **Re-entry Phase:**
183
+
184
+ **Artifacts to Preserve:**
185
+
186
+ **Artifacts to Regenerate:**
187
+
188
+ **Pivot Rationale:**
189
+
190
+ ---
191
+
192
+ ## If KILL — Archive Notes
193
+
194
+ **Key learnings from this venture:**
195
+ 1.
196
+ 2.
197
+ 3.
198
+
199
+ **What would need to change for this venture to be worth attempting again:**
@@ -0,0 +1,114 @@
1
+ # Ideal Customer Profile (ICP)
2
+ <!-- Customer Discovery Agent — Phase 3, Step 5 -->
3
+ <!-- Purpose: Define the Ideal Customer Profile based on validated evidence from interviews and pain atomization -->
4
+
5
+ ## ICP Summary
6
+ - **Venture:**
7
+ - **ICP Version:** v___ (update as evidence grows)
8
+ - **Date:**
9
+ - **Evidence Base:** ___ interviews conducted
10
+
11
+ ---
12
+
13
+ ## Primary ICP: [Give them a name / label]
14
+
15
+ ### Who They Are (Demographics / Firmographics)
16
+
17
+ | Attribute | Description |
18
+ |-----------|-------------|
19
+ | **Role / Title** | |
20
+ | **Industry / Vertical** | |
21
+ | **Company Size** | |
22
+ | **Geography** | |
23
+ | **Company Stage** | |
24
+ | **Annual Revenue (target company)** | |
25
+ | **Budget Authority** | |
26
+
27
+ ### What Drives Them (Psychographics)
28
+
29
+ - **Primary professional goal:**
30
+ - **What they're measured on (KPIs):**
31
+ - **Biggest professional fear:**
32
+ - **What they read / follow / trust:**
33
+ - **How they make buying decisions:**
34
+
35
+ ### Their Pain Profile
36
+
37
+ | Pain Dimension | Description |
38
+ |---------------|-------------|
39
+ | **Primary pain statement** | |
40
+ | **Pain trigger** | |
41
+ | **Frequency (F score)** | /5 |
42
+ | **Intensity (I score)** | /5 |
43
+ | **Prevalence (P score)** | /5 |
44
+ | **FIP Average** | |
45
+ | **Current workaround** | |
46
+ | **Workaround satisfaction** | /5 |
47
+ | **Switching motivation** | |
48
+
49
+ ### Their Buying Behavior
50
+
51
+ - **How they discover new solutions:**
52
+ - **Who influences their buying decision:**
53
+ - **Typical budget for solutions like this:**
54
+ - **Sales cycle length (expected):**
55
+ - **Procurement process (if B2B):**
56
+ - **Key objections they'd have:**
57
+
58
+ ### Representative Quote
59
+ > "_[A real or synthesized quote that captures this persona's pain in their own words]_"
60
+
61
+ ---
62
+
63
+ ## Buyer vs. User Split (if different)
64
+
65
+ | Attribute | User | Buyer |
66
+ |-----------|------|-------|
67
+ | **Role** | | |
68
+ | **Primary motivation** | | |
69
+ | **Key success metric** | | |
70
+ | **Pain type** | Operational pain | Business/cost pain |
71
+ | **Sales message** | | |
72
+
73
+ ---
74
+
75
+ ## Secondary ICP (if applicable): [Name / Label]
76
+
77
+ _(Repeat the above structure for a secondary segment if evidence supports one)_
78
+
79
+ - **Why secondary, not primary:** _(smaller pain, harder to reach, lower willingness to pay, etc.)_
80
+
81
+ ---
82
+
83
+ ## ICP Exclusion Criteria
84
+ _(Who explicitly does NOT fit — helps focus)_
85
+
86
+ | Customer Type | Why Excluded |
87
+ |--------------|-------------|
88
+ | | |
89
+ | | |
90
+
91
+ ---
92
+
93
+ ## ICP Evidence Log
94
+
95
+ | Evidence Source | Key Signal | Interview # |
96
+ |----------------|-----------|------------|
97
+ | | | |
98
+ | | | |
99
+
100
+ ---
101
+
102
+ ## ICP Confidence Assessment
103
+
104
+ | Dimension | Confidence (Low/Med/High) | Gaps to Fill |
105
+ |-----------|--------------------------|-------------|
106
+ | Pain existence | | |
107
+ | Pain severity (FIP) | | |
108
+ | Segment size | | |
109
+ | Willingness to pay | | |
110
+ | Buying process | | |
111
+
112
+ **Overall ICP confidence level:** Low / Medium / High
113
+
114
+ **What would increase confidence:**
@@ -0,0 +1,114 @@
1
+ # Interview Script
2
+ <!-- Customer Discovery Agent — Phase 3, Step 1 -->
3
+ <!-- Purpose: Structured guide for customer pain-point, concept card, or solution testing interviews -->
4
+
5
+ ## Interview Setup
6
+ - **Interview Type:** [ ] Pain-point [ ] Expert [ ] Concept card [ ] Solution testing
7
+ - **Venture:**
8
+ - **Pain / Concept to Test:**
9
+ - **Interviewer:**
10
+ - **Target Participant Profile:**
11
+ - **Duration:** 30-45 minutes
12
+
13
+ ---
14
+
15
+ ## Opening (5 min)
16
+
17
+ **Introduce yourself and the purpose:**
18
+ > "Hi [name], thank you for taking the time to speak with me today. My name is [name] and I'm working on understanding [domain area]. I'm NOT here to sell you anything — I'm here to learn from your experience. This conversation will take about 30-40 minutes. Is it okay if I take notes? Everything you share will be kept confidential and anonymized."
19
+
20
+ **Warm-up question:**
21
+ > "Could you briefly describe your role and what a typical day looks like for you?"
22
+
23
+ ---
24
+
25
+ ## Section 1: Context Setting (5-10 min)
26
+ _(Understand their world before introducing the pain)_
27
+
28
+ 1. "Walk me through how you handle [domain area] in your current role."
29
+ 2. "Who else is involved in this process in your organization?"
30
+ 3. "What tools or systems do you currently use for [domain area]?"
31
+
32
+ ---
33
+
34
+ ## Section 2: Pain Exploration (10-15 min)
35
+ _(Never lead — let them surface the pain naturally)_
36
+
37
+ 4. "What are the biggest challenges you face with [domain area]?"
38
+ 5. "Tell me about the last time you experienced [pain hypothesis] — what happened?"
39
+ 6. "How often does this come up?"
40
+ 7. "When this happens, what do you do to deal with it?"
41
+ 8. "How well does that work? What's still frustrating about it?"
42
+ 9. "What has this cost you in terms of time, money, or stress?"
43
+ 10. "If you could wave a magic wand and fix one thing about [domain area], what would it be?"
44
+
45
+ ---
46
+
47
+ ## Section 3: Frequency & Intensity Probes (5 min)
48
+ _(Gather FIP scoring data — do not use the word "scoring")_
49
+
50
+ 11. "How many times per [week/month] does this situation come up?"
51
+ 12. "On a scale of 1-10, how painful is this when it happens? Why that number?"
52
+ 13. "Do you know others in similar roles who deal with this same challenge?"
53
+
54
+ ---
55
+
56
+ ## [FOR CONCEPT CARD INTERVIEWS — Replace Section 3 with:]
57
+
58
+ ## Section 3: Concept Card Presentation (10 min)
59
+
60
+ _(Show concept card — describe it briefly without over-selling)_
61
+ > "I want to show you something we're exploring. I'd love your honest reaction — there are no wrong answers."
62
+
63
+ - "What's your first reaction to this?"
64
+ - "What resonates? What feels off?"
65
+ - "Does this solve something you actually care about? Why / why not?"
66
+ - "How does this compare to what you do today?"
67
+ - "Who else in your organization would care about this?"
68
+ - "Would you be willing to try a version of this? Under what conditions?"
69
+
70
+ ---
71
+
72
+ ## [FOR SOLUTION TESTING INTERVIEWS — Replace Section 3 with:]
73
+
74
+ ## Section 3: Solution Testing (10-15 min)
75
+
76
+ _(Walkthrough prototype or description)_
77
+ > "I'm going to walk you through what we've built. Please think aloud as I show you — I want to understand your experience."
78
+
79
+ - "What's your first impression?"
80
+ - "What would you do first?"
81
+ - "What's confusing or unexpected?"
82
+ - "What would make this more useful for you?"
83
+ - "Would you use this in your current work? Why / why not?"
84
+ - "What would you need to see before recommending this to your team?"
85
+
86
+ ---
87
+
88
+ ## Closing (5 min)
89
+
90
+ > "Thank you so much — this has been incredibly helpful. Before we wrap up..."
91
+
92
+ - "Is there anything else you'd like to share that I haven't asked about?"
93
+ - "Is there anyone else you think I should speak with who deals with similar challenges?"
94
+ - "Would you be willing to be a beta tester if we build something in this space?"
95
+
96
+ ---
97
+
98
+ ## Post-Interview Notes Template
99
+
100
+ _(Complete within 30 minutes of interview)_
101
+
102
+ - **Date / Duration:**
103
+ - **Participant Role / Company Size:**
104
+ - **Top 3 insights from this interview:**
105
+ 1.
106
+ 2.
107
+ 3.
108
+ - **Pain signals observed (direct quotes):**
109
+ - **Surprising moments:**
110
+ - **FIP Preliminary Scores:**
111
+ - Frequency: /5
112
+ - Intensity: /5
113
+ - Prevalence signal: /5
114
+ - **Follow-up actions:**