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

thinking-map-territory思维导图 领土

Agent Skill

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

总安装

499

周安装

20

GitHub Stars

46

下载量

162
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

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

简介

思维导图领土用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息。

  • 适合在代码审查或架构梳理时映射模块边界与依赖关系。
  • 将抽象概念转化为可视化拓扑图,辅助理解系统复杂度。
  • 安装命令:npx skills add https://github.com/tjboudreaux/cc-thinking-skills --skill thinking-map-territory
  • 若生成图形,需确认宿主是否支持图像渲染或导出格式兼容。

SKILL.md

Map-Territory Thinking

Overview

Map-Territory thinking, originated by Alfred Korzybski and popularized in general semantics, reminds us that "the map is not the territory." Every representation—mental model, diagram, metric, specification, or abstraction—is a simplified view that necessarily loses information. Confusing the map with the territory leads to flawed decisions, debugging dead-ends, and misaligned expectations.

Core Principle: All models are wrong; some are useful. The question is: how wrong, and useful for what?

When to Use

  • Debugging when behavior doesn't match expectations
  • Evaluating whether documentation/specs match implementation
  • Questioning metrics that seem to tell the "full story"
  • Architecture decisions based on diagrams or models
  • When a "perfect plan" meets messy reality
  • Resolving disagreements where parties hold different mental models
  • Analyzing why estimates consistently miss reality

Decision flow:

Expectation ≠ Reality? → yes → Are you trusting a model/abstraction? → yes → CHECK MAP-TERRITORY FIT
                                                                    ↘ no → Model exists but isn't explicit
                    ↘ no → Model may be accurate (verify anyway)

Key Concepts

1. Maps Are Abstractions

Every representation omits details:

Territory (Reality)Map (Representation)What's Lost
Running codeArchitecture diagramTiming, error paths, state
User behaviorAnalytics dashboardContext, emotion, edge cases
System performanceSLO metricsTail latencies, correlations
Team dynamicsOrg chartInformal influence, trust
Customer needUser storyNuance, unstated assumptions

2. Multiple Maps, One Territory

The same reality can have many valid representations:

Territory: E-commerce checkout flow

Maps:
├── Sequence diagram (shows interactions)
├── State machine (shows transitions)
├── User journey (shows experience)
├── Data flow (shows information movement)
├── Code (shows implementation)
└── Metrics (shows performance)

Each map reveals AND conceals different aspects

3. Map-Territory Confusion

When we mistake the map for the territory:

Confusion: "The tests pass, so the code works"
Reality: Tests are a map of expected behavior, not the territory of all behavior

Confusion: "The architecture diagram shows this is simple"
Reality: The diagram omits error handling, edge cases, and race conditions

Confusion: "Our metrics show users are happy"
Reality: Metrics measure what we chose to measure, not satisfaction itself

4. Abstraction Leakage

Even good abstractions eventually break:

Abstraction: "The network is reliable"
Leak: Timeout, partition, packet loss

Abstraction: "Memory is infinite"
Leak: OOM, cache eviction, GC pause

Abstraction: "The database is ACID"
Leak: Connection pool exhaustion, replication lag

The Map-Territory Alignment Process

Step 1: Identify Your Maps

List all representations you're relying on:

Decision: Scaling the payment service
Maps in use:
- Architecture diagram (last updated 6 months ago)
- Performance benchmarks (from staging, not prod)
- Capacity planning spreadsheet (based on assumptions)
- Team's mental model (from building v1)

Step 2: Assess Map Freshness

For each map, determine:

MapLast UpdatedCreated FromDrift Risk
Arch diagram6 monthsOriginal designHigh
Benchmarks2 monthsStaging envMedium
Capacity sheet1 monthExtrapolationHigh
Mental model2 yearsBuilding v1Very High

Step 3: Check Correspondence

For critical maps, verify against territory:

Test: Does the architecture diagram match the code?
Method: Trace a request through actual code, compare to diagram

Test: Do benchmarks reflect production?
Method: Run production traffic sample through benchmark setup

Test: Do metrics capture what matters?
Method: Interview users, compare their experience to metric story

