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

### 触发条件

当用户问题包含以下关键词时自动触发：

"之前"、"以前"、"上次"
"历史"、"记录"
"那次"、"那次"
"还记得吗"
"我之前"
"之前我们"
"那时候"

### 1. 判断是否需要检索

检查用户问题是否与历史记录相关。

### 2. 选择检索方式

首选：QMD 搜索（更快、更准确）

qmd search "关键词" --limit 5

备选：Memory 搜索

# 搜索 memory 文件
grep -r "关键词" ~/.openclaw/workspace/memory/

# 或使用 memory_search

### 3. 返回结果

将搜索结果整理后返回给用户。

### 使用示例

用户问："之前那次健身训练的记录是什么？"

自动执行：

检测到"之前"关键词
执行 qmd search "健身 训练"
返回相关记录

### 优势

按需加载：只在需要时搜索，不浪费 context
自动触发：无需手动指定
多源检索：QMD + Memory 双保险

### 配置

QMD 索引：已配置 workspace + butler + researcher + sessions
Memory 文件：自动读取 memory/*.md

自动记忆检索 skill
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: aeoleader
- 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-02T09:38:52.877Z
- Expires at: 2026-05-09T09:38:52.877Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/memory-on-demand)
- [Send to Agent page](https://openagent3.xyz/skills/memory-on-demand/agent)
- [JSON manifest](https://openagent3.xyz/skills/memory-on-demand/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/memory-on-demand/agent.md)
- [Download page](https://openagent3.xyz/downloads/memory-on-demand)