# Send Agent Evolution to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "agent-evolution",
    "name": "Agent Evolution",
    "source": "tencent",
    "type": "skill",
    "category": "AI 智能",
    "sourceUrl": "https://clawhub.ai/LingLin6/agent-evolution",
    "canonicalUrl": "https://clawhub.ai/LingLin6/agent-evolution",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/agent-evolution",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=agent-evolution",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "scripts/evolution.js",
      "scripts/heartbeat-check.sh",
      "scripts/init-rules.sh"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "agent-evolution",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-29T05:54:05.500Z",
      "expiresAt": "2026-05-06T05:54:05.500Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=agent-evolution",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=agent-evolution",
        "contentDisposition": "attachment; filename=\"agent-evolution-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "agent-evolution"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/agent-evolution"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/agent-evolution",
    "downloadUrl": "https://openagent3.xyz/downloads/agent-evolution",
    "agentUrl": "https://openagent3.xyz/skills/agent-evolution/agent",
    "manifestUrl": "https://openagent3.xyz/skills/agent-evolution/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/agent-evolution/agent.md"
  }
}
```
## Documentation

### agent-evolution

Agent 行为固化与进化系统。追踪规则执行、检测行为模式、维护身份连续性。用于：让 agent 的行为规则从"写下来"变成"做到了"。当 agent 需要自我改进、行为追踪、角色一致性、重复检测时激活。与 Memelord/memory-tools 互补：它们管记忆，本 skill 管行为。

### 使用

所有命令通过 node scripts/evolution.js <command> [args] 执行，输出均为 JSON。

存储路径：~/.openclaw/workspace/.agent-evolution/state.json

### 行为追踪器

追踪规则执行与违反，计算权重。

# 初始化（首次使用）
node scripts/evolution.js init

# 添加规则
node scripts/evolution.js add-rule <rule_id> <description> <source>

# 执行规则前调用，记录 +1
node scripts/evolution.js check <rule_id>

# 记录违反
node scripts/evolution.js violation <rule_id> <context>

# 查看统计
node scripts/evolution.js stats

### 身份状态层

跨会话持久化的结构化身份。

# 查看身份
node scripts/evolution.js identity

# 更新字段
node scripts/evolution.js identity-update <field> <value>

# 记录进化事件
node scripts/evolution.js evolve <change> <trigger>

### 模式检测器

检测重复行为和角色偏离。

# 记录操作
node scripts/evolution.js log <action_type> <detail>

# 检查告警
node scripts/evolution.js detect

# 重置计数器
node scripts/evolution.js reset <pattern_id>

### 综合报告

node scripts/evolution.js report

### 初始化规则

从 AGENTS.md / SOUL.md 自动提取规则：

bash scripts/init-rules.sh --agents /path/to/AGENTS.md --soul /path/to/SOUL.md

### 心跳检查

供 HEARTBEAT.md 调用：

bash scripts/heartbeat-check.sh
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: LingLin6
- Version: 1.0.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-04-29T05:54:05.500Z
- Expires at: 2026-05-06T05:54:05.500Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/agent-evolution)
- [Send to Agent page](https://openagent3.xyz/skills/agent-evolution/agent)
- [JSON manifest](https://openagent3.xyz/skills/agent-evolution/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/agent-evolution/agent.md)
- [Download page](https://openagent3.xyz/downloads/agent-evolution)