@polderlabs/bizar 10.7.0 → 10.7.2

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 (148) hide show
  1. package/.claude/agents/_shared/AGENT_BASELINE.md +266 -0
  2. package/.claude/agents/_shared/CLAUDE_TOOLS.md +412 -0
  3. package/.claude/agents/_shared/SKILLS.md +109 -0
  4. package/.claude/agents/brand-designer.md +55 -0
  5. package/.claude/agents/exec-assistant.md +34 -0
  6. package/.claude/agents/help-desk.md +44 -0
  7. package/.claude/agents/it-lead.md +53 -0
  8. package/.claude/agents/knowledge-manager.md +49 -0
  9. package/.claude/agents/office-coordinator.md +39 -0
  10. package/.claude/agents/office-greeter.md +53 -0
  11. package/.claude/agents/office-manager.md +287 -0
  12. package/.claude/agents/principal-engineer.md +58 -0
  13. package/.claude/agents/qa-reviewer.md +51 -0
  14. package/.claude/agents/research-analyst.md +53 -0
  15. package/.claude/agents/senior-engineer.md +55 -0
  16. package/.claude/agents/support-tech.md +87 -0
  17. package/.claude/agents/vp-engineering.md +54 -0
  18. package/.claude/commands/audit.md +48 -0
  19. package/.claude/commands/bizar.md +22 -0
  20. package/.claude/commands/cron.md +36 -0
  21. package/.claude/commands/explain.md +17 -0
  22. package/.claude/commands/goal.md +99 -0
  23. package/.claude/commands/init.md +15 -0
  24. package/.claude/commands/learn.md +46 -0
  25. package/.claude/commands/plan.md +35 -0
  26. package/.claude/commands/plow-through.md +50 -0
  27. package/.claude/commands/pr-review.md +49 -0
  28. package/.claude/commands/setup-provider.md +96 -0
  29. package/.claude/commands/spec.md +47 -0
  30. package/.claude/commands/sprint.md +43 -0
  31. package/.claude/commands/tailscale-serve.md +100 -0
  32. package/.claude/commands/team.md +132 -0
  33. package/.claude/commands/test.md +62 -0
  34. package/.claude/commands/validate.md +68 -0
  35. package/.claude/commands/visual-plan.md +24 -0
  36. package/.claude/hooks/README.md +108 -0
  37. package/.claude/hooks/__tests__/pretooluse-editwrite.test.mjs +146 -0
  38. package/.claude/hooks/__tests__/sessionend-recall.test.mjs +256 -0
  39. package/.claude/hooks/__tests__/sessionstart-prime.test.mjs +325 -0
  40. package/.claude/hooks/__tests__/thinking-route.test.mjs +319 -0
  41. package/.claude/hooks/auto-instinct.sh +81 -0
  42. package/.claude/hooks/learning-extract.mjs +92 -0
  43. package/.claude/hooks/post-merge-audit.sh +93 -0
  44. package/.claude/hooks/posttooluse-editwrite.mjs +91 -0
  45. package/.claude/hooks/pretooluse-bash.mjs +87 -0
  46. package/.claude/hooks/pretooluse-editwrite.mjs +117 -0
  47. package/.claude/hooks/sessionend-recall.mjs +384 -0
  48. package/.claude/hooks/sessionstart-prime.mjs +278 -0
  49. package/.claude/hooks/thinking-route.mjs +314 -0
  50. package/.claude/hooks/worker-suggest.mjs +110 -0
  51. package/.claude/settings.json +167 -0
  52. package/.claude/skills/9router/SKILL.md +80 -0
  53. package/.claude/skills/9router-chat/SKILL.md +73 -0
  54. package/.claude/skills/9router-embeddings/SKILL.md +69 -0
  55. package/.claude/skills/9router-image/SKILL.md +86 -0
  56. package/.claude/skills/9router-stt/SKILL.md +79 -0
  57. package/.claude/skills/9router-tts/SKILL.md +80 -0
  58. package/.claude/skills/9router-web-fetch/SKILL.md +99 -0
  59. package/.claude/skills/9router-web-search/SKILL.md +91 -0
  60. package/.claude/skills/agent-browser/SKILL.md +64 -0
  61. package/.claude/skills/bizar/README.md +9 -0
  62. package/.claude/skills/bizar/SKILL.md +447 -0
  63. package/.claude/skills/cpp-coding-standards/README.md +28 -0
  64. package/.claude/skills/cpp-coding-standards/SKILL.md +634 -0
  65. package/.claude/skills/cpp-coding-standards/references/concurrency.md +320 -0
  66. package/.claude/skills/cpp-coding-standards/references/error-handling.md +229 -0
  67. package/.claude/skills/cpp-coding-standards/references/memory-safety.md +216 -0
  68. package/.claude/skills/cpp-coding-standards/references/modern-idioms.md +282 -0
  69. package/.claude/skills/cpp-coding-standards/references/review-checklist.md +96 -0
  70. package/.claude/skills/cpp-testing/README.md +28 -0
  71. package/.claude/skills/cpp-testing/SKILL.md +304 -0
  72. package/.claude/skills/cpp-testing/references/coverage.md +370 -0
  73. package/.claude/skills/cpp-testing/references/framework-compare.md +175 -0
  74. package/.claude/skills/cpp-testing/references/host-test-for-embedded.md +499 -0
  75. package/.claude/skills/cpp-testing/references/mocking.md +364 -0
  76. package/.claude/skills/cpp-testing/references/tdd-workflow.md +308 -0
  77. package/.claude/skills/cubesandbox/SKILL.md +148 -0
  78. package/.claude/skills/de-sloppify/SKILL.md +38 -0
  79. package/.claude/skills/de-sloppify/cleanup.mjs +253 -0
  80. package/.claude/skills/de-sloppify/cleanup.test.mjs +189 -0
  81. package/.claude/skills/embedded-esp-idf/README.md +41 -0
  82. package/.claude/skills/embedded-esp-idf/SKILL.md +439 -0
  83. package/.claude/skills/embedded-esp-idf/references/freertos-patterns.md +214 -0
  84. package/.claude/skills/embedded-esp-idf/references/host-tests.md +164 -0
  85. package/.claude/skills/embedded-esp-idf/references/idf-py-commands.md +157 -0
  86. package/.claude/skills/embedded-esp-idf/references/kconfig.md +159 -0
  87. package/.claude/skills/embedded-esp-idf/references/logging-discipline.md +118 -0
  88. package/.claude/skills/embedded-esp-idf/references/memory-and-iram.md +137 -0
  89. package/.claude/skills/embedded-esp-idf/references/nvs.md +121 -0
  90. package/.claude/skills/embedded-esp-idf/references/packed-structs.md +192 -0
  91. package/.claude/skills/embedded-esp-idf/scripts/idf_env.sh +47 -0
  92. package/.claude/skills/embedded-esp-idf/scripts/size_check.sh +77 -0
  93. package/.claude/skills/glyph/SKILL.md +163 -0
  94. package/.claude/skills/harness-engineering/SKILL.md +142 -0
  95. package/.claude/skills/lightrag/SKILL.md +81 -0
  96. package/.claude/skills/memory-protocol/SKILL.md +105 -0
  97. package/.claude/skills/obsidian/SKILL.md +306 -0
  98. package/.claude/skills/read-the-damn-docs/SKILL.md +113 -0
  99. package/.claude/skills/self-improvement/SKILL.md +64 -0
  100. package/.claude/skills/skillopt/SKILL.md +129 -0
  101. package/.claude/skills/thinking-archetypes/SKILL.md +90 -0
  102. package/.claude/skills/thinking-bayesian/SKILL.md +267 -0
  103. package/.claude/skills/thinking-bounded-rationality/SKILL.md +406 -0
  104. package/.claude/skills/thinking-circle-of-competence/SKILL.md +216 -0
  105. package/.claude/skills/thinking-cynefin/SKILL.md +70 -0
  106. package/.claude/skills/thinking-debiasing/SKILL.md +192 -0
  107. package/.claude/skills/thinking-dual-process/SKILL.md +282 -0
  108. package/.claude/skills/thinking-effectuation/SKILL.md +366 -0
  109. package/.claude/skills/thinking-feedback-loops/SKILL.md +464 -0
  110. package/.claude/skills/thinking-fermi-estimation/SKILL.md +263 -0
  111. package/.claude/skills/thinking-first-principles/SKILL.md +167 -0
  112. package/.claude/skills/thinking-five-whys-plus/SKILL.md +139 -0
  113. package/.claude/skills/thinking-inversion/SKILL.md +195 -0
  114. package/.claude/skills/thinking-jobs-to-be-done/SKILL.md +363 -0
  115. package/.claude/skills/thinking-kepner-tregoe/SKILL.md +154 -0
  116. package/.claude/skills/thinking-leverage-points/SKILL.md +390 -0
  117. package/.claude/skills/thinking-lindy-effect/SKILL.md +331 -0
  118. package/.claude/skills/thinking-map-territory/SKILL.md +111 -0
  119. package/.claude/skills/thinking-margin-of-safety/SKILL.md +330 -0
  120. package/.claude/skills/thinking-model-combination/SKILL.md +406 -0
  121. package/.claude/skills/thinking-model-router/SKILL.md +360 -0
  122. package/.claude/skills/thinking-model-selection/SKILL.md +341 -0
  123. package/.claude/skills/thinking-occams-razor/SKILL.md +129 -0
  124. package/.claude/skills/thinking-ooda/SKILL.md +127 -0
  125. package/.claude/skills/thinking-opportunity-cost/SKILL.md +360 -0
  126. package/.claude/skills/thinking-pre-mortem/SKILL.md +170 -0
  127. package/.claude/skills/thinking-probabilistic/SKILL.md +324 -0
  128. package/.claude/skills/thinking-red-team/SKILL.md +142 -0
  129. package/.claude/skills/thinking-regret-minimization/SKILL.md +335 -0
  130. package/.claude/skills/thinking-reversibility/SKILL.md +326 -0
  131. package/.claude/skills/thinking-scientific-method/SKILL.md +162 -0
  132. package/.claude/skills/thinking-second-order/SKILL.md +184 -0
  133. package/.claude/skills/thinking-socratic/SKILL.md +198 -0
  134. package/.claude/skills/thinking-steel-manning/SKILL.md +332 -0
  135. package/.claude/skills/thinking-systems/SKILL.md +238 -0
  136. package/.claude/skills/thinking-theory-of-constraints/SKILL.md +338 -0
  137. package/.claude/skills/thinking-thought-experiment/SKILL.md +354 -0
  138. package/.claude/skills/thinking-triz/SKILL.md +171 -0
  139. package/.claude/skills/thinking-via-negativa/SKILL.md +358 -0
  140. package/bizar-dash/skills/publishing/SKILL.md +2 -1
  141. package/cli/install/postinstall.mjs +54 -28
  142. package/cli/install/postinstall.test.mjs +98 -0
  143. package/cli/provision.mjs +29 -0
  144. package/install.sh +7 -0
  145. package/package.json +7 -2
  146. package/scripts/git-hooks/__tests__/commit-msg.test.mjs +61 -0
  147. package/scripts/git-hooks/commit-msg +38 -0
  148. package/scripts/install-hooks.sh +9 -0
