@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,428 @@
1
+ # Javelin Board
2
+
3
+ ## Overview
4
+ The Javelin Board is a visual validation tool created by Trevor Owens and the Lean Startup Machine team. It helps entrepreneurs systematically test their riskiest assumptions through rapid experimentation. The board guides you through customer discovery, problem validation, and solution testing in a structured, visual way that makes it easy to track progress and pivot when necessary.
5
+
6
+ ## When to Use
7
+ - Early-stage idea validation
8
+ - When you need to test assumptions quickly
9
+ - Before building any product
10
+ - When considering a pivot
11
+ - Teaching lean startup methodology
12
+ - Organizing customer discovery efforts
13
+ - Tracking validation progress visually
14
+
15
+ ## Core Philosophy
16
+ "Get out of the building" and validate your assumptions with real customers before writing a single line of code. The Javelin Board makes this process systematic and visual.
17
+
18
+ ## The Board Structure
19
+
20
+ The Javelin Board consists of several columns that guide you through the validation process:
21
+
22
+ ### 1. Customer Hypothesis
23
+ **Purpose**: Define who you think your customers are
24
+
25
+ **Format**:
26
+ - Demographics
27
+ - Behaviors
28
+ - Needs/Motivations
29
+ - Where to find them
30
+
31
+ **Example**:
32
+ "Busy working parents aged 30-45 who struggle to cook healthy meals during weekdays and currently rely on takeout 3+ times per week"
33
+
34
+ ### 2. Problem Hypothesis
35
+ **Purpose**: Define what problem you think they have
36
+
37
+ **Format**:
38
+ - Specific problem statement
39
+ - Current alternatives
40
+ - Frequency/severity
41
+ - Cost of problem
42
+
43
+ **Example**:
44
+ "They want to feed their family healthy food but don't have time to plan, shop, and cook during busy weekdays, resulting in expensive unhealthy takeout"
45
+
46
+ ### 3. Solution Hypothesis
47
+ **Purpose**: Your proposed solution (kept minimal initially)
48
+
49
+ **Format**:
50
+ - Core functionality only
51
+ - How it solves the problem
52
+ - Key differentiator
53
+ - Delivery method
54
+
55
+ **Example**:
56
+ "Weekly meal kit delivery with 30-minute healthy recipes and pre-prepped ingredients"
57
+
58
+ ### 4. Riskiest Assumption
59
+ **Purpose**: Identify what could kill your business if wrong
60
+
61
+ **Common Categories**:
62
+ - Customer doesn't exist
63
+ - Problem isn't painful enough
64
+ - Solution doesn't solve problem
65
+ - They won't pay
66
+ - Can't reach them cost-effectively
67
+
68
+ **How to Identify**:
69
+ 1. List all assumptions
70
+ 2. Rate by impact if wrong
71
+ 3. Rate by uncertainty
72
+ 4. Highest combined score = riskiest
73
+
74
+ ### 5. Experiment
75
+ **Purpose**: Design smallest test to validate assumption
76
+
77
+ **Good Experiments**:
78
+ - Can be done in 1-2 weeks
79
+ - Clear pass/fail criteria
80
+ - Minimal cost
81
+ - Direct customer contact
82
+ - Measurable results
83
+
84
+ **Experiment Types**:
85
+ - Customer interviews
86
+ - Landing pages
87
+ - Concierge service
88
+ - Wizard of Oz
89
+ - Pocket experiments
90
+ - Fake door tests
91
+
92
+ ### 6. Metrics
93
+ **Purpose**: Define success criteria before running experiment
94
+
95
+ **Format**:
96
+ - Specific number/percentage
97
+ - Time bound
98
+ - Directly related to assumption
99
+ - Realistic but meaningful
100
+
101
+ **Examples**:
102
+ - "7 out of 10 interviewees say this is a top-3 problem"
103
+ - "20% email signup conversion on landing page"
104
+ - "3 customers willing to prepay $50"
105
+
106
+ ### 7. Results
107
+ **Purpose**: Record actual outcomes
108
+
109
+ **Include**:
110
+ - Quantitative results
111
+ - Qualitative insights
112
+ - Surprising discoveries
113
+ - Next questions raised
114
+
115
+ ### 8. Learning & Pivot
116
+ **Purpose**: Decide next action based on results
117
+
118
+ **Options**:
119
+ - **Persevere**: Assumption validated, test next
120
+ - **Pivot**: Change customer, problem, or solution
121
+ - **Perish**: Kill the idea if fundamentally flawed
122
+
123
+ ## Using the Javelin Board
124
+
125
+ ### Step 1: Initial Hypotheses
126
+ Fill in customer, problem, and solution hypotheses based on your initial idea. Keep solution minimal - just enough to test.
127
+
128
+ ### Step 2: Identify Riskiest Assumption
129
+ List all assumptions and score them:
130
+ - Impact if wrong (1-10)
131
+ - Uncertainty level (1-10)
132
+ - Multiply scores
133
+ - Highest score = start here
134
+
135
+ ### Step 3: Design Experiment
136
+ Create simplest possible test:
137
+ - What exactly will you do?
138
+ - Who will you talk to?
139
+ - How many people?
140
+ - What will you ask/show?
141
+
142
+ ### Step 4: Set Success Metrics
143
+ Before running experiment:
144
+ - Define clear pass/fail criteria
145
+ - Make it quantitative
146
+ - Set realistic targets
147
+ - Write it down!
148
+
149
+ ### Step 5: Run Experiment
150
+ - Execute exactly as planned
151
+ - Don't change mid-stream
152
+ - Document everything
153
+ - Stay objective
154
+
155
+ ### Step 6: Analyze Results
156
+ - Compare to success criteria
157
+ - Look for patterns
158
+ - Note surprises
159
+ - Be honest about failure
160
+
161
+ ### Step 7: Decide Next Step
162
+ - If validated: Move to next assumption
163
+ - If failed: Pivot or persevere?
164
+ - If unclear: Design better experiment
165
+
166
+ ## Common Experiments by Stage
167
+
168
+ ### Customer Discovery Stage
169
+
170
+ **1. Problem Interviews**
171
+ - Talk to 10-20 potential customers
172
+ - Focus on their current behavior
173
+ - Don't mention your solution
174
+ - Success: 70%+ confirm problem exists
175
+
176
+ **2. Day in the Life**
177
+ - Shadow customers
178
+ - Observe pain points
179
+ - Document workarounds
180
+ - Success: Identify 3+ specific problems
181
+
182
+ **3. Online Community Research**
183
+ - Join relevant forums/groups
184
+ - Search for problem mentions
185
+ - Analyze language used
186
+ - Success: Find 50+ problem discussions
187
+
188
+ ### Problem Validation Stage
189
+
190
+ **4. Problem Ranking**
191
+ - List customer's top 5 problems
192
+ - Have them rank by importance
193
+ - Calculate average rankings
194
+ - Success: Your problem in top 3
195
+
196
+ **5. Willingness to Pay**
197
+ - "If magic solution existed, what would you pay?"
198
+ - Get specific number
199
+ - Test with 10+ customers
200
+ - Success: 50%+ would pay profitable price
201
+
202
+ **6. Current Spending**
203
+ - What do they spend on alternatives?
204
+ - Time and money
205
+ - Calculate total cost
206
+ - Success: Current cost > your price
207
+
208
+ ### Solution Validation Stage
209
+
210
+ **7. Landing Page Test**
211
+ - Create simple landing page
212
+ - Drive traffic (ads, posts)
213
+ - Measure conversion
214
+ - Success: 10%+ email signup
215
+
216
+ **8. Fake Door Test**
217
+ - Add "Buy Now" button
218
+ - "Sorry, not ready yet"
219
+ - Measure click rate
220
+ - Success: 5%+ try to buy
221
+
222
+ **9. Concierge MVP**
223
+ - Manually deliver service
224
+ - Charge real money
225
+ - Measure satisfaction
226
+ - Success: 80%+ satisfied, willing to refer
227
+
228
+ ## Advanced Techniques
229
+
230
+ ### Experiment Stacking
231
+ Run multiple experiments in parallel:
232
+ - Different customer segments
233
+ - Different problem angles
234
+ - Different channels
235
+ - Compare results
236
+
237
+ ### Cohort Analysis
238
+ Track different groups:
239
+ - By acquisition channel
240
+ - By customer type
241
+ - By problem severity
242
+ - Find best fit
243
+
244
+ ### Pivot Triggers
245
+ Clear criteria for pivoting:
246
+ - 3 failed experiments same assumption
247
+ - Customer segment doesn't exist
248
+ - Problem not painful enough
249
+ - Solution technically impossible
250
+
251
+ ## Common Pitfalls
252
+
253
+ ### 1. Solution Obsession
254
+ **Problem**: Falling in love with solution
255
+ **Fix**: Stay problem-focused longer
256
+
257
+ ### 2. Confirmation Bias
258
+ **Problem**: Only hearing what you want
259
+ **Fix**: Set metrics before experiment
260
+
261
+ ### 3. Analysis Paralysis
262
+ **Problem**: Endless research, no action
263
+ **Fix**: Time-box experiments (1-2 weeks max)
264
+
265
+ ### 4. Weak Experiments
266
+ **Problem**: Tests don't really validate
267
+ **Fix**: Higher stakes, real behavior
268
+
269
+ ### 5. Moving Goalposts
270
+ **Problem**: Changing success criteria after
271
+ **Fix**: Write metrics in permanent marker
272
+
273
+ ### 6. Premature Scaling
274
+ **Problem**: Growing before validation
275
+ **Fix**: Validate unit economics first
276
+
277
+ ## Javelin Board Templates
278
+
279
+ ### Physical Board
280
+ Materials needed:
281
+ - Large whiteboard/poster
282
+ - Sticky notes (different colors)
283
+ - Markers
284
+ - Tape
285
+
286
+ Layout:
287
+ - Columns for each section
288
+ - Rows for iterations
289
+ - Color code by status
290
+
291
+ ### Digital Board
292
+ Tools:
293
+ - Miro/Mural templates
294
+ - Trello boards
295
+ - Notion databases
296
+ - Google Sheets
297
+
298
+ Benefits:
299
+ - Remote collaboration
300
+ - Version history
301
+ - Easy updates
302
+ - Data analysis
303
+
304
+ ## Real Examples
305
+
306
+ ### Example 1: Food Delivery Startup
307
+
308
+ **Customer**: Busy urban professionals
309
+ **Problem**: Healthy lunch options take too long
310
+ **Solution**: Pre-ordered healthy lunch delivery
311
+
312
+ **Riskiest Assumption**: Will pay premium for speed
313
+ **Experiment**: Fake door test on landing page
314
+ **Metric**: 15% click "Order Now"
315
+ **Result**: 3% clicked
316
+ **Learning**: Price sensitivity higher than expected
317
+ **Pivot**: Focus on cost-effective options
318
+
319
+ ### Example 2: Fitness App
320
+
321
+ **Customer**: New moms wanting to exercise
322
+ **Problem**: Can't leave house for gym
323
+ **Solution**: Home workouts during nap time
324
+
325
+ **Riskiest Assumption**: Have 20 minutes daily
326
+ **Experiment**: 5-day workout challenge
327
+ **Metric**: 50% complete all days
328
+ **Result**: 20% completed
329
+ **Learning**: Time more fragmented than thought
330
+ **Pivot**: 5-minute micro-workouts
331
+
332
+ ### Example 3: B2B SaaS
333
+
334
+ **Customer**: Small marketing agencies
335
+ **Problem**: Client reporting takes hours weekly
336
+ **Solution**: Automated report generation
337
+
338
+ **Riskiest Assumption**: Current process painful enough
339
+ **Experiment**: Concierge service for 5 agencies
340
+ **Metric**: 3 become paying customers
341
+ **Result**: 4 paid, 1 referred others
342
+ **Learning**: Validated, expand carefully
343
+
344
+ ## Integration with Other Methods
345
+
346
+ ### With Lean Canvas
347
+ - Javelin Board validates canvas assumptions
348
+ - Each box becomes experiment series
349
+ - Results update canvas
350
+
351
+ ### With Customer Development
352
+ - Javelin Board structures discovery
353
+ - Experiments map to development stages
354
+ - Visual tracking of progress
355
+
356
+ ### With Design Sprint
357
+ - Use before sprint for validation
358
+ - Or after for testing prototype
359
+ - Experiments inform next sprint
360
+
361
+ ## Measuring Progress
362
+
363
+ ### Velocity Metrics
364
+ - Experiments per week
365
+ - Time to pivot decision
366
+ - Cost per learning
367
+
368
+ ### Quality Metrics
369
+ - Prediction accuracy
370
+ - False positive rate
371
+ - Customer insight depth
372
+
373
+ ### Business Metrics
374
+ - Time to product-market fit
375
+ - Capital efficiency
376
+ - Pivot success rate
377
+
378
+ ## Tools and Resources
379
+
380
+ ### Books
381
+ - "Lean Startup" - Eric Ries
382
+ - "Testing Business Ideas" - Strategyzer
383
+ - "The Right It" - Alberto Savoia
384
+
385
+ ### Online Tools
386
+ - Javelin Board templates
387
+ - Experiment tracking apps
388
+ - Survey tools
389
+ - Landing page builders
390
+
391
+ ### Communities
392
+ - Lean Startup Circle
393
+ - Local entrepreneur meetups
394
+ - Online founder forums
395
+
396
+ ## Quick Reference
397
+
398
+ ### Experiment Design Checklist
399
+ - [ ] Clear hypothesis stated
400
+ - [ ] Riskiest assumption identified
401
+ - [ ] Experiment under 2 weeks
402
+ - [ ] Success metric defined
403
+ - [ ] Budget under $500
404
+ - [ ] Direct customer contact
405
+
406
+ ### Good Metrics Examples
407
+ - X% say it's a top problem
408
+ - Y% willing to pay $Z
409
+ - A% complete action B
410
+ - C customers do D in timeframe E
411
+
412
+ ### Pivot Decision Framework
413
+ **Persevere if**:
414
+ - Met success metrics
415
+ - Clear path forward
416
+ - Customers pulling you
417
+
418
+ **Pivot if**:
419
+ - Failed 2-3 times
420
+ - Better opportunity found
421
+ - Fundamental flaw discovered
422
+
423
+ **Kill if**:
424
+ - No customer segment works
425
+ - Problem not real
426
+ - Can't find business model
427
+
428
+ The Javelin Board brings structure and discipline to the chaotic process of finding product-market fit. By making assumptions explicit, experiments rigorous, and decisions data-driven, it helps entrepreneurs validate ideas faster and cheaper than traditional methods. Remember: the goal isn't to be right—it's to learn fast and find what works.