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

thinking-bounded-rationality思维有限理性

Agent Skill

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

总安装

480

周安装

20

GitHub Stars

46

下载量

160
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

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

简介

用于查找、检索和筛选相关信息,适合基于关键词快速定位候选结果。

  • 适用于任务场景中的线索匹配和信息聚合,支持多维度条件筛选。
  • 可结合原始 README 继续核验具体实现方式,灵活适配不同检索需求。
  • 安装前建议确认权限范围和项目维护状态,避免误触发网络请求。
  • 需注意是否涉及外部 API 调用或敏感数据访问,确保合规使用。

SKILL.md

Bounded Rationality and Satisficing

Overview

Herbert Simon's Bounded Rationality recognizes that human decision-making is limited by three fundamental constraints: available information, cognitive capacity, and time. Rather than pursuing optimal solutions (which is often impossible), Simon proposed "satisficing"—a portmanteau of satisfy + suffice—choosing solutions that are good enough to meet requirements.

Core Principle: "Decision makers can satisfice either by finding optimum solutions for a simplified world, or by finding satisfactory solutions for a more realistic world." — Herbert Simon

When to Use

  • Making design decisions under time pressure
  • Facing complex problems with incomplete information
  • Analysis paralysis is blocking progress
  • Optimization costs exceed potential benefits
  • Need to set stopping criteria for searches/research
  • Evaluating when "good enough" beats "perfect"
  • Resource allocation under constraints

Decision flow:

Decision needed? → yes → Do you have perfect information? → rarely
                                                         ↘
                    Is optimization cost justified? → no → SATISFICE
                                                    ↘ yes → Optimize (but verify cost)

The Three Constraints

1. Information Bounds

What you can know is limited

  • Complete information rarely exists
  • Gathering more information has costs
  • Information has diminishing returns
  • Future states are inherently uncertain
Example: Choosing a technology stack
Reality: You can't test every option in production
         You can't predict 5-year industry shifts
         You can't know your future team composition
Satisfice: Pick a well-supported option that meets current needs

2. Cognitive Bounds

What you can process is limited

  • Working memory holds ~4-7 items
  • Complex comparisons overwhelm analysis
  • Decision fatigue degrades quality
  • Expertise helps but doesn't eliminate limits
Example: Reviewing architecture options
Reality: You can't hold 20 tradeoffs in mind simultaneously
         You can't model all interaction effects
         You can't foresee all edge cases
Satisfice: Focus on the 3-5 most critical criteria

3. Time Bounds

When you must decide is constrained

  • Deadlines are real
  • Markets move
  • Opportunities expire
  • Perfect is the enemy of shipped
Example: Technical design for Q1 deadline
Reality: You have 2 weeks, not 2 months
         The business needs an answer now
         Delaying has its own costs
Satisfice: Make the best decision possible with available time

Satisficing vs. Optimizing

When to Satisfice

SignalWhy Satisfice
Reversible decisionCan adjust later with more information
Time pressureCost of delay exceeds value of more analysis
Diminishing returns80% solution found, 100% would take 10x effort
High uncertaintyMore analysis won't reduce uncertainty meaningfully
Many acceptable optionsSeveral solutions meet requirements adequately
Low stakesConsequences of suboptimal choice are minor

When to Optimize

SignalWhy Optimize
Irreversible decisionMistakes are permanent or very costly to undo
High stakesWrong choice has severe consequences
Clear criteriaYou know exactly what "best" means
Bounded search spaceAll options can actually be evaluated
Available timeDeadline allows for thorough analysis
Clear value of optimalDifference between good and best is significant

The Satisficing Process

Step 1: Define Aspiration Level

Set the minimum acceptable threshold for each criterion:

Example: Hiring a senior engineer
Optimizing: Find the absolute best candidate
Satisficing: Find a candidate who:
- Has 5+ years relevant experience ✓
- Can pass technical interview ✓
- Salary expectations fit budget ✓
- Available to start within 4 weeks ✓
- Culture fit (team confirms) ✓

First candidate who meets all criteria → Hire

Step 2: Search Sequentially

Evaluate options one at a time against aspiration level:

Option A: Meets 4/5 criteria → Continue search
Option B: Meets 3/5 criteria → Continue search
Option C: Meets 5/5 criteria → STOP, choose this one

Key insight: You don't compare options against each other, you compare each option against your threshold.

Step 3: Adjust Aspiration If Needed

If search is too long or too short, recalibrate:

Too many options qualify → Raise aspiration level
Nothing qualifies after reasonable search → Lower aspiration level

Step 4: Commit and Move On

Once threshold is met:

  • Stop searching
  • Accept the decision
  • Resist second-guessing
  • Redirect energy to execution

Application Patterns

For Technical Design

Scenario: Choose a message queue for new service

Satisficing approach:
1. Define requirements (aspiration level):
   - At-least-once delivery ✓
   - Handles 10k msg/sec ✓
   - Team familiarity or fast learning curve ✓
   - Managed option available ✓
   - Within cost budget ✓

2. Evaluate sequentially:
   - RabbitMQ: Meets all → STOP, use RabbitMQ