@@ -0,0 +1,406 @@
1
+ ---
2
+ name: thinking-model-combination
3
+ description: Combine multiple mental models for richer analysis. Use for complex problems requiring multiple lenses, high-stakes decisions, or when single models leave blind spots.
4
+ ---
5
+
6
+ # Model Combination
7
+
8
+ ## Overview
9
+
10
+ Real-world problems rarely fit neatly into a single mental model. Model combination uses multiple frameworks together—sequentially, in parallel, or nested—to achieve deeper understanding than any single model provides. The skill is knowing how to combine models productively without creating confusion or analysis paralysis.
11
+
12
+ **Core Principle:** Multiple lenses reveal what single lenses miss. But combination requires discipline, not just accumulation.
13
+
14
+ ## Read This First: The Anti-Patterns
15
+
16
+ Most combination attempts fail by *adding* rather than *integrating*. Internalize these limits before doing anything else:
17
+
18
+ - **Hard cap: 3-4 models, each with a distinct, named role.** More than that is "Model Soup" — contradictory conclusions, analysis paralysis, no recommendation. If you can't say what unique question each model answers, drop it.
19
+ - **Add a model only to cover a specific, named blind spot** — not to look thorough. If a second model just confirms the first, it added nothing (Checkbox Combination).
20
+ - **Don't blend incompatible worldviews** (e.g., Effectuation's "embrace uncertainty" + detailed prediction). Use them in sequence for different phases, or as a deliberate adversarial pair — never mashed together.
21
+ - **Decide how the models relate *before* applying them**, and pick a tiebreaker model up front for when they conflict.
22
+
23
+ If a single model already answers the question, use it alone and stop. Combination is the exception, justified only by high stakes or genuine multi-domain spread. (Full anti-pattern detail is in the "Combination Anti-Patterns" section below.)
24
+
25
+ ## When to Use
26
+
27
+ - Complex problems spanning multiple domains
28
+ - High-stakes decisions where blind spots are costly
29
+ - When single models leave important questions unanswered
30
+ - Validating conclusions through different frameworks
31
+ - Teaching comprehensive analysis
32
+ - Building robust decision processes
33
+
34
+ Decision flow:
35
+
36
+ ```
37
+ Analyzing a problem?
38
+ → Does one model fully address it? → yes → Use single model
39
+ → Are there important blind spots? → yes → ADD COMPLEMENTARY MODEL
40
+ → Are stakes high enough to justify deeper analysis? → yes → USE MULTIPLE MODELS
41
+ ```
42
+
43
+ ## Combination Patterns
44
+
45
+ ### Pattern 1: Sequential (Pipeline)
46
+
47
+ Use one model's output as another's input:
48
+
49
+ ```markdown
50
+ ## Sequential Combination
51
+
52
+ Model A → Model B → Model C
53
+
54
+ Example: Product Decision
55
+ 1. Jobs to Be Done → Identify the real user need
56
+ 2. First Principles → Design solution from fundamentals
57
+ 3. Pre-mortem → Identify what could go wrong
58
+ 4. Reversibility → Assess if we can course-correct
59
+
60
+ Flow:
61
+ [JTBD identifies need] → [First Principles designs solution] →
62
+ [Pre-mortem finds risks] → [Reversibility determines commitment level]
63
+
64
+ Each model builds on previous insights.
65
+ ```
66
+
67
+ ### Pattern 2: Parallel (Multiple Lenses)
68
+
69
+ Apply models independently, compare results:
70
+
71
+ ```markdown
72
+ ## Parallel Combination
73
+
74
+ ┌→ Model A → Result A ─┐
75
+ Problem → Model B → Result B → Synthesis
76
+ └→ Model C → Result C ─┘
77
+
78
+ Example: Strategic Decision
79
+ Apply independently:
80
+ - Red Team: "How could this fail?"
81
+ - Opportunity Cost: "What are we giving up?"
82
+ - Second-Order Thinking: "What happens next?"
83
+
84
+ Synthesis:
85
+ | Model | Conclusion | Unique Insight |
86
+ |-------|------------|----------------|
87
+ | Red Team | [Finding] | [What only this revealed] |
88
+ | Opportunity Cost | [Finding] | [What only this revealed] |
89
+ | Second-Order | [Finding] | [What only this revealed] |
90
+
91
+ Combined conclusion: [Synthesis of all three]
92
+ ```
93
+
94
+ ### Pattern 3: Nested (Zoom Levels)
95
+
96
+ Use different models at different scales:
97
+
98
+ ```markdown
99
+ ## Nested Combination
100
+
101
+ Macro level: Model A
102
+ └→ Meso level: Model B
103
+ └→ Micro level: Model C
104
+
105
+ Example: System Optimization
106
+ - Macro (System): Theory of Constraints → Find the bottleneck
107
+ - Meso (Process): Scientific Method → Diagnose bottleneck cause
108
+ - Micro (Action): OODA Loop → Rapid iteration on fixes
109
+
110
+ The macro model identifies WHERE to focus.
111
+ The meso model identifies WHAT is happening.
112
+ The micro model guides HOW to respond.
113
+ ```
114
+
115
+ ### Pattern 4: Adversarial (Thesis-Antithesis)
116
+
117
+ Use models that challenge each other:
118
+
119
+ ```markdown
120
+ ## Adversarial Combination
121
+
122
+ Model A argues FOR → ← Model B argues AGAINST
123
+
124
+ Example: Investment Decision
125
+ - Optimistic lens (First Principles): "Here's why this could work"
126
+ - Pessimistic lens (Pre-mortem): "Here's why this will fail"
127
+ - Neutral lens (Bayesian): "Here's the actual probability"
128
+
129
+ Structure:
130
+ | Aspect | First Principles | Pre-mortem | Bayesian Estimate |
131
+ |--------|------------------|------------|-------------------|
132
+ | Market | [Optimistic case] | [Failure mode] | [P(success)] |
133
+ | Technology | [Optimistic case] | [Failure mode] | [P(success)] |
134
+ | Team | [Optimistic case] | [Failure mode] | [P(success)] |
135
+
136
+ Resolution: Adjust probabilities based on adversarial insights
137
+ ```
138
+
139
+ ### Pattern 5: Temporal (Time-Based)
140
+
141
+ Different models for different time horizons:
142
+
143
+ ```markdown
144
+ ## Temporal Combination
145
+
146
+ Past: Model A (understand history)
147
+ Present: Model B (assess current state)
148
+ Future: Model C (project outcomes)
149
+
150
+ Example: Career Decision
151
+ - Past (5 Whys): "Why am I in this situation?"
152
+ - Present (Circle of Competence): "What are my current advantages?"
153
+ - Future (Regret Minimization): "What will 80-year-old me think?"
154
+
155
+ Timeline:
156
+ Past analysis → Present assessment → Future projection → Decision
157
+ ```
158
+
159
+ ## Combination Recipes
160
+
161
+ ### Recipe 1: High-Stakes Decision
162
+
163
+ ```markdown
164
+ ## High-Stakes Decision Recipe
165
+
166
+ Combine: Reversibility + Pre-mortem + Opportunity Cost + Second-Order
167
+
168
+ Step 1 - Reversibility Check:
169
+ Is this Type 1 or Type 2?
170
+ [Assessment]
171
+
172
+ Step 2 - Pre-mortem:
173
+ Assume failure, explain why
174
+ [Failure modes]
175
+
176
+ Step 3 - Opportunity Cost:
177
+ What's the best alternative?
178
+ [Alternatives foregone]
179
+
180
+ Step 4 - Second-Order:
181
+ What happens after the immediate effect?
182
+ [Cascading consequences]
183
+
184
+ Synthesis:
185
+ Given [reversibility], with risks of [pre-mortem findings],
186
+ giving up [opportunity cost], leading to [second-order effects],
187
+ the decision is: [Conclusion]
188
+ ```
189
+
190
+ ### Recipe 2: System Diagnosis
191
+
192
+ ```markdown
193
+ ## System Diagnosis Recipe
194
+
195
+ Combine: Cynefin + Theory of Constraints + Feedback Loops + Leverage Points
196
+
197
+ Step 1 - Cynefin:
198
+ What domain is this? [Clear/Complicated/Complex/Chaotic]
199
+ Appropriate approach: [Sense-Categorize-Respond / Sense-Analyze-Respond / etc.]
200
+
201
+ Step 2 - Theory of Constraints:
202
+ Where's the bottleneck?
203
+ [Constraint identification]
204
+
205
+ Step 3 - Feedback Loops:
206
+ What reinforcing/balancing loops exist?
207
+ [Loop mapping]
208
+
209
+ Step 4 - Leverage Points:
210
+ Where can small changes have big effects?
211
+ [Intervention points]
212
+
213
+ Synthesis:
214
+ This is a [domain] problem. The constraint is [X].
215
+ The key feedback loop is [Y]. The highest leverage point is [Z].
216
+ ```
217
+
218
+ ### Recipe 3: Innovation Challenge
219
+
220
+ ```markdown
221
+ ## Innovation Recipe
222
+
223
+ Combine: First Principles + TRIZ + Effectuation + Via Negativa
224
+
225
+ Step 1 - First Principles:
226
+ What are the fundamental truths?
227
+ [Core elements]
228
+
229
+ Step 2 - TRIZ:
230
+ What contradictions exist? What inventive principles apply?
231
+ [Contradiction resolution]
232
+
233
+ Step 3 - Effectuation:
234
+ What means do we have? What's affordable loss?
235
+ [Means inventory and constraints]
236
+
237
+ Step 4 - Via Negativa:
238
+ What should we remove or avoid?
239
+ [Subtractions]
240
+
241
+ Synthesis:
242
+ Starting from [first principles], resolving [contradiction] via [TRIZ principle],
243
+ using [available means], and removing [via negativa items],
244
+ the innovation path is: [Approach]
245
+ ```
246
+
247
+ ### Recipe 4: Argument Evaluation
248
+
249
+ ```markdown
250
+ ## Argument Evaluation Recipe
251
+
252
+ Combine: Steel-manning + Bayesian + Debiasing
253
+
254
+ Step 1 - Steel-manning:
255
+ What's the strongest version of this argument?
256
+ [Strengthened argument]
257
+
258
+ Step 2 - Bayesian:
259
+ What's my prior? What evidence would update it?
260
+ Prior: [X%]
261
+ Evidence that would increase: [List]
262
+ Evidence that would decrease: [List]
263
+
264
+ Step 3 - Debiasing:
265
+ What biases might affect my evaluation?
266
+ [Bias checklist]
267
+
268
+ Synthesis:
269
+ The steel-manned argument is [X]. Given [evidence] and controlling for [biases],
270
+ my updated probability is [Y%]. Conclusion: [Assessment]
271
+ ```
272
+
273
+ ## Combination Anti-Patterns
274
+
275
+ ### Too Many Models
276
+
277
+ ```markdown
278
+ ## Anti-Pattern: Model Soup
279
+
280
+ Problem: Using 5+ models without clear purpose
281
+ Result: Confusion, analysis paralysis, contradictory conclusions
282
+
283
+ Symptoms:
284
+ - Can't synthesize findings
285
+ - Each model says something different
286
+ - Analysis takes forever
287
+ - No clear recommendation emerges
288
+
289
+ Fix: Maximum 3-4 models with clear roles
290
+ Define how models relate BEFORE applying
291
+ Designate a "tiebreaker" model for conflicts
292
+ ```
293
+
294
+ ### Incompatible Models
295
+
296
+ ```markdown
297
+ ## Anti-Pattern: Forced Marriage
298
+
299
+ Problem: Combining models with conflicting assumptions
300
+ Example: Effectuation (embrace uncertainty) + Detailed planning (predict future)
301
+
302
+ Symptoms:
303
+ - Models contradict each other fundamentally
304
+ - Can't reconcile conclusions
305
+ - Feels like arguing with yourself
306
+
307
+ Fix: Use models in sequence for different phases
308
+ Or use as adversarial pair intentionally
309
+ Don't try to blend incompatible worldviews
310
+ ```
311
+
312
+ ### Model Without Purpose
313
+
314
+ ```markdown
315
+ ## Anti-Pattern: Checkbox Combination
316
+
317
+ Problem: Adding models to seem thorough, not for insight
318
+ Result: Wasted effort, no additional value
319
+
320
+ Symptoms:
321
+ - Model confirms what you already knew
322
+ - No new insights from additional model
323
+ - Adding models "just in case"
324
+
325
+ Fix: Add model only if it addresses a specific blind spot
326
+ Ask: "What question does this model answer that others don't?"
327
+ ```
328
+
329
+ ## Model Combination Template
330
+
331
+ ```markdown
332
+ # Model Combination Analysis: [Problem]
333
+
334
+ ## Problem Characterization
335
+ [Describe the problem and why combination is needed]
336
+
337
+ ## Combination Pattern
338
+ Pattern: [Sequential/Parallel/Nested/Adversarial/Temporal]
339
+ Rationale: [Why this pattern]
340
+
341
+ ## Models Selected
342
+ | Model | Role | What It Addresses |
343
+ |-------|------|-------------------|
344
+ | | | |
345
+
346
+ ## Analysis
347
+
348
+ ### Model 1: [Name]
349
+ [Analysis using this model]
350
+ Key insight: [What this uniquely revealed]
351
+
352
+ ### Model 2: [Name]
353
+ [Analysis using this model]
354
+ Key insight: [What this uniquely revealed]
355
+
356
+ ### Model 3: [Name]
357
+ [Analysis using this model]
358
+ Key insight: [What this uniquely revealed]
359
+
360
+ ## Synthesis
361
+
362
+ ### Convergence
363
+ Where models agree: [Common conclusions]
364
+
365
+ ### Divergence
366
+ Where models differ: [Conflicting conclusions]
367
+ Resolution: [How to resolve conflicts]
368
+
369
+ ### Unique Contributions
370
+ | Model | Unique Insight |
371
+ |-------|----------------|
372
+ | | |
373
+
374
+ ## Combined Conclusion
375
+ [Synthesis that incorporates all models]
376
+
377
+ ## Confidence Assessment
378
+ Confidence in conclusion: [High/Medium/Low]
379
+ What would change my mind: [Key uncertainties]
380
+ ```
381
+
382
+ ## Verification Checklist
383
+
384
+ - [ ] Each model has a clear, distinct role
385
+ - [ ] Combination pattern is explicit
386
+ - [ ] Models are compatible or deliberately adversarial
387
+ - [ ] Synthesis addresses convergence and divergence
388
+ - [ ] Not using more models than necessary
389
+ - [ ] Clear combined conclusion emerges
390
+
391
+ ## Key Questions
392
+
393
+ - "What does each model contribute that others don't?"
394
+ - "How do these models relate to each other?"
395
+ - "Where do the models agree? Disagree?"
396
+ - "Am I adding models for insight or just thoroughness?"
397
+ - "What's the simplest combination that addresses the problem?"
398
+ - "How do I synthesize if models conflict?"
399
+
400
+ ## Munger's Wisdom (Extended)
401
+
402
+ "I've long believed that a certain system—which almost any intelligent person can learn—works way better than the systems most people use. What you need is a latticework of mental models in your head."
403
+
404
+ "You may have noticed students who just try to remember and pound back what is remembered. Well, they fail in school and in life. You've got to hang experience on a latticework of models in your head."
405
+
406
+ The latticework isn't just having models—it's the connections between them. Combination is how you weave the lattice. Individual models are threads; combination creates the fabric that catches reality's complexity.