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,138 @@
1
+ # Step 4: Pain Atomization and FIP Scoring
2
+ <!-- Phase 3, Step 4 — Weeks 4-5 -->
3
+ <!-- Agent: Customer Discovery Specialist -->
4
+
5
+ ## Objective
6
+ Decompose the validated broad pain into atomic, testable units. Score each unit on the FIP framework (Frequency / Intensity / Prevalence). Identify the sharpest, most actionable pain needle to anchor the venture solution.
7
+
8
+ ---
9
+
10
+ ## 4.1 Load FIP Framework and Context
11
+
12
+ Load:
13
+ - `{project-root}/ventureOS/data/scoring/pain-scoring.yaml` — FIP scoring framework
14
+ - `interview-synthesis.md` — all interview learnings
15
+ - `pain-hypothesis.md` — current pain hypothesis
16
+
17
+ Confirm the broad pain(s) to atomize:
18
+ - Primary pain from synthesis (highest frequency/intensity signal)
19
+ - Any secondary pains worth atomizing
20
+
21
+ ---
22
+
23
+ ## 4.2 Atomization Exercise
24
+
25
+ For the primary broad pain, decompose into atomic units:
26
+
27
+ **Instructions:**
28
+ 1. Start with the broad pain statement (e.g., "ESG data is hard to incorporate into decisions")
29
+ 2. Ask: "What specifically makes this hard? In what specific situations? For which specific role?"
30
+ 3. Break down into 4-7 atomic pain units — each independently describable, testable, and scoreable
31
+ 4. A good atomic pain:
32
+ - Has a specific trigger ("when submitting the quarterly board report...")
33
+ - Has a specific consequence ("...takes 3 days of manual data collection")
34
+ - Can be scored independently on FIP
35
+
36
+ **Example atomization:**
37
+ - Broad pain: "ESG data is hard to incorporate into decisions"
38
+ - Atomic unit 1: "Finding ESG data across 15 different systems before board meetings"
39
+ - Atomic unit 2: "No way to compare ESG performance of projects side by side"
40
+ - Atomic unit 3: "Can't trace ESG claims back to source data for auditors"
41
+
42
+ ---
43
+
44
+ ## 4.3 FIP Scoring for Each Atomic Unit
45
+
46
+ Using the FIP framework (from pain-scoring.yaml), score each atomic unit:
47
+
48
+ **Frequency (1-5):** How often does the customer experience this specific pain?
49
+ - 5 = Daily or multiple times per day
50
+ - 4 = Weekly
51
+ - 3 = Monthly
52
+ - 2 = Quarterly or less
53
+ - 1 = Rarely
54
+
55
+ **Intensity (1-5):** How severe is the pain when experienced?
56
+ - 5 = Stops work, major cost or frustration
57
+ - 4 = Significant workaround required, time/money lost
58
+ - 3 = Annoying, some workaround exists
59
+ - 2 = Minor inconvenience
60
+ - 1 = Barely noticed
61
+
62
+ **Prevalence (1-5):** What % of the target market experiences this?
63
+ - 5 = >75%
64
+ - 4 = 50-75%
65
+ - 3 = 25-50%
66
+ - 2 = 10-25%
67
+ - 1 = <10%
68
+
69
+ **FIP Average = (F + I + P) / 3**
70
+ - ≥4.0 = Strong — sufficient to anchor a venture
71
+ - 3.0-3.99 = Moderate — warrants further investigation
72
+ - <3.0 = Weak — unlikely to support a business alone
73
+
74
+ **Evidence sources for scoring:**
75
+ - Frequency: direct interview data ("how often does this happen?")
76
+ - Intensity: direct interview data ("how painful is this on a 1-10 scale?") + consequence data
77
+ - Prevalence: desk research (industry reports, analyst data, LinkedIn company filters)
78
+
79
+ ---
80
+
81
+ ## 4.4 Pain Ranking and Desk Research
82
+
83
+ 1. Rank all atomic units by FIP average
84
+ 2. For the top 2-3: do desk research on PREVALENCE
85
+ - Search for data on how many companies / people in the market face this specific situation
86
+ - Look for: industry reports, job posting data, G2/review site patterns, regulatory filings
87
+ - Update prevalence score based on desk research findings
88
+ 3. Confirm market size signal: if FIP is strong, cross-reference with TAM data — how big is the market of people with this specific pain?
89
+
90
+ ---
91
+
92
+ ## 4.5 Select the Primary Pain to Solve
93
+
94
+ Choose the winning atomic pain unit based on:
95
+ - Highest FIP average AND
96
+ - Alignment with our ability to build a solution AND
97
+ - Clearest differentiation opportunity AND
98
+ - Best fit with mothership assets
99
+
100
+ Document the rationale. This is the pain that anchors Phase 4 (Define Solution).
101
+
102
+ ---
103
+
104
+ ## 4.6 Produce Pain Atomization Matrix
105
+
106
+ Using the `pain-atomization.md` template, fill in the full matrix:
107
+ - All atomic pain units with FIP scores
108
+ - Representative quotes for each
109
+ - Interview count per pain unit
110
+ - FIP ranking summary
111
+ - Prioritized pain to solve with rationale
112
+
113
+ Save: `{output_folder}/{venture_name}/pain-atomization.md`
114
+ Update `pain-hypothesis.md` with refined primary pain.
115
+ Update `venture-state.yaml`: hypotheses.problem, completed_artifacts.
116
+
117
+ ---
118
+
119
+ ## 4.7 Checkpoint
120
+
121
+ **GUIDED MODE:**
122
+ Present pain atomization matrix. Ask:
123
+ - "Does this FIP ranking align with your intuition from the interviews?"
124
+ - "Is there any pain unit we missed?"
125
+ - "Are you confident in the primary pain selection?"
126
+
127
+ **YOLO MODE:**
128
+ Proceed to Step 5.
129
+
130
+ ---
131
+
132
+ ## Step 4 Outputs
133
+
134
+ | Output | File |
135
+ |--------|------|
136
+ | Pain atomization matrix | `pain-atomization.md` |
137
+ | Updated pain hypothesis | `pain-hypothesis.md` |
138
+ | Desk research notes | `interviews/desk-research-prevalence.md` |
@@ -0,0 +1,150 @@
1
+ # Step 5: Pain Journey Map and ICP Definition
2
+ <!-- Phase 3, Step 5 — Weeks 5-7 -->
3
+ <!-- Agent: Customer Discovery Specialist -->
4
+
5
+ ## Objective
6
+ Map the customer's end-to-end pain journey for the primary pain. Define the Ideal Customer Profile (ICP) from accumulated evidence. Map buyer vs. user. Identify the best solution entry points. Complete Phase 3 and prepare handoff to Phase 4.
7
+
8
+ ---
9
+
10
+ ## 5.1 Load All Phase 3 Context
11
+
12
+ Load:
13
+ - `pain-atomization.md` — primary pain and FIP scores
14
+ - `interview-synthesis.md` — all interview learnings and archetypes
15
+ - `stakeholder-map.md` — buyer/user mapping
16
+
17
+ Confirm the primary pain to map (winning atomic pain from Step 4).
18
+
19
+ ---
20
+
21
+ ## 5.2 Pain Journey Mapping
22
+
23
+ Using the `pain-journey-map.md` template, map the customer's pain journey for the primary pain:
24
+
25
+ **Journey stages to map:**
26
+ 1. **Trigger:** What specific event or situation causes the pain to surface?
27
+ 2. **Awareness:** The customer realizes there's a problem — what do they see/feel?
28
+ 3. **Struggle:** They try to deal with it — what do they do? What goes wrong?
29
+ 4. **Workaround:** They settle on a workaround — what is it? How good is it?
30
+ 5. **Outcome:** The pain episode ends — how satisfied are they? What residue remains?
31
+
32
+ **For each stage capture:**
33
+ - Customer action (what they do)
34
+ - Customer thought (what they think/say)
35
+ - Emotional state (frustrated / resigned / anxious / overwhelmed)
36
+ - Pain touchpoints (specific moments of friction)
37
+ - Tools / systems involved
38
+ - Workaround used at this stage
39
+
40
+ **Map the emotional arc:**
41
+ Draw the emotional curve — where does it dip lowest? That's the intervention point.
42
+
43
+ ---
44
+
45
+ ## 5.3 Buyer vs. User Mapping
46
+
47
+ From the journey map, clarify the buyer/user relationship:
48
+ 1. **Who is the user?** Who experiences this journey daily?
49
+ 2. **Who is the buyer?** Who approves the budget for a solution?
50
+ 3. **Are they the same?** If not: map both journeys and their priorities
51
+ 4. **Decision-making process:** How does the buyer learn about solutions? What triggers a buying decision?
52
+ 5. **Implication for sales motion:** Should we sell top-down (to buyers) or bottom-up (to users)?
53
+
54
+ ---
55
+
56
+ ## 5.4 Solution Entry Point Identification
57
+
58
+ Based on the pain journey:
59
+ 1. Where in the journey does the pain reach maximum intensity? (highest intervention value)
60
+ 2. Where is the customer most motivated to try something new?
61
+ 3. Where does a solution create the biggest before/after contrast?
62
+ 4. Which entry point is most tractable as a first wedge product?
63
+
64
+ List 2-3 candidate solution entry points ranked by: pain intensity × feasibility × wedge potential.
65
+
66
+ ---
67
+
68
+ ## 5.5 Define the Ideal Customer Profile (ICP)
69
+
70
+ Using all Phase 3 evidence, define the ICP using the `icp-profile.md` template:
71
+
72
+ **From interview synthesis:**
73
+ - Which participant profiles showed the strongest pain?
74
+ - Which roles, company types, company sizes, geographies?
75
+
76
+ **ICP dimensions to define:**
77
+ - Demographics/firmographics: role, industry, company size, geography, company stage
78
+ - Psychographics: what they're measured on, what they fear, how they make decisions
79
+ - Pain profile: primary pain, FIP score, workaround, switching motivation
80
+ - Buying behavior: how they discover solutions, buying process, typical budget
81
+
82
+ **Buyer vs. User ICP:**
83
+ If buyer ≠ user, define both with separate profiles.
84
+
85
+ **ICP exclusion criteria:**
86
+ Who explicitly does NOT fit? (Helps focus GTM.)
87
+
88
+ ---
89
+
90
+ ## 5.6 Produce Phase 3 Outputs
91
+
92
+ Save all final documents:
93
+
94
+ **Pain Journey Map:**
95
+ Save: `{output_folder}/{venture_name}/pain-journey-map.md`
96
+
97
+ **ICP Profile:**
98
+ Save: `{output_folder}/{venture_name}/icp-profile.md`
99
+
100
+ **Update venture-state.yaml:**
101
+ - `hypotheses.customer` → update with final ICP definition
102
+ - `hypotheses.problem` → update with final primary pain statement
103
+ - `guiding_questions.pain` → mark all answered (with evidence file references)
104
+ - `completed_artifacts` → add pain-journey-map, icp-profile
105
+ - `category_progress.venture` → update to reflect Phase 3 completion
106
+
107
+ ---
108
+
109
+ ## 5.7 Phase 3 Completion Gate
110
+
111
+ Before declaring Phase 3 complete, verify all guiding questions:
112
+
113
+ | Guiding Question | Answered? | Evidence File |
114
+ |-----------------|-----------|--------------|
115
+ | What do people need? | Yes/No | |
116
+ | Can the team prioritize the most important pain? | Yes/No | pain-atomization.md |
117
+ | Is the pain frequent, intense, prevalent enough? | Yes/No | pain-atomization.md (FIP ≥ 3.0) |
118
+ | Has the team validated the pain exists? (10+ interviews) | Yes/No | interview-synthesis.md |
119
+ | Can they identify their ideal customer? | Yes/No | icp-profile.md |
120
+ | Does the team understand who the buyer is? | Yes/No | icp-profile.md |
121
+
122
+ If any question is NOT answered: identify what additional interviews or research is needed.
123
+
124
+ ---
125
+
126
+ ## 5.8 Handoff to Phase 4
127
+
128
+ When Phase 3 is complete, brief the Venture Master and Product Strategist:
129
+ 1. Primary pain validated: [pain statement] | FIP: ___
130
+ 2. ICP: [brief description]
131
+ 3. Buyer: [role] | User: [role] — same/different
132
+ 4. Solution entry point recommendation: [entry point description]
133
+ 5. What must the solution do to address the validated pain?
134
+
135
+ **Phase 4 can begin when:**
136
+ - Primary pain FIP ≥ 3.0 (weak signal — need more interviews)
137
+ - ICP is defined
138
+ - At least 10 interviews completed
139
+ - Pain journey map shows at least one viable solution entry point
140
+
141
+ ---
142
+
143
+ ## Step 5 Outputs
144
+
145
+ | Output | File |
146
+ |--------|------|
147
+ | Pain journey map | `pain-journey-map.md` |
148
+ | ICP profile | `icp-profile.md` |
149
+ | Phase 3 completion gate | _(in venture-state.yaml guiding_questions)_ |
150
+ | Phase 4 brief | `phase-4-brief.md` |
@@ -0,0 +1,82 @@
1
+ # Customer Pain Discovery Workflow
2
+ <!-- Phase 3: Find Customer Pain — Weeks 2-7 -->
3
+ <!-- Agent: Customer Discovery Specialist -->
4
+ <!-- Step-file architecture: 5 sequential steps with checkpoints -->
5
+
6
+ ## Overview
7
+
8
+ This is the most critical phase of incubation. The goal is to validate that a real, significant, and prevalent customer pain exists that can support a business. This workflow runs across Weeks 2-7, overlapping with Phase 2 (domain) and Phase 4 (solution).
9
+
10
+ **Three discovery modes** — select at the start:
11
+ - **[T] Toolkit:** Agent creates scripts. User runs real interviews. Agent synthesizes notes.
12
+ - **[S] Simulation:** AI generates synthetic customer/expert personas and simulates interviews. Clearly labeled SIMULATED.
13
+ - **[I] Integration:** Import data from Listen Labs, Maze, UserTesting, or any structured export.
14
+
15
+ Modes can be combined (e.g., run real interviews AND run synthetic simulations to fill gaps).
16
+
17
+ **Execution mode:**
18
+ - **Guided:** Pause and review at every template-output checkpoint
19
+ - **Yolo:** Run all 5 steps autonomously, present all outputs at the end
20
+
21
+ ---
22
+
23
+ ## Pre-flight Check
24
+
25
+ Before starting, the agent should:
26
+ 1. Load `{project-root}/ventureOS/config.yaml`
27
+ 2. Load `{project-root}/ventureOS/_memory/venture-sidecar/venture-state.yaml`
28
+ 3. Load `pain-hypothesis.md` if it exists (from Phase 2)
29
+ 4. Load `stakeholder-map.md` if it exists (from Phase 2)
30
+ 5. Load `{project-root}/ventureOS/data/scoring/pain-scoring.yaml` (FIP framework)
31
+ 6. Confirm: discovery mode (T/S/I) and execution mode (Guided/Yolo)
32
+
33
+ ---
34
+
35
+ ## Step 1: Pain Hypothesis and Interview Preparation
36
+ **File:** `{project-root}/ventureOS/workflows/3-find-pain/customer-pain-discovery/step-1-pain-hypothesis.md`
37
+
38
+ ---
39
+
40
+ ## Step 2: Interviews (Real, Synthetic, or Imported)
41
+ **File:** `{project-root}/ventureOS/workflows/3-find-pain/customer-pain-discovery/step-2-interviews.md`
42
+
43
+ ---
44
+
45
+ ## Step 3: Synthesis (Run after each interview batch)
46
+ **File:** `{project-root}/ventureOS/workflows/3-find-pain/customer-pain-discovery/step-3-synthesis.md`
47
+
48
+ ---
49
+
50
+ ## Step 4: Pain Atomization and Scoring
51
+ **File:** `{project-root}/ventureOS/workflows/3-find-pain/customer-pain-discovery/step-4-pain-atomization.md`
52
+
53
+ ---
54
+
55
+ ## Step 5: Pain Journey Map and ICP
56
+ **File:** `{project-root}/ventureOS/workflows/3-find-pain/customer-pain-discovery/step-5-pain-journey-map.md`
57
+
58
+ ---
59
+
60
+ ## Completion Criteria
61
+
62
+ Phase 3 is complete when ALL of the following guiding questions are answered with evidence:
63
+ - [ ] What do people need? (primary pain identified)
64
+ - [ ] Can the team prioritize the most important pain to solve?
65
+ - [ ] Is the pain frequent, intense, and/or prevalent enough to support a business? (FIP ≥ 3.0 average)
66
+ - [ ] Has the team validated the pain exists? (minimum 10 interviews recommended)
67
+ - [ ] Can they identify their ideal customer? (ICP defined)
68
+ - [ ] Does the team understand who the buyer is? (buyer vs. user mapped)
69
+
70
+ ---
71
+
72
+ ## Key Outputs
73
+
74
+ | Artifact | File | Status |
75
+ |---------|------|--------|
76
+ | Interview scripts | `interviews/scripts/` | |
77
+ | Interview notes | `interviews/notes/` | |
78
+ | Interview synthesis | `interview-synthesis.md` | |
79
+ | Pain atomization matrix | `pain-atomization.md` | |
80
+ | Pain scores (FIP) | _(in pain-atomization.md)_ | |
81
+ | Customer pain journey map | `pain-journey-map.md` | |
82
+ | ICP profile | `icp-profile.md` | |
@@ -0,0 +1,81 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <workflow-instructions name="feasibility-assessment">
3
+
4
+ <overview>
5
+ Assess whether the wedge solution can be built. Evaluate all four routes: Build (internal development), Buy (acquire technology), Partner (use a third party), Invest (stake in an existing company). Map the technology ecosystem. Recommend the optimal implementation approach.
6
+ </overview>
7
+
8
+ <step n="1" name="solution-requirements">
9
+ <title>Define Technical Requirements</title>
10
+ <agent>product-strategist</agent>
11
+ <instructions>
12
+ Load wedge-definition.md and value-proposition.md.
13
+ Define the technical requirements for the wedge:
14
+ 1. Core capabilities required (what must the system do?)
15
+ 2. Data requirements (what data is needed? where does it come from?)
16
+ 3. Integration requirements (what systems must it connect to?)
17
+ 4. AI/ML requirements (if applicable)
18
+ 5. Security and compliance requirements
19
+ 6. Scalability requirements
20
+ Document in solution-feasibility.md Step 1 section.
21
+ </instructions>
22
+ </step>
23
+
24
+ <step n="2" name="build-buy-partner">
25
+ <title>Build / Buy / Partner / Invest Analysis</title>
26
+ <agent>product-strategist</agent>
27
+ <instructions>
28
+ For each route, assess feasibility using the solution-feasibility.md template:
29
+
30
+ BUILD: Can we build the core capability in-house? What tech stack? What team? Timeline?
31
+ BUY: Are there existing products or APIs that provide this capability? (Web search for options)
32
+ PARTNER: Are there companies with this capability we could white-label, resell, or integrate with?
33
+ INVEST: Are there early-stage companies with this capability worth investing in?
34
+
35
+ Use web search to find candidate technologies, APIs, and partners for BUY/PARTNER routes.
36
+ Score each option 1-5 on feasibility.
37
+ Recommend a route (or hybrid approach).
38
+ </instructions>
39
+ <template-output file="{output_folder}/{venture_name}/solution-feasibility.md">
40
+ Save feasibility analysis with all four routes evaluated.
41
+ </template-output>
42
+ </step>
43
+
44
+ <step n="3" name="ecosystem-map">
45
+ <title>Ecosystem Mapping</title>
46
+ <agent>product-strategist</agent>
47
+ <instructions>
48
+ Map the technology ecosystem the solution operates within using the ecosystem-map.md template:
49
+ 1. Key suppliers and enablers (what does our solution depend on?)
50
+ 2. Competitors and substitutes (using web research — already done in Phase 2 but refresh for solution context)
51
+ 3. Complementors (who enhances our solution or vice versa)
52
+ 4. Platform dependencies (APIs, data platforms, cloud providers)
53
+ 5. Integration landscape (what systems our ICP already uses that we must integrate with)
54
+ 6. Partnership candidates — who would make a valuable partnership?
55
+
56
+ Use web search to identify technology players, platforms, and ecosystem participants.
57
+ </instructions>
58
+ <template-output file="{output_folder}/{venture_name}/ecosystem-map.md">
59
+ Save ecosystem map with partnership candidates.
60
+ </template-output>
61
+ </step>
62
+
63
+ <step n="4" name="feasibility-verdict">
64
+ <title>Feasibility Verdict and Build Plan</title>
65
+ <agent>product-strategist</agent>
66
+ <instructions>
67
+ Produce the feasibility verdict:
68
+ 1. Overall feasibility: Feasible / Feasible with caveats / Not feasible
69
+ 2. Recommended implementation approach (build/buy/partner/invest or hybrid)
70
+ 3. Biggest technical risk and mitigation
71
+ 4. Prototype-to-wedge build plan (phases and timelines)
72
+ 5. Mothership technology assets that can accelerate development
73
+
74
+ Update venture-state.yaml: completed_artifacts, guiding_questions.solution (technical feasibility question)
75
+ </instructions>
76
+ <state-update file="{project-root}/ventureOS/_memory/venture-sidecar/venture-state.yaml">
77
+ Update: completed_artifacts (solution-feasibility, ecosystem-map), guiding_questions.solution
78
+ </state-update>
79
+ </step>
80
+
81
+ </workflow-instructions>
@@ -0,0 +1,29 @@
1
+ # VB Workflow: Feasibility Assessment (Phase 4)
2
+ name: feasibility-assessment
3
+ description: "Technical feasibility analysis for the wedge solution. Evaluates build/buy/partner/invest options. Maps the technology ecosystem and identifies the recommended implementation approach."
4
+ author: "VB"
5
+
6
+ config_source: "{project-root}/ventureOS/config.yaml"
7
+ output_folder: "{config_source}:output_folder"
8
+ venture_name: "{config_source}:venture_name"
9
+ user_name: "{config_source}:user_name"
10
+ communication_language: "{config_source}:communication_language"
11
+ date: system-generated
12
+
13
+ installed_path: "{project-root}/ventureOS/workflows/4-define-solution/feasibility-assessment"
14
+ instructions: "{installed_path}/instructions.xml"
15
+
16
+ templates:
17
+ - "{project-root}/ventureOS/data/templates/solution-feasibility.md"
18
+ - "{project-root}/ventureOS/data/templates/ecosystem-map.md"
19
+
20
+ tags:
21
+ - feasibility
22
+ - technical-assessment
23
+ - ecosystem-map
24
+ - phase-4
25
+
26
+ execution_hints:
27
+ interactive: true
28
+ autonomous: true
29
+ web_search_required: true
@@ -0,0 +1,66 @@
1
+ # Step 1: Wedge Hypothesis Generation
2
+ <!-- Phase 4, Step 1 — Week 4 -->
3
+ <!-- Agent: Product Strategist -->
4
+
5
+ ## Objective
6
+ Generate 3-5 wedge entry point options, evaluate them, and select the most promising wedge to develop. Define the wedge clearly: smallest sellable product, target customer, and scaling hypothesis.
7
+
8
+ ---
9
+
10
+ ## 1.1 Run Wedge Storming Exercise
11
+
12
+ Using the "wedge-storm" brainstorming technique from `brainstorming-techniques.csv`:
13
+
14
+ 1. Load `pain-atomization.md` (primary pain) and `pain-journey-map.md` (solution entry points)
15
+ 2. Generate 5-10 wedge ideas — each answering: "What is the smallest part of the solution we could build and sell first?"
16
+ 3. For each wedge idea:
17
+ - Name / short description
18
+ - What specific pain does it solve?
19
+ - Who specifically uses it?
20
+ - How is it delivered / what does it consist of?
21
+ - What is the MINIMUM to make it useful?
22
+ - What does success look like for the customer in month 1?
23
+
24
+ ---
25
+
26
+ ## 1.2 Evaluate Wedge Options
27
+
28
+ Score each wedge option on:
29
+
30
+ | Criterion | Why it matters |
31
+ |-----------|---------------|
32
+ | Pain specificity | Does it solve the highest FIP pain? |
33
+ | Time to build | Can we prototype in 2-4 weeks? |
34
+ | Differentiation | Is it clearly different from what exists? |
35
+ | Customer desirability | Would the ICP actually use this? |
36
+ | Mothership leverage | Can we use mothership assets to accelerate? |
37
+ | Scalability | Does this wedge grow toward the big vision? |
38
+
39
+ Score 1-5 per criterion. Select the highest-scoring option.
40
+
41
+ ---
42
+
43
+ ## 1.3 Define the Selected Wedge
44
+
45
+ Using the `wedge-definition.md` template, define the winning wedge:
46
+ - What it is (1-2 sentences)
47
+ - Who it's for (specific ICP segment — as narrow as possible)
48
+ - What specific atomic pain it addresses
49
+ - What the core mechanism is (how it works)
50
+ - What primary value it creates (specific: saves X hours, reduces Y cost)
51
+ - How it's differentiated from alternatives
52
+ - The wedge-to-vision scaling hypothesis
53
+
54
+ ---
55
+
56
+ ## 1.4 Checkpoint
57
+
58
+ **GUIDED MODE:** Present wedge options and selected wedge to user. Ask: "Does this feel like the right starting point? Is the wedge small enough and differentiated enough?"
59
+
60
+ **YOLO MODE:** Proceed to Step 2.
61
+
62
+ ---
63
+
64
+ ## Step 1 Outputs
65
+ - `wedge-definition.md` (initial version — to be refined in Step 4)
66
+ - Updated `venture-state.yaml`: hypotheses.wedge, hypotheses.solution
@@ -0,0 +1,81 @@
1
+ # Step 2: Value Propositions and Concept Cards
2
+ <!-- Phase 4, Step 2 — Weeks 4-5 -->
3
+ <!-- Agent: Product Strategist + Customer Discovery -->
4
+
5
+ ## Objective
6
+ Develop and test value propositions for the wedge. Create concept cards for customer testing. Run value prop testing (real interviews or synthetic). Select the winning value proposition.
7
+
8
+ ---
9
+
10
+ ## 2.1 Value Proposition Sprint
11
+
12
+ Using the "value-prop-sprint" brainstorming technique from `brainstorming-techniques.csv`:
13
+
14
+ 1. Load `wedge-definition.md` and `icp-profile.md`
15
+ 2. Generate 5+ value proposition statements using the format:
16
+ > "For [ICP], who [pain], [venture name] is a [category] that [benefit]. Unlike [alternative], we [differentiator]."
17
+ 3. For each VP: identify the core benefit, the key differentiator, and the customer emotion it targets
18
+
19
+ Fill in the `value-proposition.md` template with all candidate VPs.
20
+
21
+ ---
22
+
23
+ ## 2.2 Create Concept Cards
24
+
25
+ Using the `concept-card.md` template, create 3-5 concept cards representing different solution directions (or value proposition framings):
26
+
27
+ For each concept card:
28
+ - Problem statement (in customer language)
29
+ - Solution concept (plain language, no jargon)
30
+ - How it works (3-4 steps)
31
+ - Key benefit (one bold statement)
32
+ - Unlike alternatives section
33
+ - Visual description for interview use
34
+
35
+ Save cards to `{output_folder}/{venture_name}/concept-cards/card-{N}.md`
36
+
37
+ ---
38
+
39
+ ## 2.3 Test Value Propositions
40
+
41
+ **Option A: Real Concept Card Interviews**
42
+ Using the interview script from Phase 3 (concept card section):
43
+ 1. Run 5-10 concept card interviews with ICP
44
+ 2. Show each concept card and probe: resonance, differentiation, willingness to use/pay
45
+ 3. Capture scores and quotes per card
46
+
47
+ **Option B: Synthetic Value Prop Testing**
48
+ Using the "synthetic-value-prop-testing" tool from `synthetic-tools.csv`:
49
+ 1. Generate ICP personas from interview data
50
+ 2. Run each persona through all 5 concept cards
51
+ 3. Capture simulated reactions, resonance scores, objections
52
+ 4. Label ALL output: "⚠️ SIMULATED — Not real customer data"
53
+
54
+ ---
55
+
56
+ ## 2.4 Synthesize Testing Results
57
+
58
+ Compile concept card / VP testing results:
59
+ - Resonance score per concept card (1-5)
60
+ - % who would use each
61
+ - Top objections per card
62
+ - Key quotes from testing
63
+ - Winner: which concept card / VP had the strongest resonance?
64
+
65
+ Update `value-proposition.md` with testing results.
66
+ Update `wedge-definition.md` with the validated value proposition.
67
+
68
+ ---
69
+
70
+ ## 2.5 Checkpoint
71
+
72
+ **GUIDED MODE:** Present value prop testing results. Ask: "Does the winning value prop feel right? Should we refine before moving to prototype?"
73
+
74
+ **YOLO MODE:** Proceed to Step 3.
75
+
76
+ ---
77
+
78
+ ## Step 2 Outputs
79
+ - `value-proposition.md` (with testing results)
80
+ - `concept-cards/card-{N}.md` (3-5 cards)
81
+ - Updated `wedge-definition.md`