Step 4: Identify Missing Maps

What aspects of the territory have no map?

Existing maps: Sequence diagrams, API specs, test coverage
Missing maps:
- Failure modes and recovery paths
- Implicit dependencies
- Performance under contention
- Operational runbooks

Step 5: Calibrate Confidence

Adjust trust in maps based on verification:

Map: Test suite
Verification: Tests pass, but manual testing found 3 bugs
Calibration: Tests cover happy path, not edge cases
Action: Add edge case tests, reduce confidence in "green = good"

Map-Territory Mismatches by Domain

Documentation vs. Code

Map: README says "run npm install"
Territory: Requires Node 18+, specific npm version, env vars
Mismatch: Documentation abstracts away prerequisites

Verification: Try setup from scratch on clean machine
Fix: Document actual requirements, automate verification

Specs vs. Implementation

Map: Spec says "API returns user object"
Territory: Sometimes returns 404, sometimes 500, sometimes times out
Mismatch: Spec describes happy path only

Verification: Test error cases, edge cases, failure modes
Fix: Spec error responses, add contract tests

Metrics vs. Outcomes

Map: "DAU increased 20%"
Territory: Users signing up but churning within a week
Mismatch: DAU doesn't capture retention quality

Verification: Add cohort retention, engagement depth metrics
Fix: Choose metrics closer to actual business outcomes

Estimates vs. Reality

Map: "This will take 2 weeks"
Territory: Took 6 weeks due to unforeseen complexity
Mismatch: Estimate was based on mental model, not investigation

Verification: Time-box investigation before estimating
Fix: Add uncertainty buffers, track estimate accuracy

Mental Models vs. Systems

Map: "The cache makes reads fast"
Territory: Cache has 30% hit rate, most reads hit DB
Mismatch: Mental model assumed better cache performance

Verification: Measure actual cache hit rates
Fix: Update mental model, improve caching strategy

Map Quality Indicators

Signs of a Good Map

  • Explicitly states what it omits
  • Has a clear purpose and audience
  • Recently verified against territory
  • Includes uncertainty ranges
  • Acknowledged as a model, not truth

Signs of a Dangerous Map

  • Treated as complete truth
  • No update mechanism
  • Created by someone who never saw the territory
  • Optimistic without error cases
  • No validation feedback loop

Integration with Systems Thinking

Map-Territory thinking complements systems thinking:

Systems Thinking asks: What are the feedback loops and emergent behaviors?
Map-Territory asks: Is my systems diagram actually capturing those dynamics?

Combined approach:
1. Draw the system map (feedback loops, stocks, flows)
2. Verify: Does measured behavior match predicted behavior?
3. Iterate: Where does the map fail? What's the territory really doing?
4. Update: Refine the map or accept its limitations

Verification Checklist

  • Listed all maps/models being relied upon
  • Assessed freshness of each map
  • Identified highest-risk map-territory gaps
  • Verified at least one critical map against reality
  • Acknowledged what the maps don't capture
  • Calibrated confidence based on verification results
  • Documented map limitations for others

Key Questions

  • "What representation am I trusting here?"
  • "When was this model last verified against reality?"
  • "What does this abstraction hide from me?"
  • "How would I know if this map is wrong?"
  • "What would I see if I looked at the territory directly?"
  • "Who created this map, and did they see the actual territory?"
  • "What happens in the territory that this map can't represent?"

Korzybski's Reminders

  1. The map is not the territory — The word "water" won't quench thirst
  2. The map doesn't cover all the territory — No model is complete
  3. The map is self-reflexive — We can make maps of maps (meta-models)

Practical Mantras

  • "All models are wrong, some are useful" — George Box
  • "The menu is not the meal"
  • "The org chart is not the organization"
  • "The test suite is not correctness"
  • "The metric is not the goal"
  • "The estimate is not the timeline"

When the map and territory diverge, update the map or change your navigation—but never insist the territory is wrong because your map says so.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

38%
按下载量换算62

Claude

27.6%
按下载量换算45

Cursor

19.44%
按下载量换算31

Gemini CLI

9.52%
按下载量换算15

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills