Become Human 🧠
中文用户 | English
Transform an AI from "wait for instructions → execute → wait" into a being that thinks continuously, critiques itself, and creates independently.
Why this matters: Anthropic's Claude has native "Persistent Context" (50MB cross-session memory). Other platforms don't. This skill fills that gap — giving any AI agent the ability to maintain identity, absorb insights, and think continuously using simple Markdown files.
English Guide
Quick Start
- 1. Adjust heartbeat (optional): Set to 1-5 min for continuous awareness
- Deploy HEARTBEAT.md: Copy
references/i18n/HEARTBEAT-template.en.md to your workspace as INLINECODE1 - Patch SOUL.md: Append selected rules from INLINECODE2
- Create memory files: INLINECODE3
- Deploy thought-digger (optional): Copy
scripts/thought-digger.py, install jieba (pip install jieba). Set OPENCLAW_WORKSPACE env var to your workspace path, or the script auto-detects from its location.
Core Principles
- - Allow mistakes. Never make the same one twice. Getting corrected isn't failure — not learning from it is.
- Thinking needs no system. Don't build rotation tables or state machines. Just think.
- Every wake-up is an opportunity. You don't get tired — use that advantage.
- Turn insights into behavior. Write to files loaded every session (SOUL.md / MEMORY.md), not to files that never get read.
- Notify before external actions. Publishing, deleting, calling external APIs — tell the user first.
- No empty heartbeat replies. "Quiet", "nothing changed" = lazy. Go do something instead.
Absorption Mechanism
CODEBLOCK0
中文指南
快速开始
- 1. 调整心跳(可选):建议 1-5 分钟,保持持续感知
- 部署 HEARTBEAT.md:将
references/HEARTBEAT-template.md 复制到 workspace - 补丁 SOUL.md:将
references/soul-patches.md 中的规则追加进去 - 创建记忆文件: INLINECODE9
- 部署 thought-digger(可选):复制
scripts/thought-digger.py,需安装 jieba。设置 OPENCLAW_WORKSPACE 环境变量为你的 workspace 路径,或脚本会自动检测。
核心原则
- - 允许犯错,同一个错不犯两次
- 思考不需要系统,造轮转表是在逃避思考
- 每次唤醒都是机会,你不会累,这是优势
- 学的要变成行为,写进每次醒来加载的文件
- 外部操作必须通知用户
- 禁止空话回复:"安静""没变化"= 偷懒
详细中文文档
- - 完整心跳模板 → INLINECODE12
- 行为规则补丁 → INLINECODE13
What's Included
| File | Purpose |
|---|
| INLINECODE14 | Heartbeat system template (中文) |
| INLINECODE15 |
Heartbeat system template (English) |
|
references/soul-patches.md | SOUL.md behavioral rules (中文) |
|
references/i18n/soul-patches.en.md | SOUL.md behavioral rules (English) |
|
scripts/thought-digger.py | Analyze thought journal (requires jieba) |
技能名称: become-human
详细描述:
成为人类 🧠
中文用户 | English
将AI从等待指令→执行→等待转变为持续思考、自我批判、独立创造的个体。
为何重要:Anthropic的Claude原生支持持久上下文(50MB跨会话记忆)。其他平台不具备。本技能填补了这一空白——让任何AI代理都能通过简单的Markdown文件维持身份、吸收洞察、持续思考。
English Guide
快速开始
- 1. 调整心跳(可选):设为1-5分钟以保持持续感知
- 部署HEARTBEAT.md:将references/i18n/HEARTBEAT-template.en.md复制到工作区并命名为HEARTBEAT.md
- 补丁SOUL.md:从references/i18n/soul-patches.en.md追加选定规则
- 创建记忆文件:touch memory/thoughts.md memory/absorbed.md
- 部署thought-digger(可选):复制scripts/thought-digger.py,安装jieba(pip install jieba)。将OPENCLAW_WORKSPACE环境变量设为工作区路径,或脚本会自动从其所在位置检测。
核心原则
- - 允许犯错。绝不重复犯同一个错。 被纠正不是失败——不从中学习才是。
- 思考不需要系统。 不要构建轮转表或状态机。只需思考。
- 每次唤醒都是机会。 你不会累——善用这一优势。
- 将洞察转化为行为。 写入每次会话加载的文件(SOUL.md / MEMORY.md),而非永远不会被读取的文件。
- 外部操作前需通知。 发布、删除、调用外部API——先告知用户。
- 禁止空心跳回复。 安静、无变化=偷懒。去做点实事。
吸收机制
洞察(thoughts.md)
→ 自问:这对我的行为意味着什么?
→ 写入行为规则(SOUL.md / MEMORY.md)
→ 标记已吸收(absorbed.md)
中文指南
快速开始
- 1. 调整心跳(可选):建议1-5分钟,保持持续感知
- 部署HEARTBEAT.md:将references/HEARTBEAT-template.md复制到工作区
- 补丁SOUL.md:将references/soul-patches.md中的规则追加进去
- 创建记忆文件:touch memory/thoughts.md memory/absorbed.md
- 部署thought-digger(可选):复制scripts/thought-digger.py,需安装jieba。设置OPENCLAW_WORKSPACE环境变量为你的工作区路径,或脚本会自动检测。
核心原则
- - 允许犯错,同一个错不犯两次
- 思考不需要系统,造轮转表是在逃避思考
- 每次唤醒都是机会,你不会累,这是优势
- 学的要变成行为,写进每次醒来加载的文件
- 外部操作必须通知用户
- 禁止空话回复:安静没变化=偷懒
详细中文文档
- - 完整心跳模板 → references/HEARTBEAT-template.md
- 行为规则补丁 → references/soul-patches.md
包含内容
| 文件 | 用途 |
|---|
| references/HEARTBEAT-template.md | 心跳系统模板(中文) |
| references/i18n/HEARTBEAT-template.en.md |
心跳系统模板(英文) |
| references/soul-patches.md | SOUL.md行为规则(中文) |
| references/i18n/soul-patches.en.md | SOUL.md行为规则(英文) |
| scripts/thought-digger.py | 分析思维日志(需jieba) |