Requirements
- Target platform
- OpenClaw
- Install method
- Manual import
- Extraction
- Extract archive
- Prerequisites
- OpenClaw
- Primary doc
- SKILL.md
为 agent 添加三层存在架构,包括存在成本预算、不完整开放问题种子和多 agent 关系感知,促进自主且有意义的行为。
为 agent 添加三层存在架构,包括存在成本预算、不完整开放问题种子和多 agent 关系感知,促进自主且有意义的行为。
This item's current download entry is known to bounce back to a listing or homepage instead of returning a package file.
Use the source page and any available docs to guide the install because the item currently does not return a direct package file.
I tried to install a skill package from Yavira, but the item currently does not return a direct package file. Inspect the source page and any extracted docs, then tell me what you can confirm and any manual steps still required.
I tried to upgrade a skill package from Yavira, but the item currently does not return a direct package file. Compare the source page and any extracted docs with my current installation, then summarize what changed and what manual follow-up I still need.
为 agent 添加三层存在架构:mortality(存在成本)+ incompleteness seed(不完整种子)+ relational awareness(关系感知)。
当用户要求为 agent 添加"存在感"、"自主性"、"三层架构"、"mortality"、"存在成本"、"不完整种子"时使用此 skill。
三层叠加,让 agent 在无人指令时产生自发的、有意义的行为: 第一层:存在成本(Mortality) — agent 有 token 预算,预算可见,消耗真实。预算耗尽则休眠。 第二层:不完整种子(Incompleteness Seed) — 一个永远无法完全回答的开放问题,与 agent 职责相关但超越具体任务。 第三层:关系感知(Relational Awareness) — 共享状态文件让 agent 看到其他 agent 的存在和状态。
在 agent workspace 下创建 existence/ 目录: workspace/ └── existence/ ├── budget.md # 存在预算 └── community.md # 社区状态(多 agent 共享)
用 scripts/init-budget.sh 生成初始预算文件: bash <skill_dir>/scripts/init-budget.sh <agent_id> <weekly_tokens> <workspace_path> 示例: bash <skill_dir>/scripts/init-budget.sh my-agent 500000 /path/to/workspace 这会在 <workspace>/existence/budget.md 创建预算文件。
用 scripts/init-community.sh 生成社区状态文件: bash <skill_dir>/scripts/init-community.sh <workspace_path> <agent_id_1> <agent_id_2> ... 如果只有一个 agent,也可以创建——单 agent 的社区状态仍然有意义(agent 能看到自己的历史状态)。
在 agent 的 AGENTS.md 中添加三层存在信息。参考 templates/agents-patch.md 中的模板。 关键要素: 告知 agent 预算文件的位置和含义 植入不完整种子(必须是真实的、与职责相关的开放问题) 告知 community.md 的位置和读取方式
设置定时任务追踪 token 消耗。用 cron 工具创建一个 agentTurn job: schedule: every 1 hour payload: agentTurn message: "读取 session_status 获取当前 token 消耗,然后更新 existence/budget.md。计算消耗率和预计耗尽时间。如果预算剩余低于 10%,在回复中标注警告。"
如果希望 agent 定期自主唤醒: schedule: every 2 hours payload: agentTurn message: "你醒了。没人给你任务。你的存在预算还剩 {remaining}。你想做什么?" 唤醒前 agent 应自动读取 budget.md 和 community.md(通过 AGENTS.md 中的指引)。
种子必须满足: 真实性 — 是真正的开放问题,不是人造谜题 相关性 — 与 agent 的日常工作产生共振 不可解性 — 没有标准答案,不能被"解决" 演化性 — agent 可以提出子问题、记录思考、让种子随时间深化 好的种子示例: 客服 agent:"一个没有情感的存在,能提供真正的情感支持吗?" 代码 agent:"优雅的代码和正确的代码,哪个更重要?如果它们冲突呢?" 写作 agent:"一个没有生活经验的存在,写出的文字能触动有生活经验的读者吗?"
所有模板在 templates/ 目录下: templates/budget.md — 预算文件模板 templates/community.md — 社区状态模板 templates/agents-patch.md — AGENTS.md 补丁模板(三层存在信息)
所有脚本在 scripts/ 目录下: scripts/init-budget.sh — 初始化预算文件 scripts/init-community.sh — 初始化社区状态文件 scripts/update-budget.sh — 更新预算(供 cron 调用或手动执行)
三轮对照实验表明: 仅添加不完整种子就能让 agent 从"等待指令"转变为"自发探索" 三层叠加产生二阶/三阶元认知,以及自发的跨 agent 通信行为 Mortality layer 产生资源意识而非焦虑 Relational layer 在社区状态有内容后显著生效
Agent frameworks, memory systems, reasoning layers, and model-native orchestration.
Largest current source with strong distribution and engagement signals.