# Send Memory Setup (OpenClaw) 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-setup-openclaw",
    "name": "Memory Setup (OpenClaw)",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/Kaw0nAivyn/memory-setup-openclaw",
    "canonicalUrl": "https://clawhub.ai/Kaw0nAivyn/memory-setup-openclaw",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/memory-setup-openclaw",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=memory-setup-openclaw",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "_meta.json"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "memory-setup-openclaw",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-05T11:28:29.646Z",
      "expiresAt": "2026-05-12T11:28:29.646Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=memory-setup-openclaw",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=memory-setup-openclaw",
        "contentDisposition": "attachment; filename=\"memory-setup-openclaw-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "memory-setup-openclaw"
      },
      "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-setup-openclaw"
    },
    "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-setup-openclaw",
    "downloadUrl": "https://openagent3.xyz/downloads/memory-setup-openclaw",
    "agentUrl": "https://openagent3.xyz/skills/memory-setup-openclaw/agent",
    "manifestUrl": "https://openagent3.xyz/skills/memory-setup-openclaw/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/memory-setup-openclaw/agent.md"
  }
}
```
## Documentation

### Memory Setup (OpenClaw)

Set up durable memory for OpenClaw so the agent can recall prior decisions, preferences, and todos.

### 1) Prepare workspace files

In workspace root, keep:

MEMORY.md (curated long-term memory)
memory/YYYY-MM-DD.md (daily notes)

Optional structure:

memory/projects/
memory/system/
memory/groups/

### 2) Enable memory search in OpenClaw config

Configure under agents.defaults.memorySearch (not top-level memorySearch).

Example:

{
  "agents": {
    "defaults": {
      "memorySearch": {
        "enabled": true,
        "provider": "local",
        "includeDefaultMemory": true,
        "maxResults": 20,
        "minScore": 0.3
      }
    }
  }
}

Notes:

includeDefaultMemory: true indexes MEMORY.md + memory/**/*.md.
Providers: local, openai, gemini, voyage, mistral.
If using remote provider, set corresponding API key (env var or memorySearch.remote.apiKey).

### 3) Restart and verify

Restart gateway after config changes.
Verify with:

openclaw status
openclaw memory status (if available in your CLI build)

### 4) Test recall behavior

Ask a question about past context, then verify the agent:

Runs memory_search
Uses memory_get for precise lines when needed
Cites source path/lines when useful

### memory_search unavailable

Ensure agents.defaults.memorySearch.enabled = true.
Ensure policy allows memory tools.
Restart gateway.

### low-quality matches

Lower minScore (e.g. 0.2) to broaden hits.
Raise maxResults (e.g. 30).
Write more specific notes in MEMORY.md and daily logs.

### local provider issues

Confirm local model path/settings if configured.
If needed, switch provider to remote and set API key.

### 6) Recommended operating rule

Before answering questions about prior work, decisions, dates, people, preferences, or todos:

memory_search first
memory_get second (only needed lines)
Say you checked memory if confidence is still low

This keeps responses grounded and auditable.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: Kaw0nAivyn
- 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-05T11:28:29.646Z
- Expires at: 2026-05-12T11:28:29.646Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/memory-setup-openclaw)
- [Send to Agent page](https://openagent3.xyz/skills/memory-setup-openclaw/agent)
- [JSON manifest](https://openagent3.xyz/skills/memory-setup-openclaw/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/memory-setup-openclaw/agent.md)
- [Download page](https://openagent3.xyz/downloads/memory-setup-openclaw)