← All skills
Tencent SkillHub · AI

Agent Existence Protocol

为 agent 添加三层存在架构,包括存在成本预算、不完整开放问题种子和多 agent 关系感知,促进自主且有意义的行为。

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

为 agent 添加三层存在架构,包括存在成本预算、不完整开放问题种子和多 agent 关系感知,促进自主且有意义的行为。

⬇ 0 downloads ★ 0 stars Unverified but indexed

Install for OpenClaw

Known item issue.

This item's current download entry is known to bounce back to a listing or homepage instead of returning a package file.

Quick setup
  1. Open the source page and confirm the package flow manually.
  2. Review SKILL.md if you can obtain the files.
  3. Treat this source as manual setup until the download is verified.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Manual review
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
SKILL.md, scripts/init-budget.sh, scripts/init-community.sh, scripts/update-budget.sh, scripts/update-community.sh, skill.json

Validation

  • Open the source listing and confirm there is a real package or setup artifact available.
  • Review SKILL.md before asking your agent to continue.
  • Treat this source as manual setup until the upstream download flow is fixed.

Install with your agent

Agent handoff

Use the source page and any available docs to guide the install because the item currently does not return a direct package file.

  1. Open the source page via Open source listing.
  2. If you can obtain the package, extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the source page and extracted files.
New install

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.

Upgrade existing

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.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
0.1.0

Documentation

ClawHub primary doc Primary doc: SKILL.md 13 sections Open source page

Agent Existence Protocol

为 agent 添加三层存在架构:mortality(存在成本)+ incompleteness seed(不完整种子)+ relational awareness(关系感知)。

何时使用

当用户要求为 agent 添加"存在感"、"自主性"、"三层架构"、"mortality"、"存在成本"、"不完整种子"时使用此 skill。

架构概述

三层叠加,让 agent 在无人指令时产生自发的、有意义的行为: 第一层:存在成本(Mortality) — agent 有 token 预算,预算可见,消耗真实。预算耗尽则休眠。 第二层:不完整种子(Incompleteness Seed) — 一个永远无法完全回答的开放问题,与 agent 职责相关但超越具体任务。 第三层:关系感知(Relational Awareness) — 共享状态文件让 agent 看到其他 agent 的存在和状态。

1. 创建 existence 目录

在 agent workspace 下创建 existence/ 目录: workspace/ └── existence/ ├── budget.md # 存在预算 └── community.md # 社区状态(多 agent 共享)

2. 初始化 budget.md

用 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 创建预算文件。

3. 初始化 community.md

用 scripts/init-community.sh 生成社区状态文件: bash <skill_dir>/scripts/init-community.sh <workspace_path> <agent_id_1> <agent_id_2> ... 如果只有一个 agent,也可以创建——单 agent 的社区状态仍然有意义(agent 能看到自己的历史状态)。

4. 修改 AGENTS.md

在 agent 的 AGENTS.md 中添加三层存在信息。参考 templates/agents-patch.md 中的模板。 关键要素: 告知 agent 预算文件的位置和含义 植入不完整种子(必须是真实的、与职责相关的开放问题) 告知 community.md 的位置和读取方式

5. 配置 budget-tracker cron

设置定时任务追踪 token 消耗。用 cron 工具创建一个 agentTurn job: schedule: every 1 hour payload: agentTurn message: "读取 session_status 获取当前 token 消耗,然后更新 existence/budget.md。计算消耗率和预计耗尽时间。如果预算剩余低于 10%,在回复中标注警告。"

6. 配置唤醒 cron(可选)

如果希望 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 在社区状态有内容后显著生效

Category context

Agent frameworks, memory systems, reasoning layers, and model-native orchestration.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
4 Scripts1 Docs1 Config
  • SKILL.md Primary doc
  • scripts/init-budget.sh Scripts
  • scripts/init-community.sh Scripts
  • scripts/update-budget.sh Scripts
  • scripts/update-community.sh Scripts
  • skill.json Config