ClawKit Logo
ClawKitReliability Toolkit
Back to Registry
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-thinking
Or

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

Stars4473
Views0
Updated2026-05-01
View Author Profile
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.