@booklib/core 2.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (374) hide show
  1. package/.cursor/rules/booklib-standards.mdc +40 -0
  2. package/.gemini/context.md +372 -0
  3. package/AGENTS.md +166 -0
  4. package/CHANGELOG.md +226 -0
  5. package/CLAUDE.md +81 -0
  6. package/CODE_OF_CONDUCT.md +31 -0
  7. package/CONTRIBUTING.md +304 -0
  8. package/LICENSE +21 -0
  9. package/PLAN.md +28 -0
  10. package/README.ja.md +198 -0
  11. package/README.ko.md +198 -0
  12. package/README.md +503 -0
  13. package/README.pt-BR.md +198 -0
  14. package/README.uk.md +241 -0
  15. package/README.zh-CN.md +198 -0
  16. package/SECURITY.md +9 -0
  17. package/agents/architecture-reviewer.md +136 -0
  18. package/agents/booklib-reviewer.md +90 -0
  19. package/agents/data-reviewer.md +107 -0
  20. package/agents/jvm-reviewer.md +146 -0
  21. package/agents/python-reviewer.md +128 -0
  22. package/agents/rust-reviewer.md +115 -0
  23. package/agents/ts-reviewer.md +110 -0
  24. package/agents/ui-reviewer.md +117 -0
  25. package/assets/logo.svg +36 -0
  26. package/bin/booklib-mcp.js +304 -0
  27. package/bin/booklib.js +1705 -0
  28. package/bin/skills.cjs +1292 -0
  29. package/booklib-router.mdc +36 -0
  30. package/booklib.config.json +19 -0
  31. package/commands/animation-at-work.md +10 -0
  32. package/commands/clean-code-reviewer.md +10 -0
  33. package/commands/data-intensive-patterns.md +10 -0
  34. package/commands/data-pipelines.md +10 -0
  35. package/commands/design-patterns.md +10 -0
  36. package/commands/domain-driven-design.md +10 -0
  37. package/commands/effective-java.md +10 -0
  38. package/commands/effective-kotlin.md +10 -0
  39. package/commands/effective-python.md +10 -0
  40. package/commands/effective-typescript.md +10 -0
  41. package/commands/kotlin-in-action.md +10 -0
  42. package/commands/lean-startup.md +10 -0
  43. package/commands/microservices-patterns.md +10 -0
  44. package/commands/programming-with-rust.md +10 -0
  45. package/commands/refactoring-ui.md +10 -0
  46. package/commands/rust-in-action.md +10 -0
  47. package/commands/skill-router.md +10 -0
  48. package/commands/spring-boot-in-action.md +10 -0
  49. package/commands/storytelling-with-data.md +10 -0
  50. package/commands/system-design-interview.md +10 -0
  51. package/commands/using-asyncio-python.md +10 -0
  52. package/commands/web-scraping-python.md +10 -0
  53. package/community/registry.json +1616 -0
  54. package/hooks/hooks.json +23 -0
  55. package/hooks/posttooluse-capture.mjs +67 -0
  56. package/hooks/suggest.js +153 -0
  57. package/lib/agent-behaviors.js +40 -0
  58. package/lib/agent-detector.js +96 -0
  59. package/lib/config-loader.js +39 -0
  60. package/lib/conflict-resolver.js +148 -0
  61. package/lib/context-builder.js +574 -0
  62. package/lib/discovery-engine.js +298 -0
  63. package/lib/doctor/hook-installer.js +83 -0
  64. package/lib/doctor/usage-tracker.js +87 -0
  65. package/lib/engine/ai-features.js +253 -0
  66. package/lib/engine/auditor.js +103 -0
  67. package/lib/engine/bm25-index.js +178 -0
  68. package/lib/engine/capture.js +120 -0
  69. package/lib/engine/corrections.js +198 -0
  70. package/lib/engine/doctor.js +195 -0
  71. package/lib/engine/graph-injector.js +137 -0
  72. package/lib/engine/graph.js +161 -0
  73. package/lib/engine/handoff.js +405 -0
  74. package/lib/engine/indexer.js +242 -0
  75. package/lib/engine/parser.js +53 -0
  76. package/lib/engine/query-expander.js +42 -0
  77. package/lib/engine/reranker.js +40 -0
  78. package/lib/engine/rrf.js +59 -0
  79. package/lib/engine/scanner.js +151 -0
  80. package/lib/engine/searcher.js +139 -0
  81. package/lib/engine/session-coordinator.js +306 -0
  82. package/lib/engine/session-manager.js +429 -0
  83. package/lib/engine/synthesizer.js +70 -0
  84. package/lib/installer.js +70 -0
  85. package/lib/instinct-block.js +33 -0
  86. package/lib/mcp-config-writer.js +88 -0
  87. package/lib/paths.js +57 -0
  88. package/lib/profiles/design.md +19 -0
  89. package/lib/profiles/general.md +16 -0
  90. package/lib/profiles/research-analysis.md +22 -0
  91. package/lib/profiles/software-development.md +23 -0
  92. package/lib/profiles/writing-content.md +19 -0
  93. package/lib/project-initializer.js +916 -0
  94. package/lib/registry/skills.js +102 -0
  95. package/lib/registry-searcher.js +99 -0
  96. package/lib/rules/rules-manager.js +169 -0
  97. package/lib/skill-fetcher.js +333 -0
  98. package/lib/well-known-builder.js +70 -0
  99. package/lib/wizard/index.js +404 -0
  100. package/lib/wizard/integration-detector.js +41 -0
  101. package/lib/wizard/project-detector.js +100 -0
  102. package/lib/wizard/prompt.js +156 -0
  103. package/lib/wizard/registry-embeddings.js +107 -0
  104. package/lib/wizard/skill-recommender.js +69 -0
  105. package/llms-full.txt +254 -0
  106. package/llms.txt +70 -0
  107. package/package.json +45 -0
  108. package/research-reports/2026-04-01-current-architecture.md +160 -0
  109. package/research-reports/IDEAS.md +93 -0
  110. package/rules/common/clean-code.md +42 -0
  111. package/rules/java/effective-java.md +42 -0
  112. package/rules/kotlin/effective-kotlin.md +37 -0
  113. package/rules/python/effective-python.md +38 -0
  114. package/rules/rust/rust.md +37 -0
  115. package/rules/typescript/effective-typescript.md +42 -0
  116. package/scripts/gen-llms-full.mjs +36 -0
  117. package/scripts/gen-og.mjs +142 -0
  118. package/scripts/validate-frontmatter.js +25 -0
  119. package/skills/animation-at-work/SKILL.md +270 -0
  120. package/skills/animation-at-work/assets/example_asset.txt +1 -0
  121. package/skills/animation-at-work/evals/evals.json +44 -0
  122. package/skills/animation-at-work/evals/results.json +13 -0
  123. package/skills/animation-at-work/examples/after.md +64 -0
  124. package/skills/animation-at-work/examples/before.md +35 -0
  125. package/skills/animation-at-work/references/api_reference.md +369 -0
  126. package/skills/animation-at-work/references/review-checklist.md +79 -0
  127. package/skills/animation-at-work/scripts/audit_animations.py +295 -0
  128. package/skills/animation-at-work/scripts/example.py +1 -0
  129. package/skills/clean-code-reviewer/SKILL.md +444 -0
  130. package/skills/clean-code-reviewer/audit.json +35 -0
  131. package/skills/clean-code-reviewer/evals/evals.json +185 -0
  132. package/skills/clean-code-reviewer/evals/results.json +13 -0
  133. package/skills/clean-code-reviewer/examples/after.md +48 -0
  134. package/skills/clean-code-reviewer/examples/before.md +33 -0
  135. package/skills/clean-code-reviewer/references/api_reference.md +158 -0
  136. package/skills/clean-code-reviewer/references/practices-catalog.md +282 -0
  137. package/skills/clean-code-reviewer/references/review-checklist.md +254 -0
  138. package/skills/clean-code-reviewer/scripts/pre-review.py +206 -0
  139. package/skills/data-intensive-patterns/SKILL.md +267 -0
  140. package/skills/data-intensive-patterns/assets/example_asset.txt +1 -0
  141. package/skills/data-intensive-patterns/evals/evals.json +54 -0
  142. package/skills/data-intensive-patterns/evals/results.json +13 -0
  143. package/skills/data-intensive-patterns/examples/after.md +61 -0
  144. package/skills/data-intensive-patterns/examples/before.md +38 -0
  145. package/skills/data-intensive-patterns/references/api_reference.md +34 -0
  146. package/skills/data-intensive-patterns/references/patterns-catalog.md +551 -0
  147. package/skills/data-intensive-patterns/references/review-checklist.md +193 -0
  148. package/skills/data-intensive-patterns/scripts/adr.py +213 -0
  149. package/skills/data-intensive-patterns/scripts/example.py +1 -0
  150. package/skills/data-pipelines/SKILL.md +259 -0
  151. package/skills/data-pipelines/assets/example_asset.txt +1 -0
  152. package/skills/data-pipelines/evals/evals.json +45 -0
  153. package/skills/data-pipelines/evals/results.json +13 -0
  154. package/skills/data-pipelines/examples/after.md +97 -0
  155. package/skills/data-pipelines/examples/before.md +37 -0
  156. package/skills/data-pipelines/references/api_reference.md +301 -0
  157. package/skills/data-pipelines/references/review-checklist.md +181 -0
  158. package/skills/data-pipelines/scripts/example.py +1 -0
  159. package/skills/data-pipelines/scripts/new_pipeline.py +444 -0
  160. package/skills/design-patterns/SKILL.md +271 -0
  161. package/skills/design-patterns/assets/example_asset.txt +1 -0
  162. package/skills/design-patterns/evals/evals.json +46 -0
  163. package/skills/design-patterns/evals/results.json +13 -0
  164. package/skills/design-patterns/examples/after.md +52 -0
  165. package/skills/design-patterns/examples/before.md +29 -0
  166. package/skills/design-patterns/references/api_reference.md +1 -0
  167. package/skills/design-patterns/references/patterns-catalog.md +726 -0
  168. package/skills/design-patterns/references/review-checklist.md +173 -0
  169. package/skills/design-patterns/scripts/example.py +1 -0
  170. package/skills/design-patterns/scripts/scaffold.py +807 -0
  171. package/skills/domain-driven-design/SKILL.md +142 -0
  172. package/skills/domain-driven-design/assets/example_asset.txt +1 -0
  173. package/skills/domain-driven-design/evals/evals.json +48 -0
  174. package/skills/domain-driven-design/evals/results.json +13 -0
  175. package/skills/domain-driven-design/examples/after.md +80 -0
  176. package/skills/domain-driven-design/examples/before.md +43 -0
  177. package/skills/domain-driven-design/references/api_reference.md +1 -0
  178. package/skills/domain-driven-design/references/patterns-catalog.md +545 -0
  179. package/skills/domain-driven-design/references/review-checklist.md +158 -0
  180. package/skills/domain-driven-design/scripts/example.py +1 -0
  181. package/skills/domain-driven-design/scripts/scaffold.py +421 -0
  182. package/skills/effective-java/SKILL.md +227 -0
  183. package/skills/effective-java/assets/example_asset.txt +1 -0
  184. package/skills/effective-java/evals/evals.json +46 -0
  185. package/skills/effective-java/evals/results.json +13 -0
  186. package/skills/effective-java/examples/after.md +83 -0
  187. package/skills/effective-java/examples/before.md +37 -0
  188. package/skills/effective-java/references/api_reference.md +1 -0
  189. package/skills/effective-java/references/items-catalog.md +955 -0
  190. package/skills/effective-java/references/review-checklist.md +216 -0
  191. package/skills/effective-java/scripts/checkstyle_setup.py +211 -0
  192. package/skills/effective-java/scripts/example.py +1 -0
  193. package/skills/effective-kotlin/SKILL.md +271 -0
  194. package/skills/effective-kotlin/assets/example_asset.txt +1 -0
  195. package/skills/effective-kotlin/audit.json +29 -0
  196. package/skills/effective-kotlin/evals/evals.json +45 -0
  197. package/skills/effective-kotlin/evals/results.json +13 -0
  198. package/skills/effective-kotlin/examples/after.md +36 -0
  199. package/skills/effective-kotlin/examples/before.md +38 -0
  200. package/skills/effective-kotlin/references/api_reference.md +1 -0
  201. package/skills/effective-kotlin/references/practices-catalog.md +1228 -0
  202. package/skills/effective-kotlin/references/review-checklist.md +126 -0
  203. package/skills/effective-kotlin/scripts/example.py +1 -0
  204. package/skills/effective-python/SKILL.md +441 -0
  205. package/skills/effective-python/evals/evals.json +44 -0
  206. package/skills/effective-python/evals/results.json +13 -0
  207. package/skills/effective-python/examples/after.md +56 -0
  208. package/skills/effective-python/examples/before.md +40 -0
  209. package/skills/effective-python/ref-01-pythonic-thinking.md +202 -0
  210. package/skills/effective-python/ref-02-lists-and-dicts.md +146 -0
  211. package/skills/effective-python/ref-03-functions.md +186 -0
  212. package/skills/effective-python/ref-04-comprehensions-generators.md +211 -0
  213. package/skills/effective-python/ref-05-classes-interfaces.md +188 -0
  214. package/skills/effective-python/ref-06-metaclasses-attributes.md +209 -0
  215. package/skills/effective-python/ref-07-concurrency.md +213 -0
  216. package/skills/effective-python/ref-08-robustness-performance.md +248 -0
  217. package/skills/effective-python/ref-09-testing-debugging.md +253 -0
  218. package/skills/effective-python/ref-10-collaboration.md +175 -0
  219. package/skills/effective-python/references/api_reference.md +218 -0
  220. package/skills/effective-python/references/practices-catalog.md +483 -0
  221. package/skills/effective-python/references/review-checklist.md +190 -0
  222. package/skills/effective-python/scripts/lint.py +173 -0
  223. package/skills/effective-typescript/SKILL.md +262 -0
  224. package/skills/effective-typescript/audit.json +29 -0
  225. package/skills/effective-typescript/evals/evals.json +37 -0
  226. package/skills/effective-typescript/evals/results.json +13 -0
  227. package/skills/effective-typescript/examples/after.md +70 -0
  228. package/skills/effective-typescript/examples/before.md +47 -0
  229. package/skills/effective-typescript/references/api_reference.md +118 -0
  230. package/skills/effective-typescript/references/practices-catalog.md +371 -0
  231. package/skills/effective-typescript/scripts/review.py +169 -0
  232. package/skills/kotlin-in-action/SKILL.md +261 -0
  233. package/skills/kotlin-in-action/assets/example_asset.txt +1 -0
  234. package/skills/kotlin-in-action/evals/evals.json +43 -0
  235. package/skills/kotlin-in-action/evals/results.json +13 -0
  236. package/skills/kotlin-in-action/examples/after.md +53 -0
  237. package/skills/kotlin-in-action/examples/before.md +39 -0
  238. package/skills/kotlin-in-action/references/api_reference.md +1 -0
  239. package/skills/kotlin-in-action/references/practices-catalog.md +436 -0
  240. package/skills/kotlin-in-action/references/review-checklist.md +204 -0
  241. package/skills/kotlin-in-action/scripts/example.py +1 -0
  242. package/skills/kotlin-in-action/scripts/setup_detekt.py +224 -0
  243. package/skills/lean-startup/SKILL.md +160 -0
  244. package/skills/lean-startup/assets/example_asset.txt +1 -0
  245. package/skills/lean-startup/evals/evals.json +43 -0
  246. package/skills/lean-startup/evals/results.json +13 -0
  247. package/skills/lean-startup/examples/after.md +80 -0
  248. package/skills/lean-startup/examples/before.md +34 -0
  249. package/skills/lean-startup/references/api_reference.md +319 -0
  250. package/skills/lean-startup/references/review-checklist.md +137 -0
  251. package/skills/lean-startup/scripts/example.py +1 -0
  252. package/skills/lean-startup/scripts/new_experiment.py +286 -0
  253. package/skills/microservices-patterns/SKILL.md +384 -0
  254. package/skills/microservices-patterns/evals/evals.json +45 -0
  255. package/skills/microservices-patterns/evals/results.json +13 -0
  256. package/skills/microservices-patterns/examples/after.md +69 -0
  257. package/skills/microservices-patterns/examples/before.md +40 -0
  258. package/skills/microservices-patterns/references/patterns-catalog.md +391 -0
  259. package/skills/microservices-patterns/references/review-checklist.md +169 -0
  260. package/skills/microservices-patterns/scripts/new_service.py +583 -0
  261. package/skills/programming-with-rust/SKILL.md +209 -0
  262. package/skills/programming-with-rust/evals/evals.json +37 -0
  263. package/skills/programming-with-rust/evals/results.json +13 -0
  264. package/skills/programming-with-rust/examples/after.md +107 -0
  265. package/skills/programming-with-rust/examples/before.md +59 -0
  266. package/skills/programming-with-rust/references/api_reference.md +152 -0
  267. package/skills/programming-with-rust/references/practices-catalog.md +335 -0
  268. package/skills/programming-with-rust/scripts/review.py +142 -0
  269. package/skills/refactoring-ui/SKILL.md +362 -0
  270. package/skills/refactoring-ui/assets/example_asset.txt +1 -0
  271. package/skills/refactoring-ui/evals/evals.json +45 -0
  272. package/skills/refactoring-ui/evals/results.json +13 -0
  273. package/skills/refactoring-ui/examples/after.md +85 -0
  274. package/skills/refactoring-ui/examples/before.md +58 -0
  275. package/skills/refactoring-ui/references/api_reference.md +355 -0
  276. package/skills/refactoring-ui/references/review-checklist.md +114 -0
  277. package/skills/refactoring-ui/scripts/audit_css.py +250 -0
  278. package/skills/refactoring-ui/scripts/example.py +1 -0
  279. package/skills/rust-in-action/SKILL.md +350 -0
  280. package/skills/rust-in-action/evals/evals.json +38 -0
  281. package/skills/rust-in-action/evals/results.json +13 -0
  282. package/skills/rust-in-action/examples/after.md +156 -0
  283. package/skills/rust-in-action/examples/before.md +56 -0
  284. package/skills/rust-in-action/references/practices-catalog.md +346 -0
  285. package/skills/rust-in-action/scripts/review.py +147 -0
  286. package/skills/skill-router/SKILL.md +186 -0
  287. package/skills/skill-router/evals/evals.json +38 -0
  288. package/skills/skill-router/evals/results.json +13 -0
  289. package/skills/skill-router/examples/after.md +63 -0
  290. package/skills/skill-router/examples/before.md +39 -0
  291. package/skills/skill-router/references/api_reference.md +24 -0
  292. package/skills/skill-router/references/routing-heuristics.md +89 -0
  293. package/skills/skill-router/references/skill-catalog.md +174 -0
  294. package/skills/skill-router/scripts/route.py +266 -0
  295. package/skills/spring-boot-in-action/SKILL.md +340 -0
  296. package/skills/spring-boot-in-action/evals/evals.json +39 -0
  297. package/skills/spring-boot-in-action/evals/results.json +13 -0
  298. package/skills/spring-boot-in-action/examples/after.md +185 -0
  299. package/skills/spring-boot-in-action/examples/before.md +84 -0
  300. package/skills/spring-boot-in-action/references/practices-catalog.md +403 -0
  301. package/skills/spring-boot-in-action/scripts/review.py +184 -0
  302. package/skills/storytelling-with-data/SKILL.md +241 -0
  303. package/skills/storytelling-with-data/assets/example_asset.txt +1 -0
  304. package/skills/storytelling-with-data/evals/evals.json +47 -0
  305. package/skills/storytelling-with-data/evals/results.json +13 -0
  306. package/skills/storytelling-with-data/examples/after.md +50 -0
  307. package/skills/storytelling-with-data/examples/before.md +33 -0
  308. package/skills/storytelling-with-data/references/api_reference.md +379 -0
  309. package/skills/storytelling-with-data/references/review-checklist.md +111 -0
  310. package/skills/storytelling-with-data/scripts/chart_review.py +301 -0
  311. package/skills/storytelling-with-data/scripts/example.py +1 -0
  312. package/skills/system-design-interview/SKILL.md +233 -0
  313. package/skills/system-design-interview/assets/example_asset.txt +1 -0
  314. package/skills/system-design-interview/evals/evals.json +46 -0
  315. package/skills/system-design-interview/evals/results.json +13 -0
  316. package/skills/system-design-interview/examples/after.md +94 -0
  317. package/skills/system-design-interview/examples/before.md +27 -0
  318. package/skills/system-design-interview/references/api_reference.md +582 -0
  319. package/skills/system-design-interview/references/review-checklist.md +201 -0
  320. package/skills/system-design-interview/scripts/example.py +1 -0
  321. package/skills/system-design-interview/scripts/new_design.py +421 -0
  322. package/skills/using-asyncio-python/SKILL.md +290 -0
  323. package/skills/using-asyncio-python/assets/example_asset.txt +1 -0
  324. package/skills/using-asyncio-python/evals/evals.json +43 -0
  325. package/skills/using-asyncio-python/evals/results.json +13 -0
  326. package/skills/using-asyncio-python/examples/after.md +68 -0
  327. package/skills/using-asyncio-python/examples/before.md +39 -0
  328. package/skills/using-asyncio-python/references/api_reference.md +267 -0
  329. package/skills/using-asyncio-python/references/review-checklist.md +149 -0
  330. package/skills/using-asyncio-python/scripts/check_blocking.py +270 -0
  331. package/skills/using-asyncio-python/scripts/example.py +1 -0
  332. package/skills/web-scraping-python/SKILL.md +280 -0
  333. package/skills/web-scraping-python/assets/example_asset.txt +1 -0
  334. package/skills/web-scraping-python/evals/evals.json +46 -0
  335. package/skills/web-scraping-python/evals/results.json +13 -0
  336. package/skills/web-scraping-python/examples/after.md +109 -0
  337. package/skills/web-scraping-python/examples/before.md +40 -0
  338. package/skills/web-scraping-python/references/api_reference.md +393 -0
  339. package/skills/web-scraping-python/references/review-checklist.md +163 -0
  340. package/skills/web-scraping-python/scripts/example.py +1 -0
  341. package/skills/web-scraping-python/scripts/new_scraper.py +231 -0
  342. package/skills/writing-plans/audit.json +34 -0
  343. package/tests/agent-detector.test.js +83 -0
  344. package/tests/corrections.test.js +245 -0
  345. package/tests/doctor/hook-installer.test.js +72 -0
  346. package/tests/doctor/usage-tracker.test.js +140 -0
  347. package/tests/engine/benchmark-eval.test.js +31 -0
  348. package/tests/engine/bm25-index.test.js +85 -0
  349. package/tests/engine/capture-command.test.js +35 -0
  350. package/tests/engine/capture.test.js +17 -0
  351. package/tests/engine/graph-augmented-search.test.js +107 -0
  352. package/tests/engine/graph-injector.test.js +44 -0
  353. package/tests/engine/graph.test.js +216 -0
  354. package/tests/engine/hybrid-searcher.test.js +74 -0
  355. package/tests/engine/indexer-bm25.test.js +37 -0
  356. package/tests/engine/mcp-tools.test.js +73 -0
  357. package/tests/engine/project-initializer-mcp.test.js +99 -0
  358. package/tests/engine/query-expander.test.js +36 -0
  359. package/tests/engine/reranker.test.js +51 -0
  360. package/tests/engine/rrf.test.js +49 -0
  361. package/tests/engine/srag-prefix.test.js +47 -0
  362. package/tests/instinct-block.test.js +23 -0
  363. package/tests/mcp-config-writer.test.js +60 -0
  364. package/tests/project-initializer-new-agents.test.js +48 -0
  365. package/tests/rules/rules-manager.test.js +230 -0
  366. package/tests/well-known-builder.test.js +40 -0
  367. package/tests/wizard/integration-detector.test.js +31 -0
  368. package/tests/wizard/project-detector.test.js +51 -0
  369. package/tests/wizard/prompt-session.test.js +61 -0
  370. package/tests/wizard/prompt.test.js +16 -0
  371. package/tests/wizard/registry-embeddings.test.js +35 -0
  372. package/tests/wizard/skill-recommender.test.js +34 -0
  373. package/tests/wizard/slot-count.test.js +25 -0
  374. package/vercel.json +21 -0
