@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,358 @@
1
+ # Jobs to be Done (JTBD) Framework
2
+
3
+ ## Overview
4
+ Jobs to be Done is a framework for understanding customer motivations and needs by focusing on the "job" customers are trying to accomplish rather than demographics or product features. Pioneered by Clayton Christensen and further developed by Tony Ulwick and others, JTBD shifts focus from what customers buy to why they buy it. The core insight: people don't buy products, they hire them to do a job.
5
+
6
+ ## When to Use
7
+ - Understanding true customer motivations
8
+ - Identifying innovation opportunities
9
+ - Solving product-market fit challenges
10
+ - Competitive analysis and positioning
11
+ - Feature prioritization decisions
12
+ - Market segmentation strategies
13
+ - Creating breakthrough innovations
14
+
15
+ ## Core Concepts
16
+
17
+ ### What is a "Job"?
18
+ A Job is the progress that a customer is trying to make in a particular circumstance. It has three dimensions:
19
+
20
+ 1. **Functional Job**: The practical task to accomplish
21
+ 2. **Emotional Job**: How the customer wants to feel
22
+ 3. **Social Job**: How the customer wants to be perceived
23
+
24
+ ### Job Statement Structure
25
+ "When [situation], I want to [motivation], so I can [expected outcome]."
26
+
27
+ Example: "When I'm running late for work, I want to grab breakfast quickly, so I can eat during my commute without making a mess."
28
+
29
+ ## The JTBD Process
30
+
31
+ ### Step 1: Identify Jobs
32
+
33
+ **Observation Techniques**:
34
+ 1. **Ethnographic Research**: Watch customers in their environment
35
+ 2. **Journey Mapping**: Map the entire process
36
+ 3. **Contextual Inquiry**: Understand circumstances
37
+ 4. **Diary Studies**: Track behaviors over time
38
+
39
+ **Interview Techniques**:
40
+ 1. **Timeline Interviews**: Reconstruct purchase journey
41
+ 2. **Switch Interviews**: Why did they switch solutions?
42
+ 3. **Forces of Progress**: What pushed/pulled them?
43
+ 4. **Job Story Mining**: Uncover underlying jobs
44
+
45
+ ### Step 2: Deconstruct Jobs
46
+
47
+ **Job Map Components**:
48
+ 1. **Define**: Determine objectives and plan approach
49
+ 2. **Locate**: Gather items and information needed
50
+ 3. **Prepare**: Set up the environment
51
+ 4. **Confirm**: Verify readiness to perform job
52
+ 5. **Execute**: Perform the job
53
+ 6. **Monitor**: Assess progress
54
+ 7. **Modify**: Make alterations
55
+ 8. **Conclude**: Finish the job
56
+
57
+ **Outcome Statements**:
58
+ Format: [Direction] + [Metric] + [Object] + [Contextual Clarifier]
59
+
60
+ Example: "Minimize the time it takes to find parking near the destination"
61
+
62
+ ### Step 3: Quantify Importance and Satisfaction
63
+
64
+ **Outcome-Driven Innovation (ODI) Metrics**:
65
+ - **Importance**: How important is this outcome? (1-5 scale)
66
+ - **Satisfaction**: How satisfied are you currently? (1-5 scale)
67
+ - **Opportunity Score**: Importance + (Importance - Satisfaction)
68
+
69
+ **Opportunity Algorithm**:
70
+ - Score > 15: Extreme opportunity
71
+ - Score 12-15: High opportunity
72
+ - Score 8-12: Medium opportunity
73
+ - Score < 8: Low opportunity
74
+
75
+ ### Step 4: Discover Opportunities
76
+
77
+ **Underserved Outcomes**: High importance, low satisfaction
78
+ **Overserved Outcomes**: Low importance, high satisfaction
79
+ **Table Stakes**: High importance, high satisfaction
80
+ **Irrelevant**: Low importance, varied satisfaction
81
+
82
+ ### Step 5: Position and Innovate
83
+
84
+ **Innovation Strategies**:
85
+ 1. **Improve Underserved Outcomes**: Direct innovation
86
+ 2. **Reduce Overserving**: Cut costs/features
87
+ 3. **Discover Non-Consumers**: New market creation
88
+ 4. **Change the Basis of Competition**: Reframe the job
89
+
90
+ ## JTBD Interview Techniques
91
+
92
+ ### The Timeline Interview
93
+
94
+ **Setup**: "Take me back to when you first started thinking about [buying/switching]..."
95
+
96
+ **Key Questions**:
97
+ 1. When did you first think about solving this problem?
98
+ 2. What triggered that thought?
99
+ 3. What did you do next?
100
+ 4. Who else was involved?
101
+ 5. What alternatives did you consider?
102
+ 6. What concerns did you have?
103
+ 7. What finally made you decide?
104
+
105
+ ### The Forces of Progress
106
+
107
+ **Push Forces** (Problems with current solution):
108
+ - What's not working?
109
+ - What frustrations exist?
110
+ - What triggered the search?
111
+
112
+ **Pull Forces** (Attraction to new solution):
113
+ - What caught your attention?
114
+ - What did you hope to achieve?
115
+ - What excited you?
116
+
117
+ **Anxieties** (Concerns about new solution):
118
+ - What worried you?
119
+ - What could go wrong?
120
+ - What did you fear losing?
121
+
122
+ **Habits** (Inertia keeping them in place):
123
+ - What's comfortable about status quo?
124
+ - What would be hard to change?
125
+ - What routines would be disrupted?
126
+
127
+ ### Finding Emotional and Social Jobs
128
+
129
+ **Emotional Job Questions**:
130
+ - How do you want to feel when using this?
131
+ - What emotions are you trying to avoid?
132
+ - What would make you feel successful?
133
+
134
+ **Social Job Questions**:
135
+ - How do you want others to perceive you?
136
+ - What would others think if they saw you using this?
137
+ - How does this reflect on your identity?
138
+
139
+ ## JTBD Canvas
140
+
141
+ ### Components:
142
+ 1. **Job Performer**: Who's trying to get the job done?
143
+ 2. **Job Context**: When/where does the job arise?
144
+ 3. **Job Statement**: The core functional job
145
+ 4. **Success Criteria**: How is success measured?
146
+ 5. **Obstacles**: What makes the job difficult?
147
+ 6. **Current Solutions**: What's hired today?
148
+ 7. **Emotional Aspects**: Desired feelings
149
+ 8. **Social Aspects**: Desired perceptions
150
+
151
+ ## Common Jobs Across Industries
152
+
153
+ ### B2C Examples
154
+
155
+ **Food & Beverage**:
156
+ - "Help me stay energized throughout my workday"
157
+ - "Enable me to share a memorable meal with loved ones"
158
+ - "Allow me to eat healthy without spending hours cooking"
159
+
160
+ **Transportation**:
161
+ - "Get me to my destination feeling productive"
162
+ - "Help me transport my family safely and comfortably"
163
+ - "Enable me to make a good impression when I arrive"
164
+
165
+ **Entertainment**:
166
+ - "Help me unwind after a stressful day"
167
+ - "Give me something to talk about with friends"
168
+ - "Make me feel connected to a community"
169
+
170
+ ### B2B Examples
171
+
172
+ **Software**:
173
+ - "Help me make data-driven decisions quickly"
174
+ - "Enable my team to collaborate without friction"
175
+ - "Ensure I never lose critical business data"
176
+
177
+ **Consulting**:
178
+ - "Help me look competent in front of my board"
179
+ - "Enable me to transform my organization efficiently"
180
+ - "Reduce the risk of major strategic decisions"
181
+
182
+ ## JTBD vs Other Frameworks
183
+
184
+ ### vs Personas
185
+ - **Personas**: Focus on who the customer is
186
+ - **JTBD**: Focus on what the customer is trying to do
187
+ - **Use Together**: Personas hiring for different jobs
188
+
189
+ ### vs User Stories
190
+ - **User Stories**: Feature-focused ("As a user, I want...")
191
+ - **JTBD**: Outcome-focused ("When situation, I want progress")
192
+ - **Use Together**: JTBD informs better user stories
193
+
194
+ ### vs Design Thinking
195
+ - **Design Thinking**: Broad exploration process
196
+ - **JTBD**: Specific lens for understanding needs
197
+ - **Use Together**: JTBD within design thinking process
198
+
199
+ ## Innovation Using JTBD
200
+
201
+ ### New Market Creation
202
+ Find people who have a job but:
203
+ - Can't afford current solutions
204
+ - Lack skills for current solutions
205
+ - Lack access to current solutions
206
+
207
+ Example: Minute Clinic for basic healthcare
208
+
209
+ ### Disruptive Innovation
210
+ Target overserved customers:
211
+ - Simpler solution
212
+ - Lower cost
213
+ - "Good enough" performance
214
+
215
+ Example: Google Docs vs Microsoft Office
216
+
217
+ ### Sustaining Innovation
218
+ Better serve core jobs:
219
+ - Improve important outcomes
220
+ - Integrate related jobs
221
+ - Remove barriers
222
+
223
+ Example: iPhone integrating multiple devices
224
+
225
+ ## JTBD Metrics
226
+
227
+ ### Leading Indicators
228
+ - Job completion rate
229
+ - Time to complete job
230
+ - Effort required
231
+ - Error rate
232
+ - Satisfaction scores
233
+
234
+ ### Business Metrics
235
+ - Market share among job performers
236
+ - Pricing power
237
+ - Customer lifetime value
238
+ - Word-of-mouth referrals
239
+ - Competitive win rate
240
+
241
+ ## Common Mistakes
242
+
243
+ 1. **Focusing on Activities, Not Outcomes**
244
+ - Wrong: "I want to use a spreadsheet"
245
+ - Right: "I want to understand my finances"
246
+
247
+ 2. **Being Too Specific or Too Broad**
248
+ - Too Specific: "Check email on iPhone"
249
+ - Too Broad: "Communicate"
250
+ - Just Right: "Stay connected while mobile"
251
+
252
+ 3. **Confusing Jobs with Solutions**
253
+ - Solution: "I want a faster car"
254
+ - Job: "Get to destinations quickly"
255
+
256
+ 4. **Ignoring Emotional/Social Dimensions**
257
+ - Only focusing on functional jobs
258
+ - Missing critical decision factors
259
+
260
+ 5. **Leading the Witness**
261
+ - Suggesting jobs rather than discovering
262
+ - Confirming biases
263
+
264
+ ## Tools and Resources
265
+
266
+ ### Interview Tools
267
+ - **Calendly**: Schedule interviews
268
+ - **Otter.ai**: Transcription
269
+ - **Miro/Mural**: Journey mapping
270
+ - **Dovetail**: Qualitative analysis
271
+
272
+ ### Analysis Tools
273
+ - **Opportunity Calculator**: Score outcomes
274
+ - **Job Map Templates**: Structure analysis
275
+ - **Forces Diagram**: Visualize switch forces
276
+
277
+ ### Books
278
+ - "Competing Against Luck" - Clayton Christensen
279
+ - "Jobs to be Done" - Anthony Ulwick
280
+ - "When Coffee and Kale Compete" - Alan Klement
281
+ - "Intercom on Jobs to be Done"
282
+
283
+ ## JTBD in Practice
284
+
285
+ ### Case Study: Milkshake Marketing
286
+
287
+ **The Challenge**: Fast food chain wanted to increase milkshake sales
288
+
289
+ **Traditional Approach**: Better flavors, prices, sizes based on demographics
290
+
291
+ **JTBD Approach**:
292
+ - Discovered morning commuters were biggest buyers
293
+ - Job: "Help me stay occupied during boring commute"
294
+ - Competing against: Bagels, bananas, boredom
295
+ - Solution: Thicker shakes, chunks of fruit
296
+
297
+ **Result**: Sales increased without changing core product
298
+
299
+ ### Case Study: Harvard Business School
300
+
301
+ **The Challenge**: Online education threatening traditional MBA
302
+
303
+ **JTBD Discovery**:
304
+ - Functional: Gain business knowledge
305
+ - Emotional: Feel confident in business situations
306
+ - Social: Join elite business network
307
+
308
+ **Innovation**: Hybrid programs combining online efficiency with networking
309
+
310
+ ## Quick Start Guide
311
+
312
+ ### Week 1: Job Discovery
313
+ 1. Pick a product/market to study
314
+ 2. Recruit 5-10 recent purchasers
315
+ 3. Conduct timeline interviews
316
+ 4. Map the forces of progress
317
+
318
+ ### Week 2: Job Analysis
319
+ 1. Synthesize interview findings
320
+ 2. Write job statements
321
+ 3. Map the job process
322
+ 4. Identify outcomes
323
+
324
+ ### Week 3: Opportunity Identification
325
+ 1. Survey importance/satisfaction
326
+ 2. Calculate opportunity scores
327
+ 3. Identify underserved outcomes
328
+ 4. Brainstorm solutions
329
+
330
+ ### Week 4: Solution Development
331
+ 1. Prototype solutions for top opportunities
332
+ 2. Test with job performers
333
+ 3. Measure outcome improvement
334
+ 4. Iterate based on feedback
335
+
336
+ ## Integration Checklist
337
+
338
+ ### Product Development
339
+ - [ ] Job stories in backlog
340
+ - [ ] Features mapped to outcomes
341
+ - [ ] Success metrics = job completion
342
+
343
+ ### Marketing
344
+ - [ ] Messaging addresses job progress
345
+ - [ ] Segments based on jobs not demographics
346
+ - [ ] Case studies show job success
347
+
348
+ ### Sales
349
+ - [ ] Discovery uncovers jobs
350
+ - [ ] Proposals address outcomes
351
+ - [ ] ROI based on job value
352
+
353
+ ### Strategy
354
+ - [ ] Market definition by job
355
+ - [ ] Competitive analysis by job performance
356
+ - [ ] Innovation pipeline addresses unmet outcomes
357
+
358
+ The Jobs to be Done framework fundamentally changes how we think about customers and competition. By focusing on the progress people are trying to make, rather than the products they buy, JTBD reveals opportunities for innovation that demographic analysis misses. The key is to stop asking "What would customers like?" and start asking "What are customers trying to get done?"