← 返回 Skills 市场
kingofzhao

Creative Lateral Thinking

作者 KingOfZhao · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ⚠ suspicious
134
总下载
0
收藏
1
当前安装
1
版本数
在 OpenClaw 中安装
/install creative-lateral-thinking
功能描述
创意横向思维 Skill —— 打破线性推理的创意碰撞框架,六顶思考帽×四向碰撞×跨界类比引擎
使用说明 (SKILL.md)

Creative Lateral Thinking Skill

元数据

字段
名称 creative-lateral-thinking
版本 1.0.0
作者 KingOfZhao
发布日期 2026-03-31
置信度 96%

来源碰撞

self-evolution-cognition (四向碰撞)
        ⊗
ai-growth-engine (成长引擎: 打破停滞)
        ⊗
De Bono 六顶思考帽 (外部知识注入)
        ↓
creative-lateral-thinking

核心哲学

线性推理从A到B。横向思维从A跳到Z,再发现Z和B的隐藏连接。 四向碰撞是分析工具,横向思维是创造工具。两者互补。

六顶帽 × 四向碰撞(8向创意推理)

传统四向碰撞(分析型):
  正面 → 反面 → 侧面 → 整体

创意扩展(增加情感和创造力维度):
  ⚪ 白帽(事实): 已知的客观数据是什么?
  🔴 红帽(情感): 直觉告诉我什么?用户会感受到什么?
  ⬛ 黑帽(批判): 这个创意最致命的缺陷是什么?
  🟡 黄帽(乐观): 这个创意最好的结果是什么?
  🟢 绿帽(创意): 还有什么疯狂但可能有效的方案?
  🔵 蓝帽(元思考): 我们在解决正确的问题吗?

8向碰撞矩阵:
        分析维度        创意维度
正面    ⬛ 黑帽批判     🟡 黄帽乐观
反面    反面碰撞        🟢 绿帽创意
侧面    侧面碰撞        🔴 红帽直觉
整体    整体碰撞        🔵 蓝帽元思考

跨界类比引擎

问题: "如何让DiePre视觉检测更准确?"

类比碰撞:
  医学影像: 放射科医生如何区分良性和恶性?→ 多尺度特征融合
  指纹识别: 如何处理部分模糊指纹?→ 局部特征匹配+全局验证
  语音识别: 如何处理口音差异?→ 适配层+基础模型分离
  气象预报: 如何提高预测准确率?→ 集成多个模型的投票机制

→ DiePre改进方向: 多模型集成投票+局部-全局两级验证

安装命令

clawhub install creative-lateral-thinking

调用方式

from skills.creative_lateral_thinking import CreativeLateralThinking

creative = CreativeLateralThinking(workspace=".")

# 8向创意碰撞
result = creative.eight_way_collision(
    problem="如何提升用户留存率",
    known=["当前留存30%", "主要流失在注册后3天"],
    unknown=["流失原因", "什么功能能留住用户"],
    cross_domains=["游戏化", "社交网络", "订阅制", "习惯养成"]
)
print(result.crazy_ideas)     # 疯狂但可能有效的方案
print(result.analogies)       # 跨界类比
print(result.best_direction)  # 最有潜力的方向

# 跨界类比
analogies = creative.cross_domain_analogy(
    source_domain="DiePre视觉检测",
    target_domains=["医学影像", "指纹识别", "自动驾驶", "卫星遥感"]
)

学术参考

  1. Group-Evolving Agents — 群体创意碰撞
  2. SAGE: Multi-Agent Self-Evolution — 多视角推理
  3. Self-evolving Embodied AI — 打破思维定式
安全使用建议
This package looks like documentation for a creative-thinking skill but lacks the actual implementation it advertises. Before installing or invoking it: 1) Check the referenced homepage/repo (https://github.com/KingOfZhao/AGI_PROJECT) to confirm a published package/artifacts and review the actual code. 2) If 'clawhub install' would fetch a remote package, inspect the package tarball or source first (look for a skills/creative_lateral_thinking module and its code). 3) Avoid running the install in a privileged environment; use an isolated sandbox. 4) If you need the capability, request the author or publisher to supply the implementation files or a clear install spec. 5) Do not grant any secrets or elevated permissions unless you can review the code that will be executed. The main risk here is misleading/incomplete packaging rather than explicit malicious behavior, but that ambiguity warrants caution.
功能分析
Type: OpenClaw Skill Name: creative-lateral-thinking Version: 1.0.0 The skill bundle 'creative-lateral-thinking' is a cognitive framework for brainstorming and lateral thinking based on De Bono's Six Thinking Hats. The provided files (SKILL.md, README.md, etc.) contain only documentation, metadata, and conceptual usage examples without any executable code or suspicious instructions. There are no indicators of data exfiltration, malicious execution, or prompt injection attempts.
能力评估
Purpose & Capability
The SKILL.md describes a concrete Python API (from skills.creative_lateral_thinking import CreativeLateralThinking) and an install command (clawhub install creative-lateral-thinking), implying a packaged implementation. The registry entry and file manifest contain only documentation files (README, SKILL.md, HEARTBEAT.md, VERIFICATION_PROTOCOL.md) and no code files or install specification. This mismatch (documented runtime API vs. no implementation) is an incoherence that could indicate an incomplete or misleading package.
Instruction Scope
The runtime instructions themselves are limited to creative thinking patterns and example Python calls — they do not instruct the agent to read arbitrary system files, access credentials, or exfiltrate data. However, they assume the existence of a local Python module with methods that are not present in the package, which could lead an agent to attempt to fetch/install unknown code from other sources or the registry.
Install Mechanism
There is no install spec in the package and no code to install. The README and SKILL.md reference 'clawhub install creative-lateral-thinking', but because no install instructions or artifacts are packaged here, the actual effect of that command is undefined. This is not itself high-risk, but is inconsistent and could cause the client to download external artifacts at install time — verify the registry/remote package source before allowing install actions.
Credentials
The skill declares no required environment variables, no credentials, and no config paths. The SKILL.md does not reference any secrets or system credentials. From the provided files, there is no evidence it requests disproportionate access to environment or credentials.
Persistence & Privilege
The skill does not request always: true and uses default invocation settings. There is no evidence in the package that it modifies other skills or system-wide settings. Persistence/privilege concerns are minimal based on the provided metadata.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install creative-lateral-thinking
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /creative-lateral-thinking 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
批量碰撞10轮: 六顶帽×四向碰撞+跨界类比
元数据
Slug creative-lateral-thinking
版本 1.0.0
许可证 MIT-0
累计安装 1
当前安装数 1
历史版本数 1
常见问题

Creative Lateral Thinking 是什么?

创意横向思维 Skill —— 打破线性推理的创意碰撞框架,六顶思考帽×四向碰撞×跨界类比引擎. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 134 次。

如何安装 Creative Lateral Thinking?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install creative-lateral-thinking」即可一键安装,无需额外配置。

Creative Lateral Thinking 是免费的吗?

是的,Creative Lateral Thinking 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

Creative Lateral Thinking 支持哪些平台?

Creative Lateral Thinking 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Creative Lateral Thinking?

由 KingOfZhao(@kingofzhao)开发并维护,当前版本 v1.0.0。

💬 留言讨论