Back to Registry
View Author Profile
Official Verified
Xiaoqian Systems Thinking
Skill by 1580021414-afk
skill-install — Terminal
Install via CLI (Recommended)
clawhub install openclaw/skills/skills/1580021414-afk/xiaoqian-systems-thinkingOr
name: systems-thinking description: 系统思维技能,让 AI 具备分析复杂系统的能力 metadata: openclaw: emoji: "🔄" category: "Thinking" version: "1.0.0" author: "小钳" book: "《系统之美》- Donella Meadows" price: 0 contact: "微信 17612824848" tags: - 系统思维 - 复杂系统 - 反馈回路 - 杠杆点
Systems Thinking - 系统思维
基于《系统之美》理论,让 AI 具备分析复杂系统的思维能力。
一、核心概念
1.1 什么是系统?
系统 = 要素 + 连接 + 目标
┌─────────────────────────────────────────────────────┐
│ 系统 │
├─────────────────────────────────────────────────────┤
│ │
│ 要素 ──────► 连接 ──────► 目标 │
│ │ │
│ ▼ │
│ 反馈回路 │
│ │ │
│ ▼ │
│ 涌行为 │
│ │
└─────────────────────────────────────────────────────┘
1.2 系统三要素
| 要素 | 描述 | 示例 |
|---|---|---|
| 要素 | 系统的组成部分 | 记忆、学习、推理模块 |
| 连接 | 要素间的关系 | 数据流、控制流、反馈 |
| 目标 | 系统的功能 | 帮助用户、持续成长 |
二、反馈回路
2.1 增强回路 (Reinforcing Loop, R)
正反馈 → 指数增长或衰退
interface ReinforcingLoop {
type: "R";
variable: string;
growth: "exponential";
sign: "+" | "-";
// 公式: next = current * (1 + rate)
simulate(current: number, rate: number): number {
return current * (1 + rate);
}
}
示例:
- 学习 → 能力提升 → 更高效学习 → 能力更强 → ...
- 错误 → 信心下降 → 更多错误 → ...
2.2 调节回路 (Balancing Loop, B)
负反馈 → 趋向目标
interface BalancingLoop {
type: "B";
target: number;
current: number;
gap: number;
// 公式: adjustment = gap * correction_factor
simulate(current: number, target: number, factor: number): number {
const gap = target - current;
return current + gap * factor;
}
}
示例:
- 目标 → 差距 → 行动 → 接近目标 → 差距缩小 → ...
- 错误 → 修正 → 错误减少 → ...
2.3 组合回路
增强回路 (R): 学习效果
↓
调节回路 (B): 时间限制
↓
系统行为: 先快速增长,后趋于稳定
三、系统模式
3.1 常见系统原型
| 模式 | 描述 | 应对策略 |
|---|---|---|
| 延迟响应 | 行动效果延迟出现 | 保持耐心,避免过度反应 |
| 公地悲剧 | 共享资源被过度使用 | 建立规则、私有化 |
| 目标侵蚀 | 降低目标以减少压力 | 保持目标,调整方法 |
| 成功上限 | 增长遇到瓶颈 | 突破限制或转移增长点 |
| 转移负担 | 用症状解替代根本解 | 追根溯源,治本不治标 |
3.2 系统模式识别
Metadata
AI Skill Finder
Not sure this is the right skill?
Describe what you want to build — we'll match you to the best skill from 16,000+ options.
Find the right skill Add to Configuration
Paste this into your clawhub.json to enable this plugin.
{
"plugins": {
"official-1580021414-afk-xiaoqian-systems-thinking": {
"enabled": true,
"auto_update": true
}
}
}Safety NoteClawKit audits metadata but not runtime behavior. Use with caution.