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,117 @@
1
+ # Pivot Log
2
+ <!-- Venture Master / Venture Evaluator Agent — created at each pivot decision -->
3
+ <!-- Purpose: Document pivot decisions with rationale, preserved work, and re-entry plan -->
4
+
5
+ ## Pivot #___
6
+
7
+ - **Date:**
8
+ - **Triggered By:** [ ] Check-in Gate [ ] Final Gate [ ] Team Decision [ ] Sponsor Direction
9
+ - **Pivot Type:** [ ] Customer [ ] Problem [ ] Solution [ ] Business Model [ ] Market
10
+ - **Gate Score at Pivot:** ___
11
+ - **Re-entry Phase:**
12
+
13
+ ---
14
+
15
+ ## What Led to This Pivot
16
+
17
+ ### Evidence That Triggered the Pivot
18
+ _(What specific findings, scores, or signals made it clear the current direction was not working?)_
19
+
20
+ 1.
21
+ 2.
22
+ 3.
23
+
24
+ ### Original Hypothesis (that is being abandoned)
25
+ - **Customer hypothesis was:**
26
+ - **Problem hypothesis was:**
27
+ - **Solution hypothesis was:**
28
+
29
+ ### Why This Hypothesis Failed
30
+ _(Root cause — was it the ICP, the pain, the solution, the business model, the market?)_
31
+
32
+ ---
33
+
34
+ ## Pivot Decision Details
35
+
36
+ ### Pivot Type: [Type]
37
+ **Definition:** _(e.g., "Same customer, different problem to solve")_
38
+
39
+ **New Hypothesis Being Tested:**
40
+ - **New customer hypothesis (if changed):**
41
+ - **New problem hypothesis (if changed):**
42
+ - **New solution hypothesis (if changed):**
43
+ - **New market hypothesis (if changed):**
44
+
45
+ **Re-entry Phase:** Phase ___ — _(phase name)_
46
+
47
+ ---
48
+
49
+ ## Artifacts Preserved (Still Valid After Pivot)
50
+
51
+ | Artifact | File Path | Why Still Relevant |
52
+ |---------|----------|-------------------|
53
+ | | | |
54
+ | | | |
55
+
56
+ ## Artifacts Regenerated (Starting Fresh)
57
+
58
+ | Artifact | Why Must Be Regenerated |
59
+ |---------|------------------------|
60
+ | | |
61
+ | | |
62
+
63
+ ---
64
+
65
+ ## Pivot Archive
66
+
67
+ **Archive Location:** `{output_folder}/{venture_name}/pivots/pivot-{N}/`
68
+
69
+ **Files Archived:**
70
+ - [ ] All completed artifacts up to pivot date
71
+
72
+ ---
73
+
74
+ ## What We Learned from the Previous Direction
75
+
76
+ ### Key Learnings
77
+ 1.
78
+ 2.
79
+ 3.
80
+
81
+ ### What to Watch Out for in Next Direction
82
+
83
+ ### Hypothesis Adjustments Based on Learnings
84
+
85
+ ---
86
+
87
+ ## Plan for Re-entry
88
+
89
+ | Week | Activity | Owner | Output |
90
+ |------|---------|-------|--------|
91
+ | | | | |
92
+ | | | | |
93
+
94
+ **Timeline to next gate from re-entry:** ___ weeks
95
+
96
+ **Sponsor briefed on pivot:** [ ] Yes [ ] No — date to brief: ___
97
+
98
+ ---
99
+
100
+ ## Pivot #___ Summary (for venture-state.yaml)
101
+ ```yaml
102
+ pivot:
103
+ number:
104
+ date:
105
+ type:
106
+ from_hypothesis:
107
+ customer: ""
108
+ problem: ""
109
+ solution: ""
110
+ to_hypothesis:
111
+ customer: ""
112
+ problem: ""
113
+ solution: ""
114
+ reentry_phase: ""
115
+ gate_score:
116
+ key_learning: ""
117
+ ```
@@ -0,0 +1,118 @@
1
+ # Pricing Model
2
+ <!-- Business Architect / Growth Strategist Agent — Phase 6 -->
3
+ <!-- Purpose: Design and test the pricing strategy and tier structure -->
4
+
5
+ ## Context
6
+ - **Venture:**
7
+ - **Product / Wedge:**
8
+ - **ICP:**
9
+ - **Date:**
10
+
11
+ ---
12
+
13
+ ## Pricing Strategy Selection
14
+
15
+ | Strategy | Description | Fit for Our Venture | Score (1-5) |
16
+ |---------|-------------|--------------------|-----------:|
17
+ | **Value-based** | Price based on value delivered to customer | | |
18
+ | **Cost-plus** | Cost of delivery + margin | | |
19
+ | **Competitor-anchored** | Anchor to competitor pricing | | |
20
+ | **Freemium** | Free tier + paid upgrade | | |
21
+ | **Usage-based** | Price per unit consumed | | |
22
+ | **Outcome-based** | Price tied to customer result | | |
23
+
24
+ **Selected strategy:**
25
+
26
+ **Rationale:**
27
+
28
+ ---
29
+
30
+ ## Willingness to Pay (WTP) Research
31
+
32
+ | Method | Finding |
33
+ |--------|---------|
34
+ | Customer interview signals | |
35
+ | Competitor pricing research | |
36
+ | Van Westendorp price sensitivity | |
37
+ | Conjoint analysis (if run) | |
38
+
39
+ **Estimated WTP range:** $___/month to $___/month
40
+
41
+ **"Acceptable" price point:** $___
42
+ **"Too expensive" threshold:** $___
43
+ **"Too cheap to trust" threshold:** $___
44
+
45
+ ---
46
+
47
+ ## Pricing Tiers
48
+
49
+ ### Tier 1: [Name, e.g., Starter / Wedge / Free]
50
+ - **Target Segment:**
51
+ - **Price:** $___/month (or $___/year)
52
+ - **Annual Discount:** ___%
53
+ - **What's Included:**
54
+ - Feature A
55
+ - Feature B
56
+ - Limit: up to ___ [users/seats/units]
57
+ - **What's Excluded:**
58
+ - **Purpose of this tier:** (customer acquisition / revenue / upsell path)
59
+
60
+ ### Tier 2: [Name, e.g., Growth / Professional]
61
+ - **Target Segment:**
62
+ - **Price:** $___/month
63
+ - **What's Included:**
64
+ - Everything in Tier 1, plus:
65
+ - Feature C
66
+ - Feature D
67
+ - Limit: up to ___ [users/seats/units]
68
+ - **Expected % of Revenue:**
69
+
70
+ ### Tier 3: [Name, e.g., Enterprise / Custom]
71
+ - **Target Segment:**
72
+ - **Price:** Custom / Starting at $___
73
+ - **What's Included:** Full platform + dedicated support + custom integrations
74
+ - **Sales Motion:** Enterprise (outbound, demo, contract)
75
+
76
+ ---
77
+
78
+ ## Pricing Mechanics
79
+
80
+ - **Billing frequency:** [ ] Monthly [ ] Annual [ ] Usage-based [ ] Milestone-based
81
+ - **Contract length:** [ ] Month-to-month [ ] Annual [ ] Multi-year
82
+ - **Seat-based or company-wide:** [ ] Per seat [ ] Per company [ ] Per usage unit
83
+ - **Free trial:** [ ] Yes — ___ days [ ] No
84
+ - **Freemium tier:** [ ] Yes [ ] No
85
+
86
+ ---
87
+
88
+ ## Pricing Validation Plan
89
+
90
+ | Test | Hypothesis | Method | Success Criteria | Status |
91
+ |------|-----------|--------|-----------------|--------|
92
+ | Price page A/B test | | Landing page variant | | |
93
+ | Customer interview | | Ask directly in interviews | | |
94
+ | Pilot pricing | | Offer to first pilot customers | | |
95
+
96
+ ---
97
+
98
+ ## Competitive Pricing Benchmarks
99
+
100
+ | Competitor | Price | Tier / Model | Our Positioning vs. Them |
101
+ |-----------|-------|-------------|--------------------------|
102
+ | | | | |
103
+ | | | | |
104
+
105
+ ---
106
+
107
+ ## Revenue Implications
108
+
109
+ | Tier | Target # Customers (Year 1) | ARPC | ARR Contribution |
110
+ |------|---------------------------|------|-----------------|
111
+ | Tier 1 | | | |
112
+ | Tier 2 | | | |
113
+ | Tier 3 | | | |
114
+ | **Total** | | | |
115
+
116
+ **Pricing risks:**
117
+ 1.
118
+ 2.
@@ -0,0 +1,101 @@
1
+ # Product / Service Roadmap
2
+ <!-- Product Strategist Agent — Phase 4 -->
3
+ <!-- Purpose: Map the wedge-to-vision product evolution across three phases -->
4
+
5
+ ## Context
6
+ - **Venture:**
7
+ - **Wedge:**
8
+ - **Date:**
9
+
10
+ ---
11
+
12
+ ## Roadmap Philosophy
13
+ - **Phase 1 (Wedge):** The smallest thing that validates the riskiest assumption and generates real customer value
14
+ - **Phase 2 (Expand):** Deepen and broaden based on validated learnings from the wedge
15
+ - **Phase 3 (Vision):** The full platform / ecosystem / market-leading position
16
+
17
+ ---
18
+
19
+ ## Phase 1 — The Wedge
20
+ **Timeline:** Months 0–6 (within incubation)
21
+ **Goal:** Validate that customers will pay for the core value we create
22
+
23
+ ### Core Features (must-have for wedge)
24
+
25
+ | Feature | User Story | Priority | Effort | Status |
26
+ |---------|-----------|---------|--------|--------|
27
+ | | As a [ICP], I want to [action] so that [benefit] | Must-have | S/M/L | |
28
+ | | | Must-have | | |
29
+ | | | Must-have | | |
30
+
31
+ ### Wedge Success Metrics
32
+ - **Primary metric (the one thing that matters):**
33
+ - **Secondary metrics:**
34
+ - **What defines "wedge validated":**
35
+
36
+ ### What We Explicitly Are NOT Building in Phase 1
37
+ - (scope boundary — important for focus)
38
+
39
+ ---
40
+
41
+ ## Phase 2 — Expand
42
+ **Timeline:** Months 6–18 (post-acceleration)
43
+ **Goal:** Scale the wedge — deepen for current customers and/or expand to adjacent segments
44
+
45
+ ### Expansion Options to Explore
46
+
47
+ | Direction | What It Adds | Segment | Hypothesis to Validate |
48
+ |-----------|-------------|---------|----------------------|
49
+ | Deepen | More features for current ICP | Same | |
50
+ | Broaden | Same product for new segment | Adjacent | |
51
+ | Extend | New product for same ICP | Same | |
52
+
53
+ ### Features Planned for Phase 2
54
+ _(Based on evidence — not fully designed yet)_
55
+
56
+ | Feature Area | Hypothesis | Evidence Needed Before Building |
57
+ |-------------|-----------|-------------------------------|
58
+ | | | |
59
+
60
+ ---
61
+
62
+ ## Phase 3 — Vision
63
+ **Timeline:** Months 18+ (acceleration stage)
64
+ **Goal:** Build the platform/ecosystem/market-leading position described in the vision story
65
+
66
+ ### The Big Vision
67
+ _(What does the full product/platform look like at scale?)_
68
+
69
+ ### Key Milestones to Vision
70
+ 1.
71
+ 2.
72
+ 3.
73
+
74
+ ---
75
+
76
+ ## Dependency Map
77
+
78
+ | Feature / Phase | Depends On | Risk if Dependency Fails |
79
+ |----------------|-----------|--------------------------|
80
+ | | | |
81
+
82
+ ---
83
+
84
+ ## Technology Decisions by Phase
85
+
86
+ | Decision | Phase 1 Choice | Phase 2 Implication | Phase 3 Implication |
87
+ |----------|---------------|--------------------|--------------------|
88
+ | Build vs. buy | | | |
89
+ | Core infrastructure | | | |
90
+ | AI/ML | | | |
91
+ | Data architecture | | | |
92
+
93
+ ---
94
+
95
+ ## Roadmap Risks
96
+
97
+ | Risk | Phase | Likelihood | Mitigation |
98
+ |------|-------|-----------|-----------|
99
+ | Wedge too narrow to expand | 1→2 | | |
100
+ | Technical debt from fast build | 1→2 | | |
101
+ | Competition launches before Phase 2 | | | |
@@ -0,0 +1,117 @@
1
+ # B2B Sales Process Map
2
+ <!-- Business Architect / Growth Strategist Agent — Phase 6 -->
3
+ <!-- Purpose: Map the B2B sales process from first touch to closed deal -->
4
+
5
+ ## Context
6
+ - **Venture:**
7
+ - **ICP:**
8
+ - **Date:**
9
+
10
+ ---
11
+
12
+ ## Sales Process Overview
13
+
14
+ **Sales Motion:** [ ] Product-Led Growth (PLG) [ ] Sales-Led Growth (SLG) [ ] Channel-Led [ ] Hybrid
15
+
16
+ **Average Sales Cycle Length (estimated):** ___ days/weeks
17
+
18
+ **Average Deal Size (ACV):** $___
19
+
20
+ ---
21
+
22
+ ## Stage-by-Stage Sales Process
23
+
24
+ ### Stage 1: Awareness / Lead Generation
25
+ - **Goal:** Target customer becomes aware of the venture
26
+ - **Activities:**
27
+ - [ ] Inbound (content, SEO, referrals)
28
+ - [ ] Outbound (cold email, LinkedIn outreach)
29
+ - [ ] Paid (ads)
30
+ - [ ] Events / conferences
31
+ - [ ] Mothership introductions
32
+ - **Success Metric:** # of qualified leads per week
33
+ - **Owner:**
34
+
35
+ ### Stage 2: Qualification
36
+ - **Goal:** Confirm the lead is the right ICP with real pain and budget
37
+ - **BANT Criteria:**
38
+ - Budget: does this company have budget for solutions like ours?
39
+ - Authority: are we talking to the decision maker?
40
+ - Need: do they have the specific pain we solve?
41
+ - Timeline: are they actively looking to solve this now?
42
+ - **Disqualification signals:**
43
+ - **Success Metric:** % leads that pass qualification
44
+ - **Time in stage:** ___ days
45
+
46
+ ### Stage 3: Discovery / Pain Validation
47
+ - **Goal:** Understand the customer's specific pain, context, and success criteria
48
+ - **Key questions to ask:**
49
+ 1.
50
+ 2.
51
+ 3.
52
+ - **Discovery call structure:** _(minutes per section)_
53
+ - **Success Metric:** Discovery score (1-5) — do they have strong FIP pain?
54
+ - **Time in stage:** ___ days
55
+
56
+ ### Stage 4: Solution Presentation / Demo
57
+ - **Goal:** Show the wedge in the context of their specific pain
58
+ - **Demo structure:**
59
+ - Open: confirm the pain they described
60
+ - Show: core solution flow
61
+ - Connect: how this solves their specific situation
62
+ - Probe: what questions do they have?
63
+ - **Success Metric:** % that proceed to evaluation
64
+ - **Time in stage:** ___ days
65
+
66
+ ### Stage 5: Evaluation / Pilot
67
+ - **Goal:** Customer tests the solution; confirms value
68
+ - **Pilot structure:**
69
+ - Duration: ___ weeks
70
+ - Scope: _(what features, how many users)_
71
+ - Success metric for customer: _(how they will judge the pilot)_
72
+ - Success metric for us: _(what we want to learn)_
73
+ - **Exit criteria:** _(what makes a pilot a "pass")_
74
+ - **Time in stage:** ___ weeks
75
+
76
+ ### Stage 6: Negotiation / Close
77
+ - **Goal:** Agree terms and sign
78
+ - **Typical objections:**
79
+ 1. Price → Response:
80
+ 2. "We need to think about it" → Response:
81
+ 3. "We need board approval" → Response:
82
+ 4. Security / compliance concern → Response:
83
+ - **Decision makers involved:**
84
+ - **Time to close from pilot:** ___ weeks
85
+
86
+ ---
87
+
88
+ ## Decision Maker Map
89
+
90
+ | Role | Decision-Making Authority | Pain Type | Objection |
91
+ |------|--------------------------|-----------|----------|
92
+ | Economic Buyer | Budget sign-off | ROI / cost | Price |
93
+ | Champion | Day-to-day pain | Operational pain | Feature gaps |
94
+ | Technical Evaluator | Security / integration | Technical | Complexity |
95
+ | End User | Usability | Workflow pain | Change management |
96
+
97
+ ---
98
+
99
+ ## Sales Metrics & Targets
100
+
101
+ | Metric | Month 1-3 Target | Month 4-6 Target | Source |
102
+ |--------|-----------------|-----------------|--------|
103
+ | Outreach per week | | | |
104
+ | Discovery calls per week | | | |
105
+ | Demos per week | | | |
106
+ | Pilots started | | | |
107
+ | Pilots converted to paid | | | |
108
+ | Estimated CAC | | | |
109
+
110
+ ---
111
+
112
+ ## Mothership Sales Leverage
113
+
114
+ - **Existing relationships we can use:**
115
+ - **Mothership customers who are ICP:**
116
+ - **Mothership sales team we can leverage:**
117
+ - **Events / channels mothership has access to:**
@@ -0,0 +1,122 @@
1
+ # Solution Feasibility Assessment
2
+ <!-- Product Strategist Agent — Phase 4: Feasibility Assessment -->
3
+ <!-- Purpose: Evaluate whether the wedge solution can be built via build/buy/partner/invest -->
4
+
5
+ ## Context
6
+ - **Venture:**
7
+ - **Solution / Wedge Being Assessed:**
8
+ - **Date:**
9
+
10
+ ---
11
+
12
+ ## 1. Solution Description for Feasibility Assessment
13
+
14
+ **What we need to build:**
15
+ _(High-level technical and functional description of the wedge)_
16
+
17
+ **Core capabilities required:**
18
+ 1.
19
+ 2.
20
+ 3.
21
+ 4.
22
+
23
+ ---
24
+
25
+ ## 2. Build / Buy / Partner / Invest Analysis
26
+
27
+ ### Option A: Build (Internal Development)
28
+ - **What would be built:**
29
+ - **Technical requirements:**
30
+ - **Estimated build time:**
31
+ - **Estimated cost:**
32
+ - **Skills / talent required:**
33
+ - **Do we have the skills in-house?** [ ] Yes [ ] Partially [ ] No
34
+ - **Mothership tech assets that could accelerate this:**
35
+ - **Feasibility score (1-5):**
36
+ - **Key risks:**
37
+
38
+ ### Option B: Buy (Acquire existing technology)
39
+ - **Candidate technologies / products:**
40
+ - **Acquisition / licensing cost estimate:**
41
+ - **Integration complexity:**
42
+ - **Feasibility score (1-5):**
43
+ - **Key risks:**
44
+
45
+ ### Option C: Partner (Use a partner's technology or service)
46
+ - **Candidate partners:**
47
+ - **Partnership model (API, white-label, resell):**
48
+ - **Revenue share / cost implications:**
49
+ - **Dependency risk:**
50
+ - **Feasibility score (1-5):**
51
+ - **Key risks:**
52
+
53
+ ### Option D: Invest (Take a stake in an existing company)
54
+ - **Candidate companies:**
55
+ - **Investment thesis:**
56
+ - **Timeline to access technology:**
57
+ - **Feasibility score (1-5):**
58
+ - **Key risks:**
59
+
60
+ ---
61
+
62
+ ## 3. Recommended Approach
63
+
64
+ **Chosen route:** [ ] Build [ ] Buy [ ] Partner [ ] Invest [ ] Hybrid
65
+
66
+ **Rationale:**
67
+
68
+ **Hybrid approach (if applicable):**
69
+ _(e.g., Build core IP, partner for X component, buy Y capability)_
70
+
71
+ ---
72
+
73
+ ## 4. Technical Feasibility Dimensions
74
+
75
+ | Dimension | Assessment | Evidence / Notes |
76
+ |-----------|-----------|-----------------|
77
+ | **Data availability** | Available / Partial / Unavailable | |
78
+ | **AI/ML requirements** | None / Achievable / Complex | |
79
+ | **Integration complexity** | Low / Medium / High | |
80
+ | **Regulatory compliance** | Clear / Needs work / Blocker | |
81
+ | **Security requirements** | Standard / Elevated / Complex | |
82
+ | **Scalability** | Straightforward / Needs design | |
83
+
84
+ **Overall technical feasibility:** Low / Medium / High
85
+
86
+ ---
87
+
88
+ ## 5. Ecosystem Map
89
+
90
+ ### Key Players in the Technology Ecosystem
91
+
92
+ | Player | Role | Relationship Opportunity | Priority |
93
+ |--------|------|--------------------------|---------|
94
+ | | | | |
95
+ | | | | |
96
+
97
+ ### Systems the Solution Must Integrate With
98
+
99
+ | System | Integration Type | Complexity | Status |
100
+ |--------|----------------|-----------|--------|
101
+ | | | | |
102
+
103
+ ---
104
+
105
+ ## 6. Build Plan (if Build route selected)
106
+
107
+ | Phase | What Gets Built | Timeline | Resources Required |
108
+ |-------|----------------|----------|-------------------|
109
+ | Prototype | | | |
110
+ | Alpha | | | |
111
+ | Beta | | | |
112
+ | Wedge launch | | | |
113
+
114
+ ---
115
+
116
+ ## 7. Feasibility Summary
117
+
118
+ - **Overall feasibility verdict:** Feasible / Feasible with caveats / Not feasible
119
+ - **Biggest technical risk:**
120
+ - **Biggest dependency risk:**
121
+ - **Critical path item (must resolve before building):**
122
+ - **Recommended next action:**
@@ -0,0 +1,94 @@
1
+ # Stakeholder Map
2
+ <!-- Domain Explorer / Venture Ops — Phase 1-2 -->
3
+ <!-- Purpose: Map who matters in the venture's ecosystem — buyers, users, influencers, blockers -->
4
+
5
+ ## Context
6
+ - **Venture:**
7
+ - **Domain:**
8
+ - **Date:**
9
+
10
+ ## Stakeholder Categories
11
+
12
+ ### Primary Stakeholders (directly experience the pain or benefit from the solution)
13
+
14
+ | Stakeholder | Role / Title | Organization Type | Primary Pain | Buying Power | Research Priority |
15
+ |-------------|-------------|-------------------|--------------|--------------|-------------------|
16
+ | | | | | High/Med/Low | High/Med/Low |
17
+ | | | | | | |
18
+ | | | | | | |
19
+
20
+ ### Secondary Stakeholders (influence the decision or are affected by the solution)
21
+
22
+ | Stakeholder | Role / Title | Influence Type | What They Care About | Relationship to Build |
23
+ |-------------|-------------|---------------|---------------------|----------------------|
24
+ | | | | | |
25
+ | | | | | |
26
+
27
+ ### Buyers vs. Users Analysis
28
+ - **Primary USER (who uses the solution):**
29
+ - **Primary BUYER (who pays for the solution):**
30
+ - **Are they the same person?** [ ] Yes [ ] No
31
+ - **If different — implication for sales motion:**
32
+
33
+ ### Influencers & Champions
34
+
35
+ | Name / Role | Organization | Why They Matter | How to Reach | Priority |
36
+ |------------|-------------|----------------|-------------|---------|
37
+ | | | | | |
38
+
39
+ ### Blockers & Detractors
40
+
41
+ | Stakeholder | Why They Might Block | Their Concern | Mitigation Strategy |
42
+ |-------------|---------------------|---------------|-------------------|
43
+ | | | | |
44
+
45
+ ## Stakeholder Persona Hypotheses
46
+ _(Initial AI-synthesized personas — to be validated via real interviews)_
47
+
48
+ ### Persona 1: [Name / Role]
49
+ - **Archetype:**
50
+ - **Day in the life:**
51
+ - **Primary pain related to our domain:**
52
+ - **How they solve it today:**
53
+ - **What success looks like for them:**
54
+ - **What would make them change behavior:**
55
+
56
+ ### Persona 2: [Name / Role]
57
+ - **Archetype:**
58
+ - **Day in the life:**
59
+ - **Primary pain related to our domain:**
60
+ - **How they solve it today:**
61
+ - **What success looks like for them:**
62
+ - **What would make them change behavior:**
63
+
64
+ ## Interview Prioritization
65
+
66
+ | Stakeholder | Reason to Interview | Target # of Interviews | Status |
67
+ |-------------|--------------------|-----------------------|--------|
68
+ | | | | Not started |
69
+ | | | | In progress |
70
+ | | | | Complete |
71
+
72
+ ## Stakeholder Map — Power / Interest Grid
73
+
74
+ ```
75
+ HIGH INTEREST
76
+ |
77
+ | Keep Satisfied | Key Players (manage closely)
78
+ | (inform regularly) |
79
+ | |
80
+ ------+------------------------+------
81
+ | |
82
+ | Monitor | Keep Informed
83
+ | (minimal effort) | (keep updated)
84
+ |
85
+ LOW INTEREST
86
+ LOW POWER HIGH POWER
87
+ ```
88
+
89
+ _(Place each stakeholder in the appropriate quadrant above)_
90
+
91
+ ## Key Insights
92
+ - **Most critical stakeholder to win:**
93
+ - **Biggest stakeholder risk:**
94
+ - **Stakeholder relationships the mothership already has that we can leverage:**