3. Don't continue researching Kafka, SQS, etc.
   unless RabbitMQ fails threshold

For Code Review

Scenario: Reviewing a PR under time pressure

Satisficing approach:
1. Define "good enough" criteria:
   - No security vulnerabilities ✓
   - Tests pass ✓
   - No obvious performance issues ✓
   - Code is readable ✓
   - Follows project conventions ✓

2. Stop when criteria met
   Don't perfect every line if shipping matters

For Research/Investigation

Scenario: Debugging production issue

Satisficing approach:
1. Define stopping criteria:
   - Root cause identified ✓
   - Fix verified in staging ✓
   - Rollback plan exists ✓

2. Stop investigating once you can fix
   Don't exhaustively trace every code path
   if you have a working solution

For Feature Scope

Scenario: MVP feature set decisions

Satisficing approach:
1. Define "enough to learn":
   - Core user job addressed ✓
   - Measurable success metric exists ✓
   - Usable enough for feedback ✓
   - Can ship within sprint ✓

2. First scope that meets criteria → Ship it
   Don't polish what you might throw away

Setting Appropriate Aspiration Levels

Too High → Analysis Paralysis

Symptoms:

  • Nothing ever meets the bar
  • Endless research and comparison
  • Decisions perpetually delayed
  • Perfect becomes enemy of good

Fix: Ask "What's the minimum that would be acceptable?"

Too Low → Poor Outcomes

Symptoms:

  • Frequent rework required
  • Quality issues in production
  • Technical debt accumulation
  • Stakeholder dissatisfaction

Fix: Ask "What past decisions do I regret? What threshold would have prevented them?"

Calibration Heuristics

Reversibility Check:
- Easily reversible → Lower aspiration OK
- Hard to reverse → Raise aspiration

Consequence Check:
- Minor consequences → Lower aspiration OK
- Major consequences → Raise aspiration

Time Check:
- Tight deadline → Accept lower aspiration
- Ample time → Can afford higher aspiration

Common Traps

Trap 1: Satisficing Feels Like Settling

Reality: Satisficing is rational under constraints, not lazy.

Optimizing with infinite time = mathematically correct
Optimizing with real constraints = often irrational
Satisficing = adapted to actual world

Trap 2: Post-Decision Regret

Reality: Finding a better option later doesn't mean the decision was wrong.

You chose Option B (met threshold)
Later discovered Option D was "better"
This is expected—you stopped searching at B
Regret is only valid if B didn't meet your threshold

Trap 3: Creeping Aspiration

Reality: Moving goalposts prevent closure.

Original: "Need 100ms response time"
After meeting it: "Actually, 50ms would be better"
After that: "Hmm, 25ms would be ideal..."

Fix: Lock aspiration level before search begins

Trap 4: Satisficing the Wrong Things

Reality: Some decisions warrant optimization.

Wrong to satisfice:
- Security critical systems
- Legal compliance
- Safety-critical code
- Irreversible architectural choices

Right to satisfice:
- Internal tooling
- Reversible experiments
- Style preferences
- Low-stakes choices

Integration with Other Thinking Models

With First Principles

Use First Principles to determine:
- What constraints are real vs assumed?
- What is the fundamental requirement?
Then satisfice against those fundamentals

With Inversion

Use Inversion to set aspiration level:
- "What would make this solution unacceptable?"
- Avoid those failure modes
- Any option avoiding them satisfices

With Circle of Competence

Outside your circle:
- You can't evaluate "optimal" anyway
- Satisficing is your only realistic option
- Set thresholds based on expert input

Inside your circle:
- You can choose when to optimize vs satisfice
- Trust your calibrated aspiration levels

With Pre-Mortem

Run pre-mortem to validate aspiration level:
- "If this satisficed solution fails, why?"
- Adjust thresholds to prevent likely failures
- Don't over-engineer against unlikely failures

Verification Checklist

  • Identified whether this decision warrants optimizing or satisficing
  • Set clear aspiration level before searching
  • Defined explicit stopping criteria
  • Evaluated options against threshold, not against each other
  • Stopped when threshold was met (or adjusted threshold rationally)
  • Committed to decision without continued comparison shopping
  • Documented reasoning for future reference

Key Questions

  • "What's the minimum acceptable solution here?"
  • "What would 'good enough' look like for this decision?"
  • "Is more research likely to change my decision?"
  • "What's the cost of continued analysis vs acting now?"
  • "Can I reverse this decision if I learn more later?"
  • "Am I searching for best, or searching to avoid deciding?"
  • "What threshold would I set for someone else in my position?"

Simon's Insight

"A wealth of information creates a poverty of attention."

In a world of infinite information and finite attention, satisficing isn't settling—it's adapting to reality. The goal isn't to make perfect decisions, but to make good decisions efficiently, preserving cognitive resources for the problems that truly require optimization.

The satisficer who ships beats the optimizer who's still researching.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.15%
按下载量换算56

Claude

29.2%
按下载量换算47

Cursor

17.55%
按下载量换算28

Gemini CLI

9.02%
按下载量换算14

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

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

安装前确认

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

来源信息

继续浏览同类 Skills