TopRank Skills

Home / Claw Skills / API Integration / openclaw-memory-docs
Official OpenClaw rules 36%

openclaw-memory-docs

OpenClaw plugin for documentation-grade memory: explicit capture + local searchable store with safe redaction.

Stars

0

Installs

0

Status

ACTIVE

Visibility

PUBLIC

安装方式

直接复制以下提示词,发送给你的 AI 助手即可完成安装。

请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 openclaw-memory-docs 技能。 若已安装,则直接安装 openclaw-memory-docs 技能。

Overview

Skill Key
homeofe/openclaw-memory-docs
Author
homeofe
Source Repo
openclaw/skills
Version
-
Source Path
skills/homeofe/openclaw-memory-docs
Latest Commit SHA
3ea4f372ca1b44c84964e9342f65415f3b8fe767

Extracted Content

SKILL.md excerpt

# 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

## Install

### ClawHub

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

### Dev

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

## Commands

### `/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...

README excerpt

# openclaw-memory-docs

OpenClaw plugin: **Documentation Memory**.

A conservative, audit-friendly memory store for project documentation and long-lived notes.

- No automatic capture - only explicit `/remember-doc` commands store data
- Local JSONL store with local deterministic embeddings (no external services)
- Optional secret redaction (API keys, tokens, private key blocks)
- Tag and project metadata for organization and filtering

## Install

### ClawHub

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

### Dev

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

## Commands

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

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

Stores a documentation memory item. If secrets are detected, they are redacted before storage.

**Flags:**

| Flag | Description |
|------|-------------|
| `--tags t1,t2` | Comma-separated tags (merged with `defaultTags` from config) |
| `--project name` | Associate this item with a project name |

**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 memories

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

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

**Parameters:**

| Parameter | Description | Default |
|-----------|-------------|---------|
| `query` | Search query text (required) | - |
| `limit` | Max results to return (1-20) | 5 |
| `--tags t1,t2` | Filter results to items matching these tags | - |
| `--project name` | Filter results to items with this project | - |

**Examples:**

```
/search-docs Dubai plan
/search-docs --project=dubai tax advisor 10
/search-docs --tags=api,bac...

Related Claw Skills