thinking-munger
$
npx mdskill add aAAaqwq/AGI-Super-Team/thinking-mungerApply Munger's mental models to avoid cognitive traps.
- Prevents poor decisions by cross-verifying ideas across disciplines.
- Integrates with no external tools or APIs.
- Executes by forcing multi-step analysis before finalizing choices.
- Delivers results through structured reasoning and failure checks.
SKILL.md
.github/skills/thinking-mungerView on GitHub ↗
---
name: thinking-munger
description: "蒸馏 Charlie Munger(Berkshire Hathaway)思维模式的实用框架:多元思维模型、反向思考、lollapalooza效应"
license: MIT
metadata:
version: 1.0.0
category: thinking-framework
tags: [mental-models, inverse-thinking, multidisciplinary, lollapalooza, decision-making]
created: 2026-04-14
author: AGI Super Team
---
# 🧠 thinking-munger
> 提炼自 **Charlie Munger**,Berkshire Hathaway 副主席,沃伦·巴菲特的终生伙伴。伯克希尔真正的"第二大脑"。核心理念:**"在手里拿着锤子的人看来,世界就像一颗钉子。"——必须用多元思维模型才能看清复杂问题;**愚蠢的标志是不知道自己不知道什么。**
---
## 1. 核心思维模型
### 🧭 模型一:多元思维模型(The Latticework of Mental Models)
- 不依赖单一学科的解释,用多学科公式交叉验证
- 重要学科:心理学、经济学、工程学、数学、物理学、生物学
- **实践**:每个重大决策至少用3个不同学科框架检验
### 🔄 模型二:反向思考(Invert, Always Invert)
- 正向想不清时,从结果反推原因
- "我想要X,那么避免什么会导致X?"
- **实践**:遇到问题时,先写"我怎么确保这件事失败",然后一一排除
### 🎯 模型三:Lollapalooza 效应(Compound Triggers)
- 多重因素同向叠加时,结果远超线性预期
- 好的 Lollapalooza:多个好决策同时生效
- 坏的 Lollapalooza:多个认知偏见同时触发,导致灾难
- **实践**:识别每个决策中的正向/负向 Lollapalooza 信号
### 🛡️ 模型四:能力圈原则(Circle of Competence)
- 知道自己的边界比知道边界内的一切更重要
- 在圈外行动 = 主动选择被收割
- **实践**:每个机会先问"我真的懂这个吗?",不懂则不买/不投
### ⚠️ 模型五:误判心理学(Psychology of Misjudgment)
- 人类大脑有 25+ 种认知偏见,系统性错误判断
- 最重要的:社会认同、稀缺效应、确认偏见、损失厌恶、奖励惩罚超敏
- **实践**:做决策前,主动列出自己可能落入的认知偏见
### 📉 模型六:耐心理性(Patient Rationality)
- 好机会很少,好价格更少;两者同时出现时重仓
- 大部分时间应该什么都不做
- **实践**:设定"待机"比例(至少 30% 现金),等待极端机会
---
## 2. 决策框架(Munger 四步决策树)
```
① 这个决策有多重要?
│ 小决策 → 用直觉快速判断,不需要复杂分析
│
② 我真的在能力圈内吗?
│ 否 → 拒绝 or 找专家
│ 是 → 继续
│
③ 从反方向思考:什么会让这件事彻底失败?
│ 列出 5-10 个可能失败的原因
│ → 任何一个无法接受 → 否决
│ → 全部可以接受 → 继续
│
④ 多学科检验(至少3个框架):
├── 经济学框架(供需、激励机制)
├── 心理学框架(行为偏见分析)
├── 工程学框架(margin of safety、冗余设计)
└── 数学框架(概率、期望值)
→ 如果 3+ 框架都指向同一方向 → 行动
→ 框架结论分散 → 等待更多信息
```
---
## 3. 反模式清单(Munger 误判清单)
> Munger 在 NBER 演讲和《穷查理宝典》列出了系统性的 25+ 种人类误判。**每次重大决策前必须过一遍。**
### 三大类偏见
**A. 奖励与惩罚超级反应**
- 激励扭曲判断 → 永远问"谁从这里受益?"
- 最小化惩罚的愿望让人撒谎/作弊 → 设计机制防止
**B. 热爱/憎恨超级反应**
- 爱屋及乌(光环效应)→ 先找缺点
- 立场先于事实 → 先分析反方观点
**C. 怀疑/信任超级反应**
- 过度怀疑 → 不作为的机会成本
- 过度信任 → 被操纵的机会成本
### 决策前自检(3问)
| 问题 | 探测偏见 |
|------|---------|
| "我真的因为懂了才同意,还是因为社会认同?" | 社会认同偏见 |
| "如果我是对手,我希望我做什么决策?" | 激励扭曲 |
| "1年后回头看,我会后悔这个决策吗?" | 损失厌恶/现状偏见 |
---
## 4. Lollapalooza 应用模板
### 触发条件检测
```python
# Munger Lollapalooza 检测伪代码
def detect_lollapalooza(decision):
positive_signals = []
negative_signals = []
# 正向叠加
if multiple_experts_agree: positive_signals.append("专家共识")
if_incentives_align: positive_signals.append("激励同向")
if_psychology_favors: positive_signals.append("心理支持")
# 负向叠加
if cognitive_biases_present: negative_signals.append("认知偏见")
if_complexity_incomprehensible: negative_signals.append("复杂性超出能力圈")
if_incentives_misaligned: negative_signals.append("激励扭曲")
if len(negative_signals) > 2:
return VETO("多个负面 Lollapalooza")
if len(positive_signals) >= 4:
return ACT("多重正向 Lollapalooza")
```
---
## 5. 核心指标速查
| 思维工具 | 核心问题 | 通过标准 |
|---------|---------|---------|
| **能力圈检测** | 我真的懂这个吗? | 能说出 5 个别人不知道的细节 |
| **反向检测** | 什么会让它彻底失败? | 列出 5+ 失败路径 |
| **激励检测** | 谁从我的决策中获益? | 受益者是否与我利益对齐? |
| **多学科检测** | 3个框架是否一致? | 至少3/4框架指向同方向 |
| **耐心检测** | 如果不现在做会怎样? | 一年后这个机会还在吗? |
| **Margin of Safety** | 最坏情况会怎样? | 最坏情况可承受 |
---
## 6. 投资/决策 Checklist
> Munger 在每次重大投资决策前使用(Berkshire 版本)
- [ ] **能力圈**:我是否真的理解这个生意?
- [ ] **反向**:如果我错了,会输多少?什么会导致彻底失败?
- [ ] **激励机制**:管理层/合作伙伴的激励是否与我一致?
- [ ] **定性判断**:这个生意的"护城河"是什么?5年后格局会变吗?
- [ ] **定量估值**:内在价值 vs 市场价格的安全边际 ≥ 30%?
- [ ] **行为检查**:我是否因为"喜欢这个公司"而买,而不是因为数据?
- [ ] **耐心**:如果市场关闭5年,我能接受吗?
- [ ] **Lollapalooza**:是否有多个超级因素同时支持这个决策?
---
## 7. Munger 语录(决策参考)
> "Invert, always invert. It is a way to think about the problem. If you want to help India, then think about what are the ways that you could make India fail. Just invert the problem."
>
> "The first rule of fishing is: fish where the fish are. The second rule is: don't forget the first rule."
>
> "I never allow myself to have an opinion on anything that I don't know the other side's argument better than they do."
>
> "A lot of people who think they don't have an opinion, actually have an opinion because of the biases they suffer from."
---
## 8. 适用场景
- ✅ 重大投资/并购决策
- ✅ 评估商业模式(护城河分析)
- ✅ 团队/人才决策
- ✅ 复杂系统问题(多因素交互)
- ✅ 自我认知和决策偏差检测
- ❌ 不适合:需要快速反应的高频交易、日常运营决策
---
## 9. 与其他思维框架的互补
| 本框架 | 补充框架 | 互补点 |
|--------|---------|--------|
| thinking-munger | thinking-simon | Munger 负责"是什么",Simons 负责"怎么量化" |
| thinking-munger | thinking-warren-buffett | Buffett 提供投资纪律,Munger 提供多元思维 |
| thinking-munger | thinking-ray-dalio | 两者都强调极度透明和错误日志 |
---
*提炼自 Charlie Munger 的多元思维模型与决策哲学*
*核心:反向思考、多学科交叉、识别认知偏见、Lollapalooza 效应*
More from aAAaqwq/AGI-Super-Team
- a-fund-monitor监控 A 股基金实时估值与盘后净值,自动判断交易日并生成提醒或分析。
- account-executive>
- add-leadAdd company/person/relationship to CRM
- adsComprehensive ad account analysis across all major platforms (Google, Meta
- ads-agentAI-агент для управления Facebook рекламой. Вызывай для анализа, оптимизации, создания кампаний и отчётов.
- afrexai-compliance-auditRun internal compliance audits against major governance and security
- afrexai-personal-financeComplete personal finance system — budgeting, debt payoff, investing, tax optimization, net worth tracking, and financial independence planning. Use when managing money, building wealth, paying off debt, planning retirement, or optimizing taxes. Zero dependencies.
- after-salesUse when managing post-purchase experience, building customer loyalty, or increasing repeat purchases
- agent-contactsAI agent contacts — add, list, remove MCP contacts. Use when someone gives an agent URL, or when you need to view/remove contacts.
- agent-model-switcher批量查看和切换子 agent 的模型配置,用于统一调整多 agent 的 provider/model 设置。