Skills openclaw-memory-plugin

OpenClaw Memory System

install
source · Clone the upstream repo
git clone https://github.com/openclaw/skills
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/openclaw/skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/0xcjl/openclaw-memory-plugin" ~/.claude/skills/clawdbot-skills-openclaw-memory-plugin && rm -rf "$T"
OpenClaw · Install into ~/.openclaw/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/openclaw/skills "$T" && mkdir -p ~/.openclaw/skills && cp -r "$T/skills/0xcjl/openclaw-memory-plugin" ~/.openclaw/skills/clawdbot-skills-openclaw-memory-plugin && rm -rf "$T"
manifest: skills/0xcjl/openclaw-memory-plugin/SKILL.md
source content

OpenClaw Memory System

Persistent memory system for OpenClaw multi-agent workflows.

Features

  • BM25 semantic search with keyword fallback
  • Keyword-based memory indexing
  • DAG-based memory association linking
  • Session lifecycle hooks (before/after task)
  • WAL snapshot for crash recovery

Tools

  • memory_recall
    - Recall top-N memories before a task
  • memory_save
    - Save task output to memory
  • memory_search
    - BM25 full-text search
  • memory_build
    - Rebuild all indexes
  • memory_dag_link
    - Link two memory entries

Usage

Install via OpenClaw gateway plugin manager.

Architecture

See

docs/ARCHITECTURE.md
for full details.

License

MIT