@c0x12c/ai-toolkit 1.15.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 (255) hide show
  1. package/.claude-plugin/marketplace.json +16 -0
  2. package/.claude-plugin/plugin.json +12 -0
  3. package/README.md +439 -0
  4. package/VERSION +1 -0
  5. package/agents/design-critic.md +127 -0
  6. package/agents/idea-killer.md +72 -0
  7. package/agents/infrastructure-expert.md +49 -0
  8. package/agents/micronaut-backend-expert.md +45 -0
  9. package/agents/phase-reviewer.md +150 -0
  10. package/agents/research-planner.md +70 -0
  11. package/agents/solution-architect-cto.md +49 -0
  12. package/agents/sre-architect.md +49 -0
  13. package/agents/team-coordinator.md +111 -0
  14. package/bin/cli.js +780 -0
  15. package/claude-md/00-header.md +39 -0
  16. package/claude-md/01-core.md +105 -0
  17. package/claude-md/05-database.md +20 -0
  18. package/claude-md/11-backend-micronaut.md +19 -0
  19. package/claude-md/20-frontend-react.md +44 -0
  20. package/claude-md/25-ux-design.md +56 -0
  21. package/claude-md/30-infrastructure.md +24 -0
  22. package/claude-md/30-project-mgmt.md +119 -0
  23. package/claude-md/40-product.md +39 -0
  24. package/claude-md/50-ops.md +34 -0
  25. package/claude-md/60-research.md +27 -0
  26. package/claude-md/90-footer.md +21 -0
  27. package/commands/spartan/brainstorm.md +134 -0
  28. package/commands/spartan/brownfield.md +157 -0
  29. package/commands/spartan/build.md +435 -0
  30. package/commands/spartan/careful.md +94 -0
  31. package/commands/spartan/commit-message.md +112 -0
  32. package/commands/spartan/content.md +17 -0
  33. package/commands/spartan/context-save.md +161 -0
  34. package/commands/spartan/contribute.md +140 -0
  35. package/commands/spartan/daily.md +42 -0
  36. package/commands/spartan/debug.md +308 -0
  37. package/commands/spartan/deep-dive.md +55 -0
  38. package/commands/spartan/deploy.md +207 -0
  39. package/commands/spartan/e2e.md +264 -0
  40. package/commands/spartan/env-setup.md +166 -0
  41. package/commands/spartan/epic.md +199 -0
  42. package/commands/spartan/fe-review.md +181 -0
  43. package/commands/spartan/figma-to-code.md +260 -0
  44. package/commands/spartan/forensics.md +46 -0
  45. package/commands/spartan/freeze.md +84 -0
  46. package/commands/spartan/fundraise.md +53 -0
  47. package/commands/spartan/gate-review.md +229 -0
  48. package/commands/spartan/gsd-upgrade.md +376 -0
  49. package/commands/spartan/guard.md +42 -0
  50. package/commands/spartan/init-project.md +178 -0
  51. package/commands/spartan/init-rules.md +298 -0
  52. package/commands/spartan/interview.md +154 -0
  53. package/commands/spartan/kickoff.md +73 -0
  54. package/commands/spartan/kotlin-service.md +109 -0
  55. package/commands/spartan/lean-canvas.md +222 -0
  56. package/commands/spartan/lint-rules.md +122 -0
  57. package/commands/spartan/map-codebase.md +124 -0
  58. package/commands/spartan/migration.md +82 -0
  59. package/commands/spartan/next-app.md +317 -0
  60. package/commands/spartan/next-feature.md +212 -0
  61. package/commands/spartan/onboard.md +326 -0
  62. package/commands/spartan/outreach.md +16 -0
  63. package/commands/spartan/phase.md +142 -0
  64. package/commands/spartan/pitch.md +18 -0
  65. package/commands/spartan/plan.md +210 -0
  66. package/commands/spartan/pr-ready.md +202 -0
  67. package/commands/spartan/project.md +106 -0
  68. package/commands/spartan/qa.md +222 -0
  69. package/commands/spartan/research.md +254 -0
  70. package/commands/spartan/review.md +132 -0
  71. package/commands/spartan/scan-rules.md +173 -0
  72. package/commands/spartan/sessions.md +143 -0
  73. package/commands/spartan/spec.md +131 -0
  74. package/commands/spartan/startup.md +257 -0
  75. package/commands/spartan/team.md +570 -0
  76. package/commands/spartan/teardown.md +161 -0
  77. package/commands/spartan/testcontainer.md +97 -0
  78. package/commands/spartan/tf-cost.md +123 -0
  79. package/commands/spartan/tf-deploy.md +116 -0
  80. package/commands/spartan/tf-drift.md +100 -0
  81. package/commands/spartan/tf-import.md +107 -0
  82. package/commands/spartan/tf-module.md +121 -0
  83. package/commands/spartan/tf-plan.md +100 -0
  84. package/commands/spartan/tf-review.md +106 -0
  85. package/commands/spartan/tf-scaffold.md +109 -0
  86. package/commands/spartan/tf-security.md +147 -0
  87. package/commands/spartan/think.md +221 -0
  88. package/commands/spartan/unfreeze.md +13 -0
  89. package/commands/spartan/update.md +134 -0
  90. package/commands/spartan/ux.md +1233 -0
  91. package/commands/spartan/validate.md +193 -0
  92. package/commands/spartan/web-to-prd.md +706 -0
  93. package/commands/spartan/workstreams.md +109 -0
  94. package/commands/spartan/write.md +16 -0
  95. package/commands/spartan.md +386 -0
  96. package/frameworks/00-framework-comparison-guide.md +317 -0
  97. package/frameworks/01-lean-canvas.md +196 -0
  98. package/frameworks/02-design-sprint.md +304 -0
  99. package/frameworks/03-foundation-sprint.md +337 -0
  100. package/frameworks/04-business-model-canvas.md +391 -0
  101. package/frameworks/05-customer-development.md +426 -0
  102. package/frameworks/06-jobs-to-be-done.md +358 -0
  103. package/frameworks/07-mom-test.md +392 -0
  104. package/frameworks/08-value-proposition-canvas.md +488 -0
  105. package/frameworks/09-javelin-board.md +428 -0
  106. package/frameworks/10-build-measure-learn.md +467 -0
  107. package/frameworks/11-mvp-approaches.md +533 -0
  108. package/frameworks/think-before-build.md +593 -0
  109. package/lib/assembler.js +197 -0
  110. package/lib/assembler.test.js +159 -0
  111. package/lib/detector.js +166 -0
  112. package/lib/detector.test.js +221 -0
  113. package/lib/packs.js +16 -0
  114. package/lib/resolver.js +272 -0
  115. package/lib/resolver.test.js +298 -0
  116. package/lib/worktree.sh +104 -0
  117. package/package.json +50 -0
  118. package/packs/backend-micronaut.yaml +35 -0
  119. package/packs/backend-nodejs.yaml +15 -0
  120. package/packs/backend-python.yaml +15 -0
  121. package/packs/core.yaml +37 -0
  122. package/packs/database.yaml +21 -0
  123. package/packs/frontend-react.yaml +24 -0
  124. package/packs/infrastructure.yaml +40 -0
  125. package/packs/ops.yaml +16 -0
  126. package/packs/packs.compiled.json +371 -0
  127. package/packs/product.yaml +22 -0
  128. package/packs/project-mgmt.yaml +24 -0
  129. package/packs/research.yaml +39 -0
  130. package/packs/shared-backend.yaml +14 -0
  131. package/packs/ux-design.yaml +21 -0
  132. package/rules/backend-micronaut/API_DESIGN.md +313 -0
  133. package/rules/backend-micronaut/BATCH_PROCESSING.md +92 -0
  134. package/rules/backend-micronaut/CONTROLLERS.md +388 -0
  135. package/rules/backend-micronaut/KOTLIN.md +414 -0
  136. package/rules/backend-micronaut/RETROFIT_PLACEMENT.md +290 -0
  137. package/rules/backend-micronaut/SERVICES_AND_BEANS.md +325 -0
  138. package/rules/core/NAMING_CONVENTIONS.md +208 -0
  139. package/rules/core/SKILL_AUTHORING.md +174 -0
  140. package/rules/core/TIMEZONE.md +316 -0
  141. package/rules/database/ORM_AND_REPO.md +289 -0
  142. package/rules/database/SCHEMA.md +146 -0
  143. package/rules/database/TRANSACTIONS.md +311 -0
  144. package/rules/frontend-react/FRONTEND.md +344 -0
  145. package/rules/infrastructure/MODULES.md +260 -0
  146. package/rules/infrastructure/NAMING.md +196 -0
  147. package/rules/infrastructure/PROVIDERS.md +309 -0
  148. package/rules/infrastructure/SECURITY.md +310 -0
  149. package/rules/infrastructure/STATE_AND_BACKEND.md +237 -0
  150. package/rules/infrastructure/STRUCTURE.md +234 -0
  151. package/rules/infrastructure/VARIABLES.md +285 -0
  152. package/rules/shared-backend/ARCHITECTURE.md +46 -0
  153. package/rules/ux-design/DESIGN_PROCESS.md +176 -0
  154. package/skills/api-endpoint-creator/SKILL.md +455 -0
  155. package/skills/api-endpoint-creator/error-handling-guide.md +244 -0
  156. package/skills/api-endpoint-creator/examples.md +522 -0
  157. package/skills/api-endpoint-creator/testing-patterns.md +302 -0
  158. package/skills/article-writing/SKILL.md +109 -0
  159. package/skills/article-writing/examples.md +59 -0
  160. package/skills/backend-api-design/SKILL.md +84 -0
  161. package/skills/backend-api-design/code-patterns.md +138 -0
  162. package/skills/brainstorm/SKILL.md +95 -0
  163. package/skills/browser-qa/SKILL.md +87 -0
  164. package/skills/browser-qa/playwright-snippets.md +110 -0
  165. package/skills/ci-cd-patterns/SKILL.md +108 -0
  166. package/skills/ci-cd-patterns/workflows.md +149 -0
  167. package/skills/competitive-teardown/SKILL.md +93 -0
  168. package/skills/competitive-teardown/example-analysis.md +50 -0
  169. package/skills/content-engine/SKILL.md +131 -0
  170. package/skills/content-engine/examples.md +72 -0
  171. package/skills/database-patterns/SKILL.md +72 -0
  172. package/skills/database-patterns/code-templates.md +114 -0
  173. package/skills/database-table-creator/SKILL.md +141 -0
  174. package/skills/database-table-creator/examples.md +552 -0
  175. package/skills/database-table-creator/kotlin-templates.md +400 -0
  176. package/skills/database-table-creator/migration-template.sql +68 -0
  177. package/skills/database-table-creator/validation-checklist.md +337 -0
  178. package/skills/deep-research/SKILL.md +80 -0
  179. package/skills/design-intelligence/SKILL.md +268 -0
  180. package/skills/design-workflow/SKILL.md +127 -0
  181. package/skills/design-workflow/checklists.md +45 -0
  182. package/skills/idea-validation/SKILL.md +129 -0
  183. package/skills/idea-validation/example-report.md +50 -0
  184. package/skills/investor-materials/SKILL.md +122 -0
  185. package/skills/investor-materials/example-outline.md +70 -0
  186. package/skills/investor-outreach/SKILL.md +112 -0
  187. package/skills/investor-outreach/examples.md +76 -0
  188. package/skills/kotlin-best-practices/SKILL.md +58 -0
  189. package/skills/kotlin-best-practices/code-patterns.md +132 -0
  190. package/skills/market-research/SKILL.md +99 -0
  191. package/skills/security-checklist/SKILL.md +65 -0
  192. package/skills/security-checklist/audit-reference.md +95 -0
  193. package/skills/service-debugging/SKILL.md +116 -0
  194. package/skills/service-debugging/common-issues.md +65 -0
  195. package/skills/startup-pipeline/SKILL.md +152 -0
  196. package/skills/terraform-best-practices/SKILL.md +244 -0
  197. package/skills/terraform-module-creator/SKILL.md +284 -0
  198. package/skills/terraform-review/SKILL.md +222 -0
  199. package/skills/terraform-security-audit/SKILL.md +280 -0
  200. package/skills/terraform-service-scaffold/SKILL.md +574 -0
  201. package/skills/testing-strategies/SKILL.md +116 -0
  202. package/skills/testing-strategies/examples.md +103 -0
  203. package/skills/testing-strategies/integration-test-setup.md +71 -0
  204. package/skills/ui-ux-pro-max/SKILL.md +238 -0
  205. package/skills/ui-ux-pro-max/data/charts.csv +26 -0
  206. package/skills/ui-ux-pro-max/data/colors.csv +97 -0
  207. package/skills/ui-ux-pro-max/data/icons.csv +101 -0
  208. package/skills/ui-ux-pro-max/data/landing.csv +31 -0
  209. package/skills/ui-ux-pro-max/data/products.csv +97 -0
  210. package/skills/ui-ux-pro-max/data/react-performance.csv +45 -0
  211. package/skills/ui-ux-pro-max/data/stacks/astro.csv +54 -0
  212. package/skills/ui-ux-pro-max/data/stacks/flutter.csv +53 -0
  213. package/skills/ui-ux-pro-max/data/stacks/html-tailwind.csv +56 -0
  214. package/skills/ui-ux-pro-max/data/stacks/jetpack-compose.csv +53 -0
  215. package/skills/ui-ux-pro-max/data/stacks/nextjs.csv +53 -0
  216. package/skills/ui-ux-pro-max/data/stacks/nuxt-ui.csv +51 -0
  217. package/skills/ui-ux-pro-max/data/stacks/nuxtjs.csv +59 -0
  218. package/skills/ui-ux-pro-max/data/stacks/react-native.csv +52 -0
  219. package/skills/ui-ux-pro-max/data/stacks/react.csv +54 -0
  220. package/skills/ui-ux-pro-max/data/stacks/shadcn.csv +61 -0
  221. package/skills/ui-ux-pro-max/data/stacks/svelte.csv +54 -0
  222. package/skills/ui-ux-pro-max/data/stacks/swiftui.csv +51 -0
  223. package/skills/ui-ux-pro-max/data/stacks/vue.csv +50 -0
  224. package/skills/ui-ux-pro-max/data/styles.csv +68 -0
  225. package/skills/ui-ux-pro-max/data/typography.csv +58 -0
  226. package/skills/ui-ux-pro-max/data/ui-reasoning.csv +101 -0
  227. package/skills/ui-ux-pro-max/data/ux-guidelines.csv +100 -0
  228. package/skills/ui-ux-pro-max/data/web-interface.csv +31 -0
  229. package/skills/ui-ux-pro-max/python-setup.md +146 -0
  230. package/skills/ui-ux-pro-max/scripts/core.py +253 -0
  231. package/skills/ui-ux-pro-max/scripts/design_system.py +1067 -0
  232. package/skills/ui-ux-pro-max/scripts/search.py +114 -0
  233. package/skills/web-to-prd/SKILL.md +478 -0
  234. package/templates/build-config.yaml +44 -0
  235. package/templates/commands-config.yaml +55 -0
  236. package/templates/competitor-analysis.md +60 -0
  237. package/templates/content/AGENT_TEMPLATE.md +47 -0
  238. package/templates/content/COMMAND_TEMPLATE.md +27 -0
  239. package/templates/content/RULE_TEMPLATE.md +40 -0
  240. package/templates/content/SKILL_TEMPLATE.md +41 -0
  241. package/templates/design-config.md +105 -0
  242. package/templates/design-doc.md +207 -0
  243. package/templates/epic.md +100 -0
  244. package/templates/feature-spec.md +181 -0
  245. package/templates/idea-canvas.md +47 -0
  246. package/templates/implementation-plan.md +159 -0
  247. package/templates/prd-template.md +86 -0
  248. package/templates/preamble.md +89 -0
  249. package/templates/project-readme.md +35 -0
  250. package/templates/quality-gates.md +230 -0
  251. package/templates/spartan-config.yaml +164 -0
  252. package/templates/user-interview.md +69 -0
  253. package/templates/validation-checklist.md +108 -0
  254. package/templates/workflow-backend-micronaut.md +409 -0
  255. package/templates/workflow-frontend-react.md +233 -0
