← Back to Plugins
Voice

Memory Docs

homeofe By homeofe 👁 128 views ▲ 0 votes

OpenClaw plugin: Store and recall technical documentation and knowledge.

GitHub

Install

openclaw plugins install -l

Configuration Example

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

README

# openclaw-memory-docs

OpenClaw plugin: **Documentation Memory**.

This plugin is conservative by design:
- No automatic capture
- Explicit command to store docs memories
- Local JSONL store + local deterministic embeddings

## Install

### ClawHub

```bash
clawhub install openclaw-memory-docs
```

### Dev

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

## Usage

- Save: `/remember-doc <text>`
- Search (tool): `docs_memory_search({ query, limit })`

## Config

```json
{
  "plugins": {
    "entries": {
      "openclaw-memory-docs": {
        "enabled": true,
        "config": {
          "storePath": "~/.openclaw/workspace/memory/docs-memory.jsonl",
          "dims": 256,
          "redactSecrets": true,
          "defaultTags": ["docs"]
        }
      }
    }
  }
}
```
voice

Comments

Sign in to leave a comment

Loading comments...