# Send OpenClaw Memory (Docs) to your agent
Use the source page and any available docs to guide the install because the item currently does not return a direct package file.
## Fast path
- Open the source page via Open source listing.
- If you can obtain the package, extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the source page and extracted files.
## Suggested prompts
### New install

```text
I tried to install a skill package from Yavira, but the item currently does not return a direct package file. Inspect the source page and any extracted docs, then tell me what you can confirm and any manual steps still required. Then review README.md for any prerequisites, environment setup, or post-install checks.
```
### Upgrade existing

```text
I tried to upgrade a skill package from Yavira, but the item currently does not return a direct package file. Compare the source page and any extracted docs with my current installation, then summarize what changed and what manual follow-up I still need. Then review README.md for any prerequisites, environment setup, or post-install checks.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "openclaw-memory-docs",
    "name": "OpenClaw Memory (Docs)",
    "source": "tencent",
    "type": "skill",
    "category": "效率提升",
    "sourceUrl": "https://clawhub.ai/homeofe/openclaw-memory-docs",
    "canonicalUrl": "https://clawhub.ai/homeofe/openclaw-memory-docs",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/openclaw-memory-docs",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=openclaw-memory-docs",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "index.ts",
      "openclaw.plugin.json",
      "package-lock.json",
      "package.json"
    ],
    "downloadMode": "manual_only",
    "sourceHealth": {
      "source": "tencent",
      "slug": "openclaw-memory-docs",
      "status": "source_issue",
      "reason": "not_found",
      "recommendedAction": "review_source",
      "checkedAt": "2026-04-30T15:18:48.889Z",
      "expiresAt": "2026-05-01T15:18:48.889Z",
      "httpStatus": 404,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=openclaw-memory-docs",
      "contentType": "text/plain",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=openclaw-memory-docs",
        "contentDisposition": null,
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "openclaw-memory-docs"
      },
      "scope": "item",
      "summary": "Known item issue.",
      "detail": "This item's current download entry is known to bounce back to a listing or homepage instead of returning a package file.",
      "primaryActionLabel": "Open source listing",
      "primaryActionHref": "https://clawhub.ai/homeofe/openclaw-memory-docs"
    },
    "validation": {
      "installChecklist": [
        "Open the source listing and confirm there is a real package or setup artifact available.",
        "Review SKILL.md before asking your agent to continue.",
        "Treat this source as manual setup until the upstream download flow is fixed."
      ],
      "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/openclaw-memory-docs",
    "downloadUrl": "https://openagent3.xyz/downloads/openclaw-memory-docs",
    "agentUrl": "https://openagent3.xyz/skills/openclaw-memory-docs/agent",
    "manifestUrl": "https://openagent3.xyz/skills/openclaw-memory-docs/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/openclaw-memory-docs/agent.md"
  }
}
```
## Documentation

### openclaw-memory-docs

This is an OpenClaw Gateway plugin (not an agent skill) that provides a conservative, audit-friendly memory store.

It is designed for project documentation and long-lived notes where you care about:

explicit control over what gets stored
no accidental storage of secrets
deterministic, local-first behavior
tag and project metadata for organization

### What it does

Adds commands: /remember-doc, /search-docs, /list-docs, /forget-doc, /export-docs, /import-docs
Adds a search tool: docs_memory_search
Stores entries in a local JSONL file (one record per line)
Uses a deterministic local embedder to enable semantic-ish search without external services
Optional redaction for common secret formats (API keys, tokens, private key blocks)
Supports tag and project metadata for filtering and organization

### ClawHub

clawhub install openclaw-memory-docs

### Dev

openclaw plugins install -l ~/.openclaw/workspace/openclaw-memory-docs
openclaw gateway restart

### /remember-doc - Save a documentation memory

/remember-doc [--tags t1,t2] [--project name] <text>

Stores a note as a documentation memory item. Secrets are automatically redacted if redactSecrets is enabled (default: true).

--tags t1,t2 - Comma-separated tags, merged with defaultTags from config
--project name - Associate this item with a project

Examples:

/remember-doc Dubai: decide A vs B, then collect facts, then prepare a tax advisor briefing.
/remember-doc --tags legal,tax --project dubai Tax advisor meeting scheduled for March.
/remember-doc --tags=api --project=backend The /users endpoint requires Bearer auth.

### /search-docs - Search documentation memories

/search-docs [--tags t1,t2] [--project name] <query> [limit]

Searches stored memories using semantic similarity. Returns scored results showing IDs, tags, and project badges.

query - Search text (required)
limit - Max results, 1-20 (default: 5)
--tags t1,t2 - Filter to items matching these tags
--project name - Filter to items with this project

Examples:

/search-docs Dubai plan
/search-docs --project=dubai tax advisor 10
/search-docs --tags=api,backend endpoint auth

### /list-docs - List recent documentation memories

/list-docs [--tags t1,t2] [--project name] [limit]

Lists the most recent documentation memory items with IDs, dates, tags, and project badges.

limit - Max items, 1-50 (default: 10)
--tags t1,t2 - Filter to items matching these tags
--project name - Filter to items with this project

Examples:

/list-docs
/list-docs 20
/list-docs --project=dubai
/list-docs --tags=legal --project=dubai 5

### /forget-doc - Delete a documentation memory

/forget-doc <id>

Deletes a memory item by its full ID (shown by /list-docs). Requires auth.

### /export-docs - Export as markdown files

/export-docs [--tags t1,t2] [--project name] [path]

Exports documentation memories as individual markdown files for git-first workflows. Each file has YAML frontmatter (id, kind, createdAt, tags, project) and the memory text as body.

path - Target directory (default: exportPath config or ~/.openclaw/workspace/memory/docs-export)
--tags t1,t2 - Export only items matching these tags
--project name - Export only items with this project

File naming: YYYY-MM-DD_<shortid>.md

Examples:

/export-docs
/export-docs ~/docs/memories
/export-docs --project=dubai
/export-docs --tags=api --project=backend ~/exports

### /import-docs - Import from markdown files

/import-docs [path]

Imports documentation memories from a directory of exported markdown files. Each .md file must have YAML frontmatter with id, kind, and createdAt fields (the format produced by /export-docs). Requires auth.

Duplicate items (matching by ID) and invalid files are skipped automatically.

path - Source directory (default: exportPath config or ~/.openclaw/workspace/memory/docs-export)

Examples:

/import-docs
/import-docs ~/docs/memories
/import-docs /path/to/exported/docs

### Tool: docs_memory_search

Available to agents and automations as a tool call. Searches documentation memories by query with optional tag and project filtering.

Input schema:

{
  "query": "Dubai plan A vs B",
  "limit": 5,
  "tags": ["legal"],
  "project": "dubai"
}

ParameterTypeRequiredDescriptionquerystringyesSearch query textlimitnumbernoMax results, 1-20 (default: 5)tagsstring[]noFilter results to items matching all given tagsprojectstringnoFilter results to items with this project name

Returns a hits array with score, id, createdAt, tags, project, and text for each match.

### Configuration

{
  "plugins": {
    "entries": {
      "openclaw-memory-docs": {
        "enabled": true,
        "config": {
          "storePath": "~/.openclaw/workspace/memory/docs-memory.jsonl",
          "dims": 256,
          "redactSecrets": true,
          "defaultTags": ["docs"],
          "maxItems": 5000,
          "exportPath": "~/.openclaw/workspace/memory/docs-export"
        }
      }
    }
  }
}

OptionTypeDefaultDescriptionenabledbooleantrueEnable or disable the pluginstorePathstring~/.openclaw/...docs-memory.jsonlPath to the JSONL storage filedimsnumber256Embedding dimensions (32-2048)redactSecretsbooleantrueRedact detected secrets before storagedefaultTagsstring[]["docs"]Tags automatically added to every saved itemmaxItemsnumber5000Maximum items in the store (100-100000)exportPathstring~/.openclaw/...docs-exportDefault directory for /export-docs and /import-docs

### Notes

This plugin intentionally does not auto-capture messages.
If you want automatic capture, use openclaw-memory-brain.
Export/import uses a git-friendly format: one markdown file per memory item, with deterministic filenames (YYYY-MM-DD_<shortid>.md). Frontmatter contains all metadata, making diffs clean and merge-friendly.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: homeofe
- Version: 0.2.1
## Source health
- Status: source_issue
- Known item issue.
- This item's current download entry is known to bounce back to a listing or homepage instead of returning a package file.
- Health scope: item
- Reason: not_found
- Checked at: 2026-04-30T15:18:48.889Z
- Expires at: 2026-05-01T15:18:48.889Z
- Recommended action: Open source listing
## Links
- [Detail page](https://openagent3.xyz/skills/openclaw-memory-docs)
- [Send to Agent page](https://openagent3.xyz/skills/openclaw-memory-docs/agent)
- [JSON manifest](https://openagent3.xyz/skills/openclaw-memory-docs/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/openclaw-memory-docs/agent.md)
- [Download page](https://openagent3.xyz/downloads/openclaw-memory-docs)