@@ -0,0 +1,319 @@
1
+ # The Lean Startup — Practices Catalog
2
+
3
+ Complete chapter-by-chapter catalog of practices from *The Lean Startup*
4
+ by Eric Ries.
5
+
6
+ ---
7
+
8
+ ## Part One: VISION
9
+
10
+ ### Chapter 1: Start
11
+
12
+ #### Entrepreneurship Is Management
13
+ - Startups require management — but a different kind than established companies
14
+ - Traditional management (forecasting, milestones, detailed plans) fails under extreme uncertainty
15
+ - The Lean Startup methodology provides a disciplined approach to entrepreneurship
16
+ - Success is not about the right idea; it's about the right process for discovering what works
17
+
18
+ #### The Five Principles
19
+ 1. **Entrepreneurs are everywhere** — Not just garage startups; anyone creating under extreme uncertainty
20
+ 2. **Entrepreneurship is management** — A startup is an institution that needs to be managed
21
+ 3. **Validated learning** — Startups learn what works through scientific experimentation
22
+ 4. **Build-Measure-Learn** — The fundamental feedback loop of turning ideas into products
23
+ 5. **Innovation accounting** — Boring stuff matters: measuring progress, setting milestones, prioritizing work
24
+
25
+ ---
26
+
27
+ ### Chapter 2: Define
28
+
29
+ #### What Is a Startup?
30
+ - **Definition** — A human institution designed to create a new product or service under conditions of extreme uncertainty
31
+ - **Three components**: Institution (people, organization), Product (broadly defined, including the experience), Extreme uncertainty (the key differentiator)
32
+ - Startups exist within large companies too — intrapreneurs face the same challenges
33
+
34
+ #### The Snaptax Story
35
+ - Intuit's internal startup team used lean principles within a large enterprise
36
+ - Small team, rapid iteration, validated learning with real customers
37
+ - Demonstrates that lean startup works inside established organizations
38
+
39
+ ---
40
+
41
+ ### Chapter 3: Learn
42
+
43
+ #### Validated Learning
44
+ - **Core concept** — Learning that is backed by empirical data from real customer experiments
45
+ - **Not just "we learned a lot"** — Must demonstrate concrete evidence of validated, actionable insights
46
+ - **Value vs. waste** — Any effort not directed toward learning what customers want is waste
47
+ - **The IMVU story** — Built IM add-on, launched quickly, learned customers wanted standalone product; every feature they thought was essential turned out to be wrong
48
+
49
+ #### How to Validate
50
+ - Run experiments with real customers, not focus groups or surveys alone
51
+ - Measure actual behavior, not stated preferences
52
+ - Use the scientific method: hypothesis → experiment → measurement → learning
53
+ - Validated learning is more reliable than market research or theoretical planning
54
+
55
+ #### Auditing Learning
56
+ - Ask: "What did we learn?" after every effort
57
+ - If you can't point to specific validated learnings, you may be producing waste
58
+ - Learning milestones replace traditional milestones in a startup context
59
+
60
+ ---
61
+
62
+ ### Chapter 4: Experiment
63
+
64
+ #### Strategy as Experiment
65
+ - Every strategic plan contains assumptions — treat them as hypotheses to test
66
+ - Don't just plan; experiment
67
+ - The Zappos example: tested demand for online shoes by posting shoe photos and buying from retail stores when orders came in — zero inventory risk
68
+
69
+ #### Designing Experiments
70
+ - **Clear hypothesis** — "We believe [customer segment] will [take action] because [reason]"
71
+ - **Measurable outcome** — Define success/failure criteria upfront
72
+ - **Minimum effort** — Design the smallest experiment that tests the hypothesis
73
+ - **Real customer interaction** — Test with actual customers, not internal stakeholders
74
+
75
+ #### Government and NGO Applications
76
+ - Lean Startup principles apply beyond commercial startups
77
+ - Consumer Financial Protection Bureau used lean principles for government services
78
+ - Any situation with uncertainty benefits from validated learning
79
+
80
+ ---
81
+
82
+ ## Part Two: STEER
83
+
84
+ ### Chapter 5: Leap
85
+
86
+ #### Leap-of-Faith Assumptions
87
+ - **Every business plan has assumptions** — The most important are the ones that, if wrong, doom the venture
88
+ - **Value hypothesis** — Does the product deliver value to customers? Will they use/pay for it?
89
+ - **Growth hypothesis** — How will new customers discover the product? Will growth be sustainable?
90
+ - **Analog and antilog** — Look at analogous successes (analogs) and failures (antilogs) to ground assumptions
91
+
92
+ #### Genchi Gembutsu (Go and See)
93
+ - Toyota principle: go see the problem firsthand
94
+ - Talk to customers directly; don't rely on reports and surveys alone
95
+ - Customer archetype development through direct observation
96
+ - Understand customer needs at a deep level before building solutions
97
+
98
+ #### Strategy and Assumptions
99
+ - Strategy is built on assumptions — make them explicit
100
+ - Test assumptions in order of riskiness — most dangerous first
101
+ - Don't waste time building features based on untested assumptions
102
+
103
+ ---
104
+
105
+ ### Chapter 6: Test
106
+
107
+ #### The Minimum Viable Product (MVP)
108
+ - **Definition** — The version of a product that allows a full turn of the Build-Measure-Learn loop with minimum effort
109
+ - **Purpose** — To test fundamental business hypotheses, not to build a small product
110
+ - **It will feel incomplete** — If your first product doesn't embarrass you, you launched too late
111
+
112
+ #### Types of MVPs
113
+ - **Video MVP** — Dropbox created a demo video explaining the product; measured signup interest before building
114
+ - **Concierge MVP** — Manually deliver the service to a handful of customers; learn before automating
115
+ - **Wizard of Oz MVP** — Looks automated to customers, but humans are doing the work behind the scenes
116
+ - **Landing page MVP** — Single page describing the product; measure signups or clicks to gauge interest
117
+ - **Smoke test** — Sell the product before building it; measure actual purchase intent
118
+
119
+ #### Quality and MVP
120
+ - **Remove any feature/process/effort that doesn't contribute to the learning you seek**
121
+ - Quality in MVP context means: quality of learning, not quality of product
122
+ - Customers may complain about MVP quality — that's data, not failure
123
+ - Professional customers and early adopters have different quality expectations
124
+ - Early adopters want solutions to problems; they'll tolerate imperfections
125
+
126
+ #### MVP Fears
127
+ - **Competitors will steal the idea** — Speed of iteration matters more than secrecy; if competitors can out-execute on your idea that easily, you have bigger problems
128
+ - **Brand damage** — Launch MVP under a different brand if needed; early adopters don't define your brand
129
+ - **Discouragement from negative results** — Negative results are learning; the only failure is not learning
130
+
131
+ ---
132
+
133
+ ### Chapter 7: Measure
134
+
135
+ #### Innovation Accounting
136
+ - **Three steps**: (1) Establish baseline with MVP, (2) Tune the engine toward the ideal, (3) Pivot or persevere
137
+ - **Baseline** — MVP establishes where the company actually stands on key metrics
138
+ - **Tuning** — Each iteration attempts to improve metrics from baseline toward business plan goals
139
+ - **Decision** — If tuning isn't working, it's time to pivot
140
+
141
+ #### Actionable vs. Vanity Metrics
142
+ - **Vanity metrics** — Total signups, total revenue, page views — look good but don't inform decisions
143
+ - **Actionable metrics** — Cohort analysis, per-customer metrics, conversion rates — drive specific actions
144
+ - **Three A's of good metrics**: Actionable (shows cause and effect), Accessible (everyone understands), Auditable (can verify the data)
145
+
146
+ #### Cohort Analysis
147
+ - Group customers by when they joined (cohort), not cumulative totals
148
+ - Compare cohorts to see if product changes actually improve metrics
149
+ - Example: Are customers acquired this month retaining better than last month's?
150
+
151
+ #### Split Testing (A/B Testing)
152
+ - Test product changes with controlled experiments
153
+ - Show different versions to different customer groups simultaneously
154
+ - Measure the actual impact of each change on customer behavior
155
+ - Avoid "launch and hope" — test and learn instead
156
+
157
+ #### Kanban with Validation
158
+ - Modified kanban: features progress through stages including "validated"
159
+ - A feature isn't done until it's been tested with customers and learning is captured
160
+ - Limits work-in-progress to maintain focus on learning
161
+
162
+ ---
163
+
164
+ ### Chapter 8: Pivot (or Persevere)
165
+
166
+ #### The Pivot Decision
167
+ - **Structured decision** — Not panic, not ego; data-driven through innovation accounting
168
+ - **Runway = number of pivots remaining** — Not just cash in the bank; time and pivots left
169
+ - **Regular pivot meetings** — Schedule them (e.g., monthly); don't wait for crisis
170
+ - **Telltale signs you need to pivot**: Experiments yield diminishing results, product development feels unproductive, feeling that the engine isn't working
171
+
172
+ #### Catalog of Pivots
173
+ - **Zoom-in pivot** — A single feature becomes the whole product
174
+ - **Zoom-out pivot** — The whole product becomes a feature of something larger
175
+ - **Customer segment pivot** — Same product, different target customer
176
+ - **Customer need pivot** — Same customer, different problem to solve
177
+ - **Platform pivot** — Change from application to platform (or vice versa)
178
+ - **Business architecture pivot** — Switch between high margin/low volume and low margin/high volume
179
+ - **Value capture pivot** — Change how you monetize (subscription, ads, transaction fee, etc.)
180
+ - **Engine of growth pivot** — Switch between viral, sticky, or paid growth
181
+ - **Channel pivot** — Change distribution channel (direct, retail, online, etc.)
182
+ - **Technology pivot** — Achieve the same solution using different technology
183
+
184
+ #### Pivot Success Stories
185
+ - Wealthfront pivoted from game-based stock picking to automated investment management
186
+ - Votizen pivoted through four models before finding what worked
187
+ - Each pivot preserved what was learned while changing what wasn't working
188
+
189
+ ---
190
+
191
+ ## Part Three: ACCELERATE
192
+
193
+ ### Chapter 9: Batch
194
+
195
+ #### Small Batches
196
+ - **Single-piece flow** — Complete each item fully before starting the next; counterintuitive but faster
197
+ - **The envelope-stuffing example** — Folding all letters, then stuffing all envelopes is slower than doing each letter end-to-end
198
+ - **Why small batches win**: Find quality problems sooner, reduce work-in-progress, enable faster learning loops
199
+
200
+ #### Continuous Deployment
201
+ - **Ship every change immediately** — Don't batch up releases
202
+ - **IMVU example** — Deployed 50+ times per day; immune system of automated tests
203
+ - **Andon cord** — Stop the production line when a defect is found; fix it immediately
204
+ - **Benefits**: Faster feedback, smaller blast radius for bugs, continuous learning
205
+
206
+ #### Pull, Don't Push
207
+ - **Pull system** — Only build what's needed by the next step in the process
208
+ - **Just-in-time production** — Applied to software: only build features when validated learning demands them
209
+ - **Avoid inventory** — Unvalidated features are inventory; they have carrying costs
210
+
211
+ ---
212
+
213
+ ### Chapter 10: Grow
214
+
215
+ #### Engines of Growth
216
+ - **Sticky engine** — Retain existing customers; growth = new customers > churned customers
217
+ - Key metric: customer retention rate / churn rate
218
+ - Strategy: improve product to increase retention
219
+ - Example: subscription businesses, SaaS
220
+ - **Viral engine** — Existing customers bring new customers as a side effect of usage
221
+ - Key metric: viral coefficient (must be >1 for viral growth)
222
+ - Strategy: make sharing/inviting natural to product usage
223
+ - Example: social networks, communication tools (Hotmail signature, PayPal referrals)
224
+ - **Paid engine** — Spend money to acquire customers; growth = LTV > CAC
225
+ - Key metric: customer lifetime value (LTV) minus cost of acquisition (CAC)
226
+ - Strategy: increase LTV or decrease CAC
227
+ - Example: advertising-driven businesses, enterprise sales
228
+
229
+ #### Choosing Your Engine
230
+ - **Focus on one engine at a time** — Rare to succeed at multiple simultaneously
231
+ - **Product/market fit** — When you find an engine that works, you'll know — metrics will spike
232
+ - **Sustainable growth** — New customers come from the actions of past customers (not one-time campaigns)
233
+
234
+ #### When Engines Run Out
235
+ - Every engine eventually exhausts its fuel (addressable market, viral networks, profitable channels)
236
+ - Companies need to manage growth engine transitions
237
+ - This is where established company innovation (Ch 12) becomes critical
238
+
239
+ ---
240
+
241
+ ### Chapter 11: Adapt
242
+
243
+ #### Five Whys
244
+ - **Root cause analysis** — Ask "why?" five times to get to the root of a problem
245
+ - **Proportional investment** — Invest proportionally to the severity; small problems get small fixes
246
+ - **How to apply**: Problem → Why? → Why? → Why? → Why? → Why? → Root cause → Proportional fix
247
+ - **Common pattern**: Technical problems often have human/process root causes
248
+ - **Avoid Five Blames** — Focus on systems and processes, not people
249
+
250
+ #### Building an Adaptive Organization
251
+ - **Speed regulators** — Five Whys acts as a natural speed regulator; problems slow you down until fixed
252
+ - **Training and process** — Invest in training when Five Whys reveals skill gaps
253
+ - **Tolerance for failure** — Build a culture that accepts mistakes as learning opportunities
254
+ - **Simplicity** — Start simple: pick one Five Whys area, run a session, implement the smallest fix
255
+
256
+ #### Getting Started with Five Whys
257
+ - Requires executive buy-in and a facilitator
258
+ - Start with a specific, narrow problem domain
259
+ - Be tolerant of first-time mistakes; the process improves with practice
260
+ - Ensure everyone affected by the problem is in the room
261
+
262
+ ---
263
+
264
+ ### Chapter 12: Innovate
265
+
266
+ #### Innovation Sandbox
267
+ - **Create a protected space** — Innovation teams need protection from the parent organization's processes
268
+ - **Boundaries**: Defined customer segment, limited scope, time-boxed experiments, small team
269
+ - **Team autonomy** — Cross-functional team with authority to build, market, and deploy within sandbox
270
+ - **Metrics-based accountability** — Innovation accounting inside the sandbox; standard metrics outside
271
+
272
+ #### Internal Startup Teams
273
+ - **Scarce but dedicated resources** — Small team fully devoted, not shared across projects
274
+ - **Independent development authority** — Can develop and deploy without organizational approvals
275
+ - **Reporting structure** — Report to senior leadership, not middle management layers
276
+ - **Personal stake** — Team members should have meaningful personal investment in the outcome
277
+
278
+ #### Protecting the Parent
279
+ - **Portfolio management** — Manage internal startups alongside core business
280
+ - **Handoff process** — When sandbox succeeds, integrate the innovation into the main organization
281
+ - **Culture clash** — Innovation team culture will differ from parent; manage the tension intentionally
282
+
283
+ #### Shusa (Chief Engineer) Concept
284
+ - Toyota's concept of a heavyweight project leader
285
+ - One person responsible for the complete customer experience
286
+ - Cuts across organizational silos to deliver integrated value
287
+
288
+ ---
289
+
290
+ ### Chapter 13: Epilogue — Waste Not
291
+
292
+ #### The Biggest Waste
293
+ - Building products nobody wants is the greatest waste in startups
294
+ - All the efficient processes in the world don't matter if you're building the wrong thing
295
+ - Lean Startup is about eliminating waste through validated learning
296
+
297
+ #### Connection to Lean Manufacturing
298
+ - Toyota Production System inspired the methodology
299
+ - Just-in-time, small batches, andon cord, continuous improvement (kaizen)
300
+ - Applied to product development: just-in-time learning, small experiment batches, stop-the-line for learning failures
301
+
302
+ #### Organizational Superpowers
303
+ - Companies that master validated learning have a structural advantage
304
+ - Speed of learning, not speed of production, is the competitive moat
305
+ - Every organization can adopt these practices regardless of size or industry
306
+
307
+ ---
308
+
309
+ ### Chapter 14: Join the Movement
310
+
311
+ #### The Lean Startup Movement
312
+ - Community of practice spanning industries and geographies
313
+ - Conferences, meetups, online resources for practitioners
314
+ - Lean Startup principles as organizational capability, not just a phase
315
+
316
+ #### Long-Term Vision
317
+ - Build organizations that can sustain innovation over decades
318
+ - Balance between exploiting current business and exploring new opportunities
319
+ - The goal is not one successful product but a learning organization
@@ -0,0 +1,137 @@
1
+ # The Lean Startup — Strategy Review Checklist
2
+
3
+ Systematic checklist for reviewing startup/product strategies against the 14 chapters
4
+ from *The Lean Startup* by Eric Ries.
5
+
6
+ ---
7
+
8
+ ## 1. Vision & Definition (Chapters 1–2)
9
+
10
+ ### Startup Identity
11
+ - [ ] **Ch 1 — Startup management** — Is the venture managed as a startup (experimentation-based) rather than with traditional planning?
12
+ - [ ] **Ch 1 — Five principles awareness** — Are the five Lean Startup principles understood and applied?
13
+ - [ ] **Ch 2 — Uncertainty acknowledgment** — Is extreme uncertainty recognized as the defining condition?
14
+ - [ ] **Ch 2 — Institutional thinking** — Is the startup treated as an institution requiring management, not just a product?
15
+
16
+ ---
17
+
18
+ ## 2. Learning & Experimentation (Chapters 3–4)
19
+
20
+ ### Validated Learning
21
+ - [ ] **Ch 3 — Learning measurement** — Can the team point to specific validated learnings from recent work?
22
+ - [ ] **Ch 3 — Value vs. waste** — Is effort directed toward learning what customers want, or toward untested features?
23
+ - [ ] **Ch 3 — Empirical evidence** — Are decisions based on customer experiment data, not opinions or surveys alone?
24
+ - [ ] **Ch 3 — Learning milestones** — Are learning milestones used instead of (or alongside) traditional milestones?
25
+
26
+ ### Experiment Design
27
+ - [ ] **Ch 4 — Hypothesis-driven** — Are initiatives framed as testable hypotheses with clear success/failure criteria?
28
+ - [ ] **Ch 4 — Minimum experiment** — Is each experiment the smallest possible test of the core assumption?
29
+ - [ ] **Ch 4 — Real customers** — Are experiments run with actual customers, not internal stakeholders?
30
+ - [ ] **Ch 4 — Measurable outcomes** — Are success/failure criteria defined before the experiment runs?
31
+
32
+ ---
33
+
34
+ ## 3. Assumptions & MVP (Chapters 5–6)
35
+
36
+ ### Leap-of-Faith Assumptions
37
+ - [ ] **Ch 5 — Assumptions identified** — Are the riskiest assumptions explicitly listed?
38
+ - [ ] **Ch 5 — Value hypothesis** — Is there a clear value hypothesis (will customers use/pay for this)?
39
+ - [ ] **Ch 5 — Growth hypothesis** — Is there a clear growth hypothesis (how will new customers discover this)?
40
+ - [ ] **Ch 5 — Risk ordering** — Are assumptions tested in order of riskiness (most dangerous first)?
41
+ - [ ] **Ch 5 — Customer contact** — Is the team practicing genchi gembutsu (talking to customers directly)?
42
+
43
+ ### MVP Design
44
+ - [ ] **Ch 6 — MVP purpose** — Is the MVP designed to test a hypothesis, not to be a small product?
45
+ - [ ] **Ch 6 — MVP type** — Is the right MVP type used (video, concierge, Wizard of Oz, landing page, smoke test)?
46
+ - [ ] **Ch 6 — Minimum scope** — Does the MVP contain only what's needed for the learning goal?
47
+ - [ ] **Ch 6 — Quality perspective** — Is MVP quality measured by learning quality, not product polish?
48
+ - [ ] **Ch 6 — Fear management** — Are fears (competitors, brand damage, discouragement) addressed rationally?
49
+
50
+ ---
51
+
52
+ ## 4. Metrics & Accounting (Chapter 7)
53
+
54
+ ### Innovation Accounting
55
+ - [ ] **Ch 7 — Three-step process** — Is innovation accounting followed (baseline → tune → pivot/persevere)?
56
+ - [ ] **Ch 7 — Baseline established** — Has the MVP established a baseline for key metrics?
57
+ - [ ] **Ch 7 — Tuning measured** — Are iterations measured against the baseline to show improvement?
58
+ - [ ] **Ch 7 — Decision readiness** — Is there enough data to make a pivot/persevere decision?
59
+
60
+ ### Metric Quality
61
+ - [ ] **Ch 7 — Actionable metrics** — Are metrics actionable (show cause and effect), not vanity (total signups)?
62
+ - [ ] **Ch 7 — Cohort analysis** — Are customers grouped by cohort, not measured as cumulative totals?
63
+ - [ ] **Ch 7 — Split testing** — Are product changes tested with A/B tests, not "launch and hope"?
64
+ - [ ] **Ch 7 — Three A's** — Are metrics Actionable, Accessible (everyone understands), and Auditable (verifiable)?
65
+ - [ ] **Ch 7 — Kanban with validation** — Are features tracked through a validation stage, not just "done"?
66
+
67
+ ---
68
+
69
+ ## 5. Pivot Decisions (Chapter 8)
70
+
71
+ ### Decision Process
72
+ - [ ] **Ch 8 — Regular meetings** — Are pivot/persevere meetings scheduled regularly (not crisis-driven)?
73
+ - [ ] **Ch 8 — Data-driven** — Are pivot decisions based on innovation accounting data, not gut feelings?
74
+ - [ ] **Ch 8 — Runway awareness** — Is runway measured in pivots remaining, not just cash?
75
+ - [ ] **Ch 8 — Warning signs** — Are telltale signs monitored (diminishing experiment results, unproductive development)?
76
+
77
+ ### Pivot Knowledge
78
+ - [ ] **Ch 8 — Pivot catalog** — Does the team know the full catalog of pivot types?
79
+ - [ ] **Ch 8 — Preserved learning** — Does each pivot preserve validated learning while changing what isn't working?
80
+ - [ ] **Ch 8 — No stigma** — Is pivoting treated as a strategic move, not a failure?
81
+
82
+ ---
83
+
84
+ ## 6. Execution & Growth (Chapters 9–10)
85
+
86
+ ### Development Process
87
+ - [ ] **Ch 9 — Small batches** — Is work shipped in small batches, not large releases?
88
+ - [ ] **Ch 9 — Continuous deployment** — Are changes deployed frequently (daily or more)?
89
+ - [ ] **Ch 9 — Pull system** — Are features built only when validated learning demands them?
90
+ - [ ] **Ch 9 — Andon cord** — Is there a process to stop and fix quality issues immediately?
91
+
92
+ ### Growth Strategy
93
+ - [ ] **Ch 10 — Engine identified** — Is the engine of growth identified (sticky, viral, or paid)?
94
+ - [ ] **Ch 10 — Engine focused** — Is the team focused on one engine at a time?
95
+ - [ ] **Ch 10 — Sustainable growth** — Does growth come from past customer actions, not one-time campaigns?
96
+ - [ ] **Ch 10 — Product/market fit** — Are key metrics spiking, indicating product/market fit?
97
+ - [ ] **Ch 10 — Engine monitoring** — Is the team watching for engine exhaustion and planning transitions?
98
+
99
+ ---
100
+
101
+ ## 7. Organization & Process (Chapters 11–12)
102
+
103
+ ### Adaptive Process
104
+ - [ ] **Ch 11 — Five Whys** — Is Five Whys root cause analysis used for problems?
105
+ - [ ] **Ch 11 — Proportional investment** — Are fixes proportional to problem severity?
106
+ - [ ] **Ch 11 — No blame culture** — Does root cause analysis focus on systems, not people?
107
+ - [ ] **Ch 11 — Continuous improvement** — Is there a culture of learning from failures?
108
+
109
+ ### Innovation Structure (for enterprises)
110
+ - [ ] **Ch 12 — Innovation sandbox** — Is there a protected space for innovation with clear boundaries?
111
+ - [ ] **Ch 12 — Dedicated team** — Is the innovation team small, cross-functional, and fully dedicated?
112
+ - [ ] **Ch 12 — Team autonomy** — Does the team have authority to build, deploy, and iterate independently?
113
+ - [ ] **Ch 12 — Parent protection** — Are mechanisms in place to protect the parent organization?
114
+ - [ ] **Ch 12 — Metrics accountability** — Is the innovation team held accountable with innovation accounting?
115
+
116
+ ---
117
+
118
+ ## Quick Review Workflow
119
+
120
+ 1. **Vision pass** — Is the venture recognized as a startup? Is the right management approach used?
121
+ 2. **Learning pass** — Is validated learning happening? Can the team point to evidence?
122
+ 3. **Assumption pass** — Are leap-of-faith assumptions identified and tested in risk order?
123
+ 4. **MVP pass** — Is the MVP testing a hypothesis? Is it the minimum needed?
124
+ 5. **Metrics pass** — Are metrics actionable? Is innovation accounting in place?
125
+ 6. **Decision pass** — Are pivot/persevere decisions structured, regular, and data-driven?
126
+ 7. **Execution pass** — Are batches small? Is a growth engine identified and focused?
127
+ 8. **Organization pass** — Is Five Whys used? Is innovation protected in enterprise context?
128
+ 9. **Prioritize findings** — Rank by severity: wrong assumptions > wrong metrics > wrong process > nice-to-have
129
+
130
+ ## Severity Levels
131
+
132
+ | Severity | Description | Example |
133
+ |----------|-------------|---------|
134
+ | **Critical** | Building on untested assumptions or wrong metrics | No value/growth hypothesis, vanity metrics as KPIs, no customer contact, building full product before testing assumptions |
135
+ | **High** | Missing core Lean Startup practices | No innovation accounting, no MVP experiments, gut-feel pivot decisions, no cohort analysis |
136
+ | **Medium** | Process and execution gaps | Big-batch releases, no split testing, no Five Whys, no regular pivot meetings, single growth engine not identified |
137
+ | **Low** | Best practice improvements | No kanban validation stage, no formal experiment documentation, no innovation sandbox for enterprise, missing pivot catalog awareness |