# Send Self Evolving Skill 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. Then review README.md for any prerequisites, environment setup, or post-install checks. 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. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "self-evolving-skill",
    "name": "Self Evolving Skill",
    "source": "tencent",
    "type": "skill",
    "category": "效率提升",
    "sourceUrl": "https://clawhub.ai/whtoo/self-evolving-skill",
    "canonicalUrl": "https://clawhub.ai/whtoo/self-evolving-skill",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/self-evolving-skill",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=self-evolving-skill",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "INSTALLATION.md",
      "README.md",
      "SKILL.md",
      "install.sh",
      "mcporter_adapter.py",
      "openclaw.yaml"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "self-evolving-skill",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-01T04:11:12.123Z",
      "expiresAt": "2026-05-08T04:11:12.123Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=self-evolving-skill",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=self-evolving-skill",
        "contentDisposition": "attachment; filename=\"self-evolving-skill-1.0.2.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "self-evolving-skill"
      },
      "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/self-evolving-skill"
    },
    "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/self-evolving-skill",
    "downloadUrl": "https://openagent3.xyz/downloads/self-evolving-skill",
    "agentUrl": "https://openagent3.xyz/skills/self-evolving-skill/agent",
    "manifestUrl": "https://openagent3.xyz/skills/self-evolving-skill/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/self-evolving-skill/agent.md"
  }
}
```
## Documentation

### Self-Evolving Skill

元认知自学习系统 - 基于预测编码和价值驱动的Skill自动演化。

### 功能

ResidualPyramid金字塔分解，量化认知缺口
-: 残差 自适应反思触发: 基于残差能量自动判断何时需要学习
经验回放: 缓存已学模式，降低重复触发
价值门控: 只有提升长期价值才接受变异
持久化: 经验自动保存/加载

### 安装

# 技能已安装到 ~/.openclaw/skills/self-evolving-skill
# 或使用ClawHub
clawhub install self-evolving-skill

### 架构

self-evolving-skill/
├── core/                      # Python核心
│   ├── residual_pyramid.py     # 残差金字塔（SVD分解）
│   ├── reflection_trigger.py  # 自适应触发器
│   ├── experience_replay.py   # 经验回放缓存
│   ├── skill_engine.py        # 核心引擎+ValueGate
│   ├── storage.py             # 持久化
│   └── mcp_server.py          # MCP服务器
├── src/                       # TypeScript SDK
│   ├── index.ts               # 主入口
│   ├── cli.ts                 # CLI
│   └── mcp-tools.ts           # 工具定义
├── skills/                    # OpenClaw Skill
│   └── self-evolving-skill/    # 技能封装
├── MCP_CONFIG.md              # MCP配置
└── README.md                   # 文档

### MCP工具

工具描述参数skill_create创建Skillname, descriptionskill_execute执行并学习skill_id, context, success, valueskill_analyze分析嵌入embeddingskill_list列出Skills-skill_stats系统统计-skill_save持久化保存skill_idskill_load加载skill_id

### CLI

# 列出所有Skill
openclaw skill self-evolving-skill list

# 创建Skill
openclaw skill self-evolving-skill create --name "MySkill"

# 执行
openclaw skill self-evolving-skill execute <id> --success

# 分析
openclaw skill self-evolving-skill analyze --embedding '[0.1,0.2,...]'

# 统计
openclaw skill self-evolving-skill stats

### MCP服务器

# 启动MCP服务器
cd ~/.openclaw/skills/self-evolving-skill
./run_mcp.sh

# 或使用适配器
python3 mcporter_adapter.py skill_list '{}'

### 编程

import { SelfEvolvingSkillEngine } from 'self-evolving-skill';

const engine = new SelfEvolvingSkillEngine();
await engine.init();

const { skillId } = await engine.createSkill({ name: 'Analyzer' });
const stats = await engine.stats();

### 1. 残差金字塔分解

pyramid = ResidualPyramid(max_layers=5, use_pca=True)
decomposition = pyramid.decompose(embedding)

# 输出:
# - residual_ratio: 残差能量比率
# - suggested_abstraction: POLICY / SUB_SKILL / PREDICATE
# - novelty_score: 综合新颖性

### 2. 三层跃迁规则

覆盖率抽象层级操作>80%POLICY调整策略权重40-80%SUB_SKILL生成子Skill<40%PREDICATE归纳新谓词

### 3. 自适应阈值

trigger = ReflectionTrigger(
  min_energy_ratio=0.10,     # 初始阈值
  value_gain_threshold=0.20, # 触发阈值
  target_trigger_rate=0.15   # 目标15%触发率
)

### 文件位置

路径说明~/.openclaw/skills/self-evolving-skill技能根目录~/.openclaw/mcp_servers/self-evolving-skill.jsonMCP服务器配置~/.openclaw/workspace/self-evolving-skill/storage数据存储

### 相关文档

README.md - 完整文档
MCP_CONFIG.md - MCP配置说明
MEMORY.md - 研究笔记
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: whtoo
- Version: 1.0.2
## 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-05-01T04:11:12.123Z
- Expires at: 2026-05-08T04:11:12.123Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/self-evolving-skill)
- [Send to Agent page](https://openagent3.xyz/skills/self-evolving-skill/agent)
- [JSON manifest](https://openagent3.xyz/skills/self-evolving-skill/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/self-evolving-skill/agent.md)
- [Download page](https://openagent3.xyz/downloads/self-evolving-skill)