@@ -0,0 +1,317 @@
1
+ # Startup Validation Frameworks: Complete Comparison & Usage Guide
2
+
3
+ ## Overview
4
+ This guide provides a comprehensive comparison of all major startup validation frameworks, helping you choose the right approach for your specific situation. Each framework has its strengths, and many work best when combined strategically.
5
+
6
+ ## Quick Decision Matrix
7
+
8
+ ### By Stage of Your Startup Journey
9
+
10
+ | Stage | Primary Frameworks | Why |
11
+ |-------|-------------------|-----|
12
+ | **Idea Stage** | Mom Test, JTBD, Customer Development | Need to validate problems exist |
13
+ | **Concept Validation** | Lean Canvas, Javelin Board, Value Proposition Canvas | Structure your thinking and assumptions |
14
+ | **Solution Design** | Design Sprint, Foundation Sprint, Pretotyping | Rapidly prototype and test solutions |
15
+ | **Building Phase** | MVP Approaches, Build-Measure-Learn | Create minimum viable solutions |
16
+ | **Scaling Phase** | Business Model Canvas, Customer Development (later stages) | Optimize and expand |
17
+
18
+ ### By Time Available
19
+
20
+ | Timeframe | Recommended Frameworks | Output |
21
+ |-----------|----------------------|---------|
22
+ | **1 Day** | Lean Canvas, Value Proposition Canvas | Structured hypotheses |
23
+ | **1 Week** | Design Sprint, Javelin Board experiments | Tested prototype or validated learning |
24
+ | **2-4 Weeks** | Foundation Sprint, MVP launch | Aligned team and early product |
25
+ | **Ongoing** | Build-Measure-Learn, Customer Development | Continuous validation |
26
+
27
+ ### By Primary Goal
28
+
29
+ | Goal | Best Frameworks | Key Benefit |
30
+ |------|----------------|-------------|
31
+ | **Understand Customers** | Mom Test, JTBD, Customer Development | Deep customer insights |
32
+ | **Test Business Model** | Lean Canvas, Business Model Canvas | Holistic view of business |
33
+ | **Validate Demand** | Landing Page MVP, Javelin Board | Quick market validation |
34
+ | **Design Solution** | Design Sprint, Value Proposition Canvas | User-centered design |
35
+ | **Build Quickly** | MVP Approaches, Pretotyping | Fast time to market |
36
+ | **Align Team** | Foundation Sprint, Design Sprint | Shared understanding |
37
+
38
+ ## Framework Deep Comparison
39
+
40
+ ### 1. Problem Validation Frameworks
41
+
42
+ #### The Mom Test
43
+ - **Best For**: Getting honest customer feedback
44
+ - **Time**: Ongoing, 30-min conversations
45
+ - **Output**: Validated problems and behaviors
46
+ - **Strength**: Avoids false positives
47
+ - **Weakness**: Requires practice to master
48
+ - **Combines With**: All other frameworks
49
+
50
+ #### Jobs to be Done (JTBD)
51
+ - **Best For**: Understanding customer motivations
52
+ - **Time**: 2-4 weeks research
53
+ - **Output**: Job statements and outcome metrics
54
+ - **Strength**: Deep behavioral insights
55
+ - **Weakness**: Can be abstract
56
+ - **Combines With**: Value Proposition Canvas, Design Sprint
57
+
58
+ #### Customer Development
59
+ - **Best For**: Systematic market validation
60
+ - **Time**: 3-6 months full cycle
61
+ - **Output**: Validated business model
62
+ - **Strength**: Comprehensive approach
63
+ - **Weakness**: Time intensive
64
+ - **Combines With**: Lean Canvas, Build-Measure-Learn
65
+
66
+ ### 2. Business Model Frameworks
67
+
68
+ #### Lean Canvas
69
+ - **Best For**: Early-stage startups
70
+ - **Time**: 20 minutes to 2 hours
71
+ - **Output**: 1-page business model
72
+ - **Strength**: Forces clarity and focus
73
+ - **Weakness**: Oversimplification risk
74
+ - **Combines With**: Customer Development, Javelin Board
75
+
76
+ #### Business Model Canvas
77
+ - **Best For**: Established businesses or complex models
78
+ - **Time**: 2-4 hours workshop
79
+ - **Output**: Comprehensive business model
80
+ - **Strength**: Holistic view
81
+ - **Weakness**: Can be overwhelming for startups
82
+ - **Combines With**: Value Proposition Canvas, SWOT
83
+
84
+ #### Value Proposition Canvas
85
+ - **Best For**: Product-market fit refinement
86
+ - **Time**: 2-3 hours workshop
87
+ - **Output**: Detailed value prop mapping
88
+ - **Strength**: Customer-centric design
89
+ - **Weakness**: Requires good customer data
90
+ - **Combines With**: Business Model Canvas, Design Sprint
91
+
92
+ ### 3. Rapid Design Frameworks
93
+
94
+ #### Design Sprint
95
+ - **Best For**: Specific feature/product challenges
96
+ - **Time**: 5 days
97
+ - **Output**: Tested prototype
98
+ - **Strength**: Fast, structured process
99
+ - **Weakness**: Requires full team commitment
100
+ - **Combines With**: Foundation Sprint, JTBD
101
+
102
+ #### Foundation Sprint
103
+ - **Best For**: New initiatives needing alignment
104
+ - **Time**: 2-5 days
105
+ - **Output**: Shared vision and roadmap
106
+ - **Strength**: Team alignment
107
+ - **Weakness**: Less hands-on building
108
+ - **Combines With**: Design Sprint follow-up
109
+
110
+ ### 4. Testing Frameworks
111
+
112
+ #### Javelin Board
113
+ - **Best For**: Systematic assumption testing
114
+ - **Time**: 1-2 weeks per experiment
115
+ - **Output**: Validated/invalidated assumptions
116
+ - **Strength**: Visual progress tracking
117
+ - **Weakness**: Can slow down action
118
+ - **Combines With**: Lean Canvas validation
119
+
120
+ #### Build-Measure-Learn
121
+ - **Best For**: Continuous iteration
122
+ - **Time**: 1-4 week cycles
123
+ - **Output**: Validated learning
124
+ - **Strength**: Fast feedback loops
125
+ - **Weakness**: Requires discipline
126
+ - **Combines With**: All frameworks
127
+
128
+ #### MVP Approaches
129
+ - **Best For**: First product launch
130
+ - **Time**: 1 day to 3 months
131
+ - **Output**: Market-ready minimum product
132
+ - **Strength**: Fast validation
133
+ - **Weakness**: Quality vs speed balance
134
+ - **Combines With**: Build-Measure-Learn
135
+
136
+ ## Combining Frameworks: Recommended Sequences
137
+
138
+ ### Sequence 1: Complete Validation Journey
139
+ 1. **JTBD Research** → Understand customer needs
140
+ 2. **Mom Test Interviews** → Validate problems exist
141
+ 3. **Lean Canvas** → Structure business model
142
+ 4. **Javelin Board** → Test riskiest assumptions
143
+ 5. **Design Sprint** → Create solution prototype
144
+ 6. **MVP Launch** → Validate with real users
145
+ 7. **Build-Measure-Learn** → Iterate to product-market fit
146
+
147
+ ### Sequence 2: Fast Track (30 Days)
148
+ 1. **Mom Test** (Week 1) → Problem validation
149
+ 2. **Lean Canvas** (Day 7) → Business model hypothesis
150
+ 3. **Landing Page MVP** (Week 2) → Demand validation
151
+ 4. **Concierge MVP** (Week 3-4) → Solution validation
152
+ 5. **Build-Measure-Learn** → Continuous improvement
153
+
154
+ ### Sequence 3: Enterprise/Complex Products
155
+ 1. **Foundation Sprint** → Align stakeholders
156
+ 2. **JTBD Research** → Deep customer understanding
157
+ 3. **Business Model Canvas** → Comprehensive planning
158
+ 4. **Design Sprint** → Prototype key features
159
+ 5. **Customer Development** → Systematic validation
160
+
161
+ ### Sequence 4: Technical Products
162
+ 1. **Customer Development** → Validate market need
163
+ 2. **Value Proposition Canvas** → Define clear value
164
+ 3. **API MVP** → Technical validation
165
+ 4. **Javelin Board** → Track experiments
166
+ 5. **Build-Measure-Learn** → Scale gradually
167
+
168
+ ## Common Pitfalls and How to Avoid Them
169
+
170
+ ### Pitfall 1: Framework Overload
171
+ **Problem**: Trying to use every framework
172
+ **Solution**: Pick 2-3 that match your current stage
173
+
174
+ ### Pitfall 2: Analysis Paralysis
175
+ **Problem**: Endless planning without action
176
+ **Solution**: Set time limits, bias toward testing
177
+
178
+ ### Pitfall 3: Skipping Problem Validation
179
+ **Problem**: Building solutions to non-existent problems
180
+ **Solution**: Always start with Mom Test or JTBD
181
+
182
+ ### Pitfall 4: Confirmation Bias
183
+ **Problem**: Only seeing positive signals
184
+ **Solution**: Use structured frameworks like Javelin Board
185
+
186
+ ### Pitfall 5: Premature Scaling
187
+ **Problem**: Growing before product-market fit
188
+ **Solution**: Use Build-Measure-Learn metrics
189
+
190
+ ## Metrics and Success Indicators
191
+
192
+ ### Problem Validation Metrics
193
+ - Number of problem confirmations
194
+ - Problem severity scores
195
+ - Current solution satisfaction
196
+ - Willingness to pay indicators
197
+
198
+ ### Solution Validation Metrics
199
+ - Conversion rates (interest → trial → purchase)
200
+ - Activation rates
201
+ - Retention/churn
202
+ - Net Promoter Score
203
+ - Customer Acquisition Cost vs Lifetime Value
204
+
205
+ ### Framework Success Metrics
206
+ - Time to first customer
207
+ - Pivots required
208
+ - Capital efficiency
209
+ - Team alignment scores
210
+ - Learning velocity
211
+
212
+ ## Resource Requirements
213
+
214
+ ### Minimal Resources (Solo Founder)
215
+ - Start with: Mom Test, Lean Canvas, Landing Page MVP
216
+ - Tools needed: Google Docs, simple website builder
217
+ - Time: 10-20 hours/week
218
+ - Budget: <$100/month
219
+
220
+ ### Small Team (2-5 people)
221
+ - Add: Design Sprint, Javelin Board, Build-Measure-Learn
222
+ - Tools: Miro, analytics tools, prototyping software
223
+ - Time: 2-3 days for workshops + ongoing
224
+ - Budget: $500-1000/month
225
+
226
+ ### Funded Startup (5+ people)
227
+ - Full suite: All frameworks as needed
228
+ - Tools: Professional stack
229
+ - Time: Dedicated roles
230
+ - Budget: $2000+/month
231
+
232
+ ## Quick Start Recommendations
233
+
234
+ ### If You're Starting Today
235
+ 1. **Hour 1**: Create Lean Canvas
236
+ 2. **Day 1**: List riskiest assumptions
237
+ 3. **Week 1**: Conduct 5 Mom Test interviews
238
+ 4. **Week 2**: Launch Landing Page MVP
239
+ 5. **Week 3**: Analyze and iterate
240
+
241
+ ### For B2B Startups
242
+ - Focus on: Customer Development, JTBD
243
+ - MVP type: Concierge or Wizard of Oz
244
+ - Key metric: Paid pilots
245
+
246
+ ### For B2C Startups
247
+ - Focus on: Mom Test, Design Sprint
248
+ - MVP type: Landing Page or Single Feature
249
+ - Key metric: Weekly active users
250
+
251
+ ### For Technical Founders
252
+ - Start with: Mom Test (fight the urge to build)
253
+ - Then: Lean Canvas, API MVP
254
+ - Remember: Problem validation > Technical excellence
255
+
256
+ ### For Non-Technical Founders
257
+ - Start with: Customer Development, Piecemeal MVP
258
+ - Partner or outsource technical validation
259
+ - Focus on: Business model validation
260
+
261
+ ## Action Plan Template
262
+
263
+ ### Week 1: Problem Discovery
264
+ - [ ] 10 Mom Test interviews
265
+ - [ ] JTBD research (if complex)
266
+ - [ ] Document top 3 problems
267
+
268
+ ### Week 2: Solution Ideation
269
+ - [ ] Lean Canvas workshop
270
+ - [ ] Javelin Board setup
271
+ - [ ] First experiment design
272
+
273
+ ### Week 3: Initial Testing
274
+ - [ ] Launch simplest MVP
275
+ - [ ] Set up analytics
276
+ - [ ] Daily customer feedback
277
+
278
+ ### Week 4: Learn and Iterate
279
+ - [ ] Analyze all data
280
+ - [ ] Pivot or persevere decision
281
+ - [ ] Plan next cycle
282
+
283
+ ## Conclusion
284
+
285
+ The best validation approach combines multiple frameworks strategically. Start with problem validation (Mom Test, JTBD), structure your thinking (Lean Canvas), test systematically (Javelin Board, MVPs), and iterate quickly (Build-Measure-Learn).
286
+
287
+ Remember:
288
+ - **Validation > Features**
289
+ - **Learning > Being Right**
290
+ - **Customer Truth > Your Opinion**
291
+ - **Fast Iterations > Perfect Plans**
292
+
293
+ The goal isn't to use every framework—it's to find product-market fit as efficiently as possible. Choose frameworks that address your biggest risks and unknowns, then execute with discipline and customer focus.
294
+
295
+ ## Additional Resources
296
+
297
+ ### Essential Books
298
+ 1. "The Mom Test" - Rob Fitzpatrick
299
+ 2. "The Lean Startup" - Eric Ries
300
+ 3. "Sprint" - Jake Knapp
301
+ 4. "Running Lean" - Ash Maurya
302
+ 5. "Competing Against Luck" - Clayton Christensen
303
+
304
+ ### Online Resources
305
+ - Steve Blank's blog and courses
306
+ - Strategyzer tools and resources
307
+ - GV Design Sprint resources
308
+ - Lean Startup community
309
+
310
+ ### Tools and Templates
311
+ - Miro/Mural (visual collaboration)
312
+ - Notion (documentation)
313
+ - Typeform (surveys)
314
+ - Mixpanel (analytics)
315
+ - Figma (prototyping)
316
+
317
+ Start with one framework today. Your future customers are waiting.
@@ -0,0 +1,196 @@
1
+ # Lean Canvas Framework
2
+
3
+ ## Overview
4
+ The Lean Canvas is a 1-page business model adaptation of Alex Osterwalder's Business Model Canvas, created by Ash Maurya specifically for startups. It replaces four boxes of the Business Model Canvas with boxes that are more relevant for startups: Problem, Solution, Key Metrics, and Unfair Advantage.
5
+
6
+ ## When to Use
7
+ - Early-stage startups needing to validate their business model
8
+ - When you need to quickly iterate on business ideas
9
+ - Before building an MVP to ensure problem-solution fit
10
+ - When pivoting or exploring new business directions
11
+
12
+ ## The 9 Building Blocks
13
+
14
+ ### 1. Problem (Top 3)
15
+ - List your top 1-3 problems
16
+ - Include existing alternatives (how people solve this today)
17
+ - Be specific and avoid generalizations
18
+ - Focus on problems worth solving
19
+
20
+ **Questions to ask:**
21
+ - What are the top problems your customers face?
22
+ - How are they currently solving these problems?
23
+ - What's the cost of not solving these problems?
24
+
25
+ ### 2. Customer Segments
26
+ - Define your target customers
27
+ - Identify early adopters
28
+ - Be specific (avoid "everyone")
29
+ - Consider demographics, psychographics, behaviors
30
+
31
+ **Questions to ask:**
32
+ - Who has this problem most acutely?
33
+ - Who would pay to solve this problem?
34
+ - What are their characteristics?
35
+
36
+ ### 3. Unique Value Proposition
37
+ - Single, clear, compelling message
38
+ - What makes you different and worth paying attention to
39
+ - Focus on outcomes and benefits, not features
40
+ - Should pass the "so what?" test
41
+
42
+ **Format:** [End Result] for [Target Customer] without [Current Pain]
43
+
44
+ ### 4. Solution
45
+ - Top 3 features that solve the problems
46
+ - Keep it simple and focused
47
+ - Don't over-engineer at this stage
48
+ - Should directly address the problems identified
49
+
50
+ ### 5. Channels
51
+ - Path to customers
52
+ - Consider both inbound and outbound channels
53
+ - Focus on scalable channels
54
+ - Test channels early and often
55
+
56
+ **Examples:** SEO, Content Marketing, Social Media, Direct Sales, Partners
57
+
58
+ ### 6. Revenue Streams
59
+ - Revenue model (subscription, one-time, freemium, etc.)
60
+ - Pricing strategy
61
+ - Lifetime value
62
+ - Gross margin targets
63
+
64
+ **Questions to ask:**
65
+ - What will customers actually pay for?
66
+ - How much are they willing to pay?
67
+ - How do they prefer to pay?
68
+
69
+ ### 7. Cost Structure
70
+ - Customer acquisition costs
71
+ - Distribution costs
72
+ - People costs
73
+ - Hosting/operational costs
74
+ - Keep it simple initially
75
+
76
+ ### 8. Key Metrics
77
+ - Key activities you measure
78
+ - Should indicate progress toward product/market fit
79
+ - Focus on actionable metrics, not vanity metrics
80
+ - Examples: Customer acquisition cost, Lifetime value, Churn rate, Monthly recurring revenue
81
+
82
+ ### 9. Unfair Advantage
83
+ - Cannot be easily copied or bought
84
+ - Often doesn't exist on day one
85
+ - Examples: Insider information, Expert endorsements, Network effects, Community
86
+
87
+ ## How to Use the Lean Canvas
88
+
89
+ ### Step 1: Start with Problem and Customer Segments
90
+ Always start here. If you don't have a problem worth solving for a specific customer segment, nothing else matters.
91
+
92
+ ### Step 2: Define Your Unique Value Proposition
93
+ Based on the problem and customer, craft a compelling value proposition.
94
+
95
+ ### Step 3: Outline Your Solution
96
+ Keep it minimal - just enough to test your hypothesis.
97
+
98
+ ### Step 4: Identify Channels
99
+ How will you reach your customers?
100
+
101
+ ### Step 5: Revenue Streams and Cost Structure
102
+ Build a basic financial model.
103
+
104
+ ### Step 6: Define Key Metrics
105
+ What will you measure to know if you're succeeding?
106
+
107
+ ### Step 7: Identify Unfair Advantage
108
+ What will make you defensible over time?
109
+
110
+ ## Best Practices
111
+
112
+ 1. **Time-box it**: Spend no more than 20 minutes on your first draft
113
+ 2. **Be concise**: Use short, clear phrases
114
+ 3. **Test assumptions**: Each box contains hypotheses to validate
115
+ 4. **Iterate frequently**: Update as you learn
116
+ 5. **Share and get feedback**: Don't work in isolation
117
+ 6. **Prioritize risks**: Focus on the riskiest assumptions first
118
+
119
+ ## Common Mistakes
120
+
121
+ 1. **Too many customer segments**: Start with one
122
+ 2. **Feature-focused solutions**: Focus on benefits and outcomes
123
+ 3. **Vague problems**: Be specific and measurable
124
+ 4. **Complex value propositions**: If you can't explain it simply, it's too complex
125
+ 5. **Ignoring unfair advantage**: Think about long-term defensibility
126
+
127
+ ## Validation Process
128
+
129
+ 1. **Customer interviews**: Validate problems exist
130
+ 2. **Solution interviews**: Test if your solution resonates
131
+ 3. **MVP testing**: Build minimum viable product
132
+ 4. **Metrics tracking**: Measure key indicators
133
+ 5. **Iterate or pivot**: Based on learnings
134
+
135
+ ## Tools and Resources
136
+
137
+ - **Canvanizer**: Online Lean Canvas tool
138
+ - **Leanstack**: Ash Maurya's platform
139
+ - **Strategyzer**: Business model tools
140
+ - **Books**: "Running Lean" by Ash Maurya
141
+
142
+ ## Example Questions for Each Block
143
+
144
+ ### Problem
145
+ - What are the top 3 problems?
146
+ - How do customers rank these problems?
147
+ - How are they solving them today?
148
+
149
+ ### Customer Segments
150
+ - Who are your early adopters?
151
+ - What are their demographics?
152
+ - Where do they hang out?
153
+
154
+ ### Unique Value Proposition
155
+ - What's your high-level pitch?
156
+ - Why is this different?
157
+ - Why should customers care?
158
+
159
+ ### Solution
160
+ - What's the minimum feature set?
161
+ - How does each feature solve a problem?
162
+ - What can you defer to later?
163
+
164
+ ### Channels
165
+ - How will customers find you?
166
+ - What channels do your customers use?
167
+ - Which channels are most cost-effective?
168
+
169
+ ### Revenue Streams
170
+ - What's your revenue model?
171
+ - What's the pricing strategy?
172
+ - What's the path to $100K MRR?
173
+
174
+ ### Cost Structure
175
+ - What are your biggest costs?
176
+ - What's your burn rate?
177
+ - How long is your runway?
178
+
179
+ ### Key Metrics
180
+ - What are your North Star metrics?
181
+ - What indicates product/market fit?
182
+ - What are your growth metrics?
183
+
184
+ ### Unfair Advantage
185
+ - What do you have that others don't?
186
+ - What would be hard to replicate?
187
+ - What gets stronger over time?
188
+
189
+ ## When to Move Beyond Lean Canvas
190
+
191
+ - When you've validated problem-solution fit
192
+ - When you need more detailed planning
193
+ - When you're scaling beyond early adopters
194
+ - When you need to communicate to investors
195
+
196
+ The Lean Canvas is a living document - revisit and update it regularly as you learn and grow.