Token导航 LogoToken导航TokenDH.com
开发只读github未标认证来源可访问许可证需确认审计通过

thinking-second-order二阶思维

Agent Skill

thinking-second-order 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

509

周安装

21

GitHub Stars

46

下载量

166
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

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

简介

二阶思维用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息。

  • 适合在技术决策中长期影响评估与副作用预判。
  • 不仅回答“会怎样”,更追问“这会导致什么连锁反应”。
  • 安装命令:npx skills add https://github.com/tjboudreaux/cc-thinking-skills --skill thinking-second-order
  • 易陷入无限递归,需设置思考深度上限防止输出发散。

SKILL.md

Second-Order Thinking

Overview

Second-order thinking, articulated by Howard Marks, moves beyond immediate effects to consider what happens next, and what that leads to. First-order thinking is simplistic ("This action solves the problem"); second-order thinking asks "And then what?" repeatedly.

Core Principle: The obvious answer to "What should I do?" is often wrong because it ignores downstream effects.

When to Use

  • Making strategic or architectural decisions
  • Evaluating policy or process changes
  • Considering incentive structures
  • Planning features that change user behavior
  • Decisions with long-term consequences
  • When the "obvious" solution feels too easy

Decision flow:

Decision with consequences beyond immediate? → yes → APPLY SECOND-ORDER THINKING
                                            ↘ no → First-order may suffice

First vs Second-Order Thinking

SituationFirst-OrderSecond-Order
Team is slowAdd more engineersMore engineers → more coordination → slower decisions → may get slower
Users complainAdd the feature they requestFeature → complexity → more support load → less time for core work
Costs too highCut spendingCuts → reduced quality → customer churn → revenue drop → worse situation
Bug in prodHotfix immediatelyHotfix → skip testing → more bugs → trust erosion → slower deployments

The Process

Step 1: Identify the Decision and First-Order Effect

Decision: Add a feature flag system
First-order: Teams can ship features independently ✓

Step 2: Ask "And Then What?"

Chain the consequences:

Feature flags → More flags created → Flag debt accumulates
             → Teams don't clean up → Combinatorial testing complexity
             → Bugs from flag interactions → "Turn it off" becomes risky
             → Flags become permanent → Codebase complexity explodes

Step 3: Apply the 10/10/10 Framework

Evaluate impact across time horizons:

TimeframeQuestionAnalysis
10 minutesHow will I feel right after?Relief—problem solved
10 monthsHow will this affect things in 10 months?Flag sprawl emerging
10 yearsWhat's the long-term trajectory?Technical debt crisis

Step 4: Consider Systemic Effects

Ask: "What if everyone did this?"

Decision: Skip code review for urgent fixes
If everyone: All urgent fixes skip review
Result: Definition of "urgent" expands → most things skip review
Outcome: Quality collapses, more urgent fixes needed

Step 5: Map the Consequence Chain

┌─────────────────┐
│ Decision: X     │
└────────┬────────┘
         ▼
┌─────────────────┐
│ 1st Order: A    │ ← Obvious, intended
└────────┬────────┘
         ▼
┌─────────────────┐
│ 2nd Order: B    │ ← Less obvious
└────────┬────────┘
         ▼
┌─────────────────┐
│ 3rd Order: C    │ ← Often counterintuitive
└────────┬────────┘
         ▼
┌─────────────────┐
│ Feedback Loop   │ ← May reinforce or counteract
└─────────────────┘

Common Second-Order Effects in Software

Optimization

1st: Optimize critical path → Faster
2nd: Team focuses on optimization → Less feature work
3rd: Premature optimization spreads → Complexity increases
4th: Maintenance burden grows → Slower overall

Hiring

1st: Hire senior engineers → More capacity
2nd: Salary expectations rise → Budget pressure
3rd: Junior engineers feel stuck → Attrition
4th: Knowledge concentrated in seniors → Bus factor risk

Process Addition

1st: Add approval process → More oversight
2nd: Approvals create bottleneck → Slower delivery
3rd: People route around process → Shadow processes
4th: Formal process becomes theater → Worst of both worlds

Technical Shortcuts

1st: Skip tests to ship faster → Feature delivered
2nd: Bugs emerge → Support load increases
3rd: Team fights fires → Less time for features
4th: More shortcuts taken → Quality death spiral

Application Framework

For any significant decision, fill out:

## Second-Order Analysis: [Decision]

### Immediate Effect (1st Order)
[What happens right away]

### Near-Term Consequences (2nd Order)
[What does the immediate effect cause? 1-3 months]

### Medium-Term Consequences (3rd Order)
[What do the near-term effects cause? 3-12 months]

### Long-Term Trajectory
[Where does this path lead? 1+ years]

### Feedback Loops
[Does this create reinforcing or balancing dynamics?]

### If Scaled
[What happens if this becomes standard practice?]

### Revised Decision
[Given analysis, what should we actually do?]

Questions to Surface Second-Order Effects

  • "And then what?"
  • "Who else is affected, and how will they respond?"
  • "What incentives does this create?"
  • "What behavior does this encourage/discourage?"
  • "If this works, what problems does success create?"
  • "What will we wish we had done differently in a year?"
  • "What does this look like if everyone does it?"

Verification Checklist

  • Identified first-order effect clearly
  • Asked "and then what?" at least 3 times
  • Applied 10/10/10 framework
  • Considered systemic/scaled effects
  • Identified potential feedback loops
  • Revised decision based on full consequence chain
  • Documented reasoning for future reference

Marks' Warning

"First-level thinking is simplistic and superficial, and just about everyone can do it. Second-level thinking is deep, complex, and convoluted."

The crowd uses first-order thinking. Competitive advantage comes from thinking one level deeper—seeing what happens after the obvious effect.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

39.05%
按下载量换算65

Claude

30.94%
按下载量换算51

Cursor

17.22%
按下载量换算29

Gemini CLI

10.1%
按下载量换算17

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

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

来源信息

继续浏览同类 Skills