Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计通过

thinking-inversion思维倒置

Agent Skill

thinking-inversion 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

588

周安装

25

GitHub Stars

46

下载量

206
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:thinking-inversion(思维倒置)
来源仓库:https://github.com/tjboudreaux/cc-thinking-skills
仓库路径:skills/thinking-inversion
安装命令:
npx skills add https://github.com/tjboudreaux/cc-thinking-skills --skill thinking-inversion
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/tjboudreaux/cc-thinking-skills --skill thinking-inversion

简介

思维倒置用于查找、检索和筛选相关信息,逆向推导成功条件以避免失败前提。

  • 适用于风险管理、安全设计和反脆弱系统构建任务。
  • 先定义失败后果,再反向设计防御机制与应急预案。
  • 安装命令:npx skills add https://github.com/tjboudreaux/cc-thinking-skills --skill thinking-inversion
  • 应限制其在敏感操作前的使用,防止过度悲观导致决策瘫痪。

SKILL.md

Inversion Thinking

Overview

Inversion thinking, championed by Charlie Munger and rooted in mathematician Carl Jacobi's principle "Invert, always invert," approaches problems by considering their opposite. Instead of asking "How do I succeed?", ask "How would I guarantee failure?" then avoid those paths.

Core Principle: "All I want to know is where I'm going to die, so I'll never go there." — Charlie Munger

When to Use

  • Planning a new project, feature, or initiative
  • Evaluating a decision before committing
  • Identifying risks that optimistic thinking obscures
  • Stuck on how to achieve a positive outcome
  • Need to challenge assumptions in a plan
  • Writing requirements or acceptance criteria

Decision flow:

Have a goal? → yes → Can you list ways to achieve it? → maybe → INVERT FIRST
                                                      ↘ no → Definitely invert
           ↘ no → Define goal, then invert

The Process

Step 1: Define the Goal Clearly

State what success looks like:

Goal: "Ship a reliable authentication system by Q2"
Goal: "Build a high-performing engineering team"
Goal: "Launch product with strong user retention"

Step 2: Invert — Ask "How Would I Fail?"

List all ways to guarantee failure, ruin, or the opposite of your goal:

Goal: Ship reliable auth system
Inversions (How to guarantee failure):
- Skip security review and pen testing
- No rate limiting or brute force protection
- Store passwords in plaintext
- No monitoring or alerting
- Skip edge cases in testing
- No documentation for on-call
- Single point of failure, no redundancy
- Ignore compliance requirements
- No rollback plan
- Deploy on Friday before vacation

Step 3: Categorize the Failure Modes

Group by type and severity:

CategoryFailure ModeSeverity
SecurityPlaintext passwordsCritical
SecurityNo rate limitingHigh
OperationsNo monitoringHigh
OperationsNo rollback planHigh
ProcessSkip security reviewCritical
ProcessNo documentationMedium
ReliabilitySingle point of failureHigh

Step 4: Convert to Avoidance Checklist

Transform each failure mode into a requirement:

Anti-goal: Store passwords in plaintext
→ Requirement: Use bcrypt/argon2 with appropriate work factor

Anti-goal: No rate limiting
→ Requirement: Implement rate limiting with exponential backoff

Anti-goal: Deploy Friday before vacation
→ Requirement: No deploys within 48h of team unavailability

Step 5: Prioritize by Impact

Focus on avoiding the failures that would be:

  • Most damaging if they occurred
  • Most likely to occur without explicit prevention
  • Hardest to recover from

Application Patterns

For Technical Design

Goal: Build scalable API
Invert: How to make it fail under load?
- No caching → Add caching layer
- Synchronous everything → Add async where appropriate
- No connection pooling → Implement pooling
- N+1 queries → Eager loading, query optimization
- No circuit breakers → Add circuit breakers

For Code Review

Goal: Merge high-quality code
Invert: What would make this PR problematic?
- Introduces security vulnerability
- Breaks existing functionality
- No tests for new behavior
- Unclear intent/poor naming
- Performance regression
- Missing error handling

For Career/Team Building

Goal: Build successful engineering career
Invert (Munger's list of what to avoid):
- Be unreliable
- Learn only from your own mistakes (ignore others')
- Give up after first failure
- Be resentful and envious
- Stay within comfort zone
- Avoid difficult conversations
- Don't learn continuously

For Project Planning

Goal: Successful product launch
Invert: How to guarantee launch failure?
- No user research → Validate with users
- No load testing → Load test before launch
- No rollback capability → Build rollback
- No success metrics defined → Define metrics upfront
- Team burnout → Sustainable pace
- No communication plan → Prepare stakeholder comms

Combining with Pre-Mortem

Inversion + Pre-Mortem creates powerful risk identification:

  1. Inversion: List ways the project could fail (theoretical)
  2. Pre-Mortem: Imagine it DID fail, explain why (narrative)
  3. Synthesize: Combine both lists, prioritize, mitigate

Common Inversions for Software

DomainGoalKey Inversions to Avoid
SecuritySecure systemTrusting user input, weak auth, exposed secrets
PerformanceFast systemNo caching, blocking calls, no indexes
ReliabilityStable systemNo monitoring, no redundancy, no graceful degradation
MaintainabilityClean codeNo tests, cryptic names, tight coupling
TeamHigh performancePoor communication, no psychological safety, unclear goals

Verification Checklist

  • Goal clearly defined
  • Listed 10+ ways to fail/achieve opposite
  • Categorized failures by type and severity
  • Converted top failures to explicit requirements
  • Verified plan addresses the most critical inversions
  • Shared inversions with team for blind spot check

Key Questions

  • "What would guarantee failure here?"
  • "What mistakes do others commonly make?"
  • "What am I most likely to overlook?"
  • "If this fails spectacularly, what will the postmortem say?"
  • "What would I tell someone else to avoid?"
  • "What would the opposite of success look like, specifically?"

Munger's Warning

"It is remarkable how much long-term advantage people like us have gotten by trying to be consistently not stupid, instead of trying to be very intelligent."

The power of inversion is in avoiding obvious errors that optimism blinds us to. Simple avoidance often beats clever optimization.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

34.06%
按下载量换算70

Claude

29.61%
按下载量换算61

Cursor

18.16%
按下载量换算37

Gemini CLI

9.24%
按下载量换算19

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills