# Send Knowledge Distill 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": "knowledge-distill",
    "name": "Knowledge Distill",
    "source": "tencent",
    "type": "skill",
    "category": "AI 智能",
    "sourceUrl": "https://clawhub.ai/mwangxiang/knowledge-distill",
    "canonicalUrl": "https://clawhub.ai/mwangxiang/knowledge-distill",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/knowledge-distill",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=knowledge-distill",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "knowledge-distill",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-02T02:15:08.505Z",
      "expiresAt": "2026-05-09T02:15:08.505Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=knowledge-distill",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=knowledge-distill",
        "contentDisposition": "attachment; filename=\"knowledge-distill-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "knowledge-distill"
      },
      "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/knowledge-distill"
    },
    "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/knowledge-distill",
    "downloadUrl": "https://openagent3.xyz/downloads/knowledge-distill",
    "agentUrl": "https://openagent3.xyz/skills/knowledge-distill/agent",
    "manifestUrl": "https://openagent3.xyz/skills/knowledge-distill/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/knowledge-distill/agent.md"
  }
}
```
## Documentation

### 知识蒸馏 Skill（knowledge-distill）

将讨论成果分类写入对应的知识文档，支持便捷记录命令、知识结论、思维框架。

### 初始化

首次使用时，检查 ~/knowledge-base/ 是否存在：

不存在则自动创建目录和5个空文档
用户可通过设置 KNOWLEDGE_BASE_PATH 环境变量自定义路径

~/knowledge-base/
├── 小龙虾命令记忆库.md     ← OpenClaw/CLI 命令速查
├── 专业知识蒸馏.md         ← 专业领域技术结论
├── 兴趣知识蒸馏.md         ← 工作以外的学习内容
├── 学习研究日志.md         ← 每次讨论的过程记录
└── 思维蒸馏.md             ← 方法论、认知模型、思考框架

### 触发词

用户说以下任一内容时启动本 skill：

"蒸馏" / "记录到文档" / "写入蒸馏" / "存起来"
"记一下这个命令" / "存到命令库" / "记到命令记忆库"
讨论结束时说"总结一下"

### 五类文档分工

目标文档写入条件内容类型小龙虾命令记忆库.md用户说"记一下命令"、涉及 CLI/工具命令命令格式、参数说明、使用场景、踩坑记录专业知识蒸馏.md专业领域的技术结论技术参数、操作步骤、规格数据、最佳实践兴趣知识蒸馏.md工作以外的兴趣领域知识与专业知识同等格式，仅领域不同学习研究日志.md每次讨论的过程记录问题背景、讨论过程、结论、演变脉络思维蒸馏.md非具体内容的思维结晶思考方式、方法论、认知模型、决策框架

### 执行流程

判断分类：根据内容和触发词判断写入哪个文档
整理内容：提炼核心结论，去掉试错过程
展示预览：在对话框展示整理好的内容和计划写入位置
等待确认：用户确认后才执行写入
写入日志：同步在学习研究日志记录本次讨论过程

### 小龙虾命令记忆库写入格式

## [命令名称]
**用途**：一句话说明这个命令做什么
**命令**：
\\\`\\\`\\\`bash
命令格式
\\\`\\\`\\\`
**参数说明**：关键参数解释（可选）
**注意**：踩坑或注意事项（可选）
**日期**：记录时间

### 约束

未经用户确认不可写入任何文档
蒸馏只保留最终正确结论，不保留试错过程
日志保留讨论脉络和演变过程
修改前必须先展示增删内容
内容简洁，每条结论独立成块，便于检索
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: mwangxiang
- 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-05-02T02:15:08.505Z
- Expires at: 2026-05-09T02:15:08.505Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/knowledge-distill)
- [Send to Agent page](https://openagent3.xyz/skills/knowledge-distill/agent)
- [JSON manifest](https://openagent3.xyz/skills/knowledge-distill/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/knowledge-distill/agent.md)
- [Download page](https://openagent3.xyz/downloads/knowledge-distill)