@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,392 @@
1
+ # The Mom Test
2
+
3
+ ## Overview
4
+ The Mom Test is a framework for customer conversations created by Rob Fitzpatrick. It's named after the idea that you should be able to get honest, useful feedback even from your mom—who loves you and wants to support your ideas. The framework teaches how to talk to customers about their problems without biasing them with your ideas, ensuring you get truthful, actionable insights rather than false positives.
5
+
6
+ ## When to Use
7
+ - Validating business ideas before building
8
+ - Understanding customer problems deeply
9
+ - Getting honest feedback about product concepts
10
+ - Avoiding confirmation bias in customer research
11
+ - Making pivotal business decisions
12
+ - Improving existing products based on real needs
13
+
14
+ ## The Three Rules
15
+
16
+ ### Rule 1: Talk About Their Life, Not Your Idea
17
+ **Wrong**: "Do you think this is a good idea?"
18
+ **Right**: "How do you currently handle this process?"
19
+
20
+ People are naturally nice and want to be supportive. When you pitch your idea, they'll often say positive things to avoid hurting your feelings. Instead, focus on understanding their current behavior and problems.
21
+
22
+ ### Rule 2: Ask About Specifics in the Past, Not Generics or Future
23
+ **Wrong**: "Would you use something like this?"
24
+ **Right**: "When was the last time you encountered this problem? What did you do?"
25
+
26
+ Hypothetical questions get hypothetical answers. People are bad at predicting their future behavior. Focus on concrete past actions—they can't lie about what they've already done.
27
+
28
+ ### Rule 3: Talk Less, Listen More
29
+ **Wrong**: Explaining your solution for 20 minutes
30
+ **Right**: Asking good questions and shutting up
31
+
32
+ You're not there to pitch; you're there to learn. The more you talk, the less you learn. Aim for them to do 80% of the talking.
33
+
34
+ ## Good Questions vs Bad Questions
35
+
36
+ ### Bad Questions (and Why)
37
+
38
+ 1. **"Do you think this is a good idea?"**
39
+ - Opinions are worthless
40
+ - Invites flattery
41
+ - Too generic
42
+
43
+ 2. **"Would you buy this?"**
44
+ - Hypothetical future behavior
45
+ - No skin in the game
46
+ - People lie (unintentionally)
47
+
48
+ 3. **"How much would you pay?"**
49
+ - Pricing in abstract is meaningless
50
+ - No context or comparison
51
+ - Not connected to real budget
52
+
53
+ 4. **"What features would you want?"**
54
+ - Feature requests are often wrong
55
+ - Customers don't know what's possible
56
+ - Focuses on solutions not problems
57
+
58
+ 5. **"Do you have this problem?"**
59
+ - Leading question
60
+ - Binary thinking
61
+ - Lacks nuance
62
+
63
+ ### Good Questions (and Why)
64
+
65
+ 1. **"What's the hardest part about [process]?"**
66
+ - Uncovers real pain points
67
+ - Open-ended
68
+ - Focuses on problems
69
+
70
+ 2. **"When did you last encounter this problem?"**
71
+ - Specific and concrete
72
+ - Reveals frequency
73
+ - Can't be faked
74
+
75
+ 3. **"What have you done to solve this?"**
76
+ - Shows problem severity
77
+ - Reveals current solutions
78
+ - Indicates willingness to pay
79
+
80
+ 4. **"Why is that hard?"**
81
+ - Digs deeper
82
+ - Uncovers root causes
83
+ - Creates understanding
84
+
85
+ 5. **"What happens if you don't solve this?"**
86
+ - Reveals importance
87
+ - Shows consequences
88
+ - Indicates urgency
89
+
90
+ 6. **"Who else should I talk to?"**
91
+ - Expands network
92
+ - Validates patterns
93
+ - Shows ecosystem
94
+
95
+ ## The Customer Conversation Process
96
+
97
+ ### Before the Conversation
98
+
99
+ 1. **Define Learning Goals**
100
+ - What do you need to know?
101
+ - What would make you pivot?
102
+ - What assumptions are riskiest?
103
+
104
+ 2. **Prepare Good Questions**
105
+ - Focus on past behavior
106
+ - Avoid mentioning your idea
107
+ - Keep questions open-ended
108
+
109
+ 3. **Choose the Right Context**
110
+ - Casual coffee better than formal meeting
111
+ - Their environment reveals context
112
+ - Keep it conversational
113
+
114
+ ### During the Conversation
115
+
116
+ 1. **Start Broad**
117
+ - "Tell me about your role..."
118
+ - "Walk me through your day..."
119
+ - Let them guide the conversation
120
+
121
+ 2. **Zoom In on Problems**
122
+ - When they mention a challenge, dig deeper
123
+ - Ask for specific examples
124
+ - Understand the full context
125
+
126
+ 3. **Explore Current Solutions**
127
+ - What do they use now?
128
+ - What's working/not working?
129
+ - How much does it cost (time/money)?
130
+
131
+ 4. **Quantify the Problem**
132
+ - How often does this happen?
133
+ - How much time/money does it cost?
134
+ - Who else is affected?
135
+
136
+ 5. **Look for Commitment**
137
+ - Would they pay for a solution?
138
+ - Can they introduce you to others?
139
+ - Will they participate in a pilot?
140
+
141
+ ### After the Conversation
142
+
143
+ 1. **Document Immediately**
144
+ - Key quotes
145
+ - Surprising insights
146
+ - Next actions
147
+
148
+ 2. **Look for Patterns**
149
+ - Common problems across interviews
150
+ - Similar workarounds
151
+ - Consistent pain points
152
+
153
+ 3. **Update Your Hypotheses**
154
+ - What was validated?
155
+ - What was invalidated?
156
+ - What new questions emerged?
157
+
158
+ ## Advanced Techniques
159
+
160
+ ### The Problem Sandwich
161
+ When you need to test a specific idea without biasing:
162
+
163
+ 1. Start with their process/problems
164
+ 2. Briefly describe your approach (not solution)
165
+ 3. Return to their context and reactions
166
+
167
+ Example:
168
+ - "How do you currently manage inventory?"
169
+ - "Some companies track items using QR codes..."
170
+ - "What would that mean for your workflow?"
171
+
172
+ ### The Anchor and Twist
173
+ Use existing solutions as reference points:
174
+
175
+ "I noticed you use Excel for this. If you could wave a magic wand and change three things about how Excel handles this task, what would they be?"
176
+
177
+ ### The Time Machine
178
+ Understand evolution and trends:
179
+
180
+ "How did you handle this 5 years ago? What's changed? Where do you see this going in the next few years?"
181
+
182
+ ### The Budget Question
183
+ Understand real willingness to pay:
184
+
185
+ "What's your budget for solving this type of problem? What tools do you currently pay for in this category?"
186
+
187
+ ### The Referral Test
188
+ The strongest validation is an introduction:
189
+
190
+ "Who else do you know who struggles with this? Would you mind introducing me?"
191
+
192
+ ## Common Pitfalls and How to Avoid Them
193
+
194
+ ### Pitfall 1: The Pitch Reflex
195
+ **Problem**: Jumping into pitch mode when they show interest
196
+ **Solution**: Have a "learning mantra" - remind yourself you're there to learn
197
+
198
+ ### Pitfall 2: The Compliment Trap
199
+ **Problem**: Taking compliments as validation
200
+ **Solution**: Ignore compliments, dig for commitments
201
+
202
+ ### Pitfall 3: The Feature Request Spiral
203
+ **Problem**: Collecting feature requests instead of understanding problems
204
+ **Solution**: For every feature request, ask "Why? What would that let you do?"
205
+
206
+ ### Pitfall 4: The Wrong Customer
207
+ **Problem**: Talking to people who wouldn't buy anyway
208
+ **Solution**: Define and screen for your early adopters
209
+
210
+ ### Pitfall 5: The Formal Meeting
211
+ **Problem**: Formal settings create artificial responses
212
+ **Solution**: Keep it casual - coffee, lunch, or their workspace
213
+
214
+ ### Pitfall 6: The One-and-Done
215
+ **Problem**: Making decisions based on one conversation
216
+ **Solution**: Talk to at least 10-15 people before drawing conclusions
217
+
218
+ ## Segmenting and Finding Customers
219
+
220
+ ### Customer Segmentation
221
+ Before conversations, define:
222
+ - **Demographics**: Industry, role, company size
223
+ - **Behaviors**: Current solutions, frequency of problem
224
+ - **Motivations**: Goals, fears, measurement criteria
225
+
226
+ ### Finding People to Talk To
227
+
228
+ **Cold Outreach Template**:
229
+ "Hi [Name], I'm researching how [companies like yours] handle [specific process]. I'm not selling anything—just trying to understand the challenges. Could I buy you coffee and pick your brain for 20 minutes?"
230
+
231
+ **Warm Introduction Template**:
232
+ "Hi [Name], [Referrer] mentioned you're the expert on [topic]. I'm researching [specific challenge] and would love to learn from your experience. Coffee on me?"
233
+
234
+ **Where to Find Them**:
235
+ - LinkedIn (search by problem keywords)
236
+ - Industry forums and communities
237
+ - Conferences and meetups
238
+ - Existing network
239
+ - Customer support tickets
240
+
241
+ ## Commitment and Advancement
242
+
243
+ ### Types of Commitment (Increasing Strength)
244
+
245
+ 1. **Time Commitment**
246
+ - Another meeting
247
+ - Detailed follow-up
248
+ - Site visit
249
+
250
+ 2. **Reputation Commitment**
251
+ - Introduction to boss
252
+ - Referral to peers
253
+ - Public endorsement
254
+
255
+ 3. **Financial Commitment**
256
+ - Pre-order
257
+ - Letter of intent
258
+ - Pilot program payment
259
+
260
+ ### Reading the Signals
261
+
262
+ **Strong Positive Signals**:
263
+ - Asking detailed implementation questions
264
+ - Calculating ROI on the spot
265
+ - Offering to introduce you to decision makers
266
+ - Asking about pricing and timeline
267
+
268
+ **Warning Signals**:
269
+ - "That's interesting" (with no follow-up)
270
+ - Deflecting to other people
271
+ - Focusing on nice-to-haves not must-haves
272
+ - No next steps
273
+
274
+ ## Special Situations
275
+
276
+ ### B2B vs B2C
277
+
278
+ **B2B Mom Test**:
279
+ - Longer sales cycles need stronger validation
280
+ - Talk to multiple stakeholders
281
+ - Understand buying process
282
+ - Focus on ROI and metrics
283
+
284
+ **B2C Mom Test**:
285
+ - Shorter conversations
286
+ - More emphasis on behavior
287
+ - Look for emotional reactions
288
+ - Test with actual product quickly
289
+
290
+ ### Enterprise Sales
291
+ - Map the entire decision process
292
+ - Understand budget cycles
293
+ - Identify champions and blockers
294
+ - Get commitments at each level
295
+
296
+ ### Consumer Apps
297
+ - Focus on habits and triggers
298
+ - Understand competition (including doing nothing)
299
+ - Look for passion not just interest
300
+ - Test retention not just acquisition
301
+
302
+ ## Mom Test in Practice
303
+
304
+ ### Example: Productivity App
305
+
306
+ **Bad Conversation**:
307
+ You: "I'm building a productivity app that uses AI to organize your tasks. Do you think that would be useful?"
308
+ Them: "Oh yeah, that sounds really cool! I'd definitely use something like that."
309
+
310
+ **Good Conversation**:
311
+ You: "How do you currently manage your daily tasks?"
312
+ Them: "I use a mix of sticky notes and my calendar."
313
+ You: "What's the hardest part about that system?"
314
+ Them: "I often forget to check the sticky notes, and important things fall through the cracks."
315
+ You: "When did that last happen? What was the impact?"
316
+ Them: "Last week I missed a client deadline. Cost me a $5k project."
317
+ You: "What have you tried to fix this?"
318
+ Them: "I've downloaded three different apps but never stuck with them past a week."
319
+
320
+ ### Example: B2B Software
321
+
322
+ **Bad Conversation**:
323
+ You: "Would your team benefit from better analytics?"
324
+ Them: "Absolutely, we definitely need better data."
325
+
326
+ **Good Conversation**:
327
+ You: "Walk me through how your team makes data-driven decisions today."
328
+ Them: "We export from three systems into Excel and manually create reports."
329
+ You: "How long does that take?"
330
+ Them: "About 2 days per month for our analyst."
331
+ You: "What decisions are you making with these reports?"
332
+ Them: "Mainly inventory levels and marketing spend."
333
+ You: "What happens when the data is late or wrong?"
334
+ Them: "Last quarter we overordered by $50k because of stale data."
335
+
336
+ ## Tools and Resources
337
+
338
+ ### Note-Taking Tools
339
+ - Voice recorder (with permission)
340
+ - Notion/Evernote templates
341
+ - Post-interview forms
342
+ - Affinity mapping tools
343
+
344
+ ### Analysis Tools
345
+ - Customer interview matrix
346
+ - Problem/solution fit canvas
347
+ - Assumption mapper
348
+ - Pattern identification frameworks
349
+
350
+ ### Learning Resources
351
+ - "The Mom Test" book
352
+ - Customer Development Labs
353
+ - Lean Customer Development
354
+ - Practice role-plays
355
+
356
+ ## Quick Reference Card
357
+
358
+ ### Before You Go
359
+ - [ ] Clear learning goals
360
+ - [ ] Good questions prepared
361
+ - [ ] Recording method ready
362
+ - [ ] Casual setting arranged
363
+
364
+ ### Good Question Starters
365
+ - "Tell me about the last time..."
366
+ - "What's the hardest part about..."
367
+ - "Why is that important..."
368
+ - "What happens if you don't..."
369
+ - "What have you already tried..."
370
+
371
+ ### Red Flags to Avoid
372
+ - ❌ "Would you..."
373
+ - ❌ "Do you think..."
374
+ - ❌ "Will you..."
375
+ - ❌ Pitching your idea
376
+ - ❌ Asking for opinions
377
+
378
+ ### Green Flags to Seek
379
+ - ✅ Specific past examples
380
+ - ✅ Measurable impact
381
+ - ✅ Current spending
382
+ - ✅ Failed solutions
383
+ - ✅ Introduction offers
384
+
385
+ ### After the Meeting
386
+ - [ ] Document within 1 hour
387
+ - [ ] Update hypotheses
388
+ - [ ] Plan next steps
389
+ - [ ] Look for patterns
390
+ - [ ] Schedule follow-ups
391
+
392
+ The Mom Test isn't about tricking people—it's about having honest conversations that reveal the truth about customer needs. By focusing on their life instead of your idea, you'll discover real problems worth solving and avoid building something nobody wants. Remember: You're not there to be validated; you're there to learn the truth.