memory-lancedb-pro-use
Memory LanceDB Pro Helper
memory-lancedb-pro is a production-focused long-term memory plugin for OpenClaw. It adds persistent memory with hybrid retrieval (vector + BM25), optional cross-encoder rerank, smart LLM extraction, lifecycle decay and tiering, multi-scope isolation, and an operations CLI.
What It Does
- Stores memories in LanceDB with vector + FTS support.
- Retrieves with hybrid scoring, reranking, and filtering.
- Auto-captures memories from conversation turns.
- Auto-recalls relevant memory before agent responses.
- Isolates memory by scope (
global,agent:*,project:*,user:*,custom:*). - Provides
openclaw memory-procommands for operations and migration.
Quick Start
Install plugin
npm i memory-lancedb-pro@beta
Bind memory slot in openclaw.json
{
"plugins": {
"slots": {
"memory": "memory-lancedb-pro"
}
}
}
Validate and restart
openclaw config validate
openclaw gateway restart
openclaw logs --follow --plain | rg "memory-lancedb-pro"
Usage Overview
- Use auto-capture + smart extraction for low-friction memory building.
- Use auto-recall for memory injection before replies.
- Use scopes to prevent cross-agent/user memory leakage.
- Use CLI for audit and maintenance (
list,search,stats,export,import,upgrade,migrate).
Detailed References
- Installation guide (README Installation section):
./reference/installation.md - Configuration guide (README Configuration section):
./reference/configuration.md - Advanced topics (README Advanced Topics section):
./reference/advanced.md - Comparison and project structure from README:
./reference/comparison-and-project-structure.md
README documentation links are mirrored locally here:
- OpenClaw integration playbook:
./reference/openclaw-integration-playbook.md - OpenClaw integration playbook (zh-CN):
./reference/openclaw-integration-playbook.zh-CN.md - Memory architecture analysis:
./reference/memory_architecture_analysis.md - Long-context chunking:
./reference/long-context-chunking.md - Changelog v1.1.0:
./reference/CHANGELOG-v1.1.0.md
Core CLI Commands
openclaw memory-pro list --scope global --limit 20
openclaw memory-pro search "query" --scope global --limit 10
openclaw memory-pro stats --scope global
openclaw memory-pro export --scope global --output memories.json
openclaw memory-pro import memories.json --scope global --dry-run
openclaw memory-pro upgrade --dry-run
openclaw memory-pro migrate check --source /path/to/memory-lancedb
Operational Guardrails
- Run
openclaw config validatebefore restart. - Keep API keys in environment variables, not in tracked files.
- Use
upgradeonly for legacymemory-lancedb-prodata. - Use
migrateonly when moving from built-inmemory-lancedb.
More from olafgeibig/skills
container-use
Use this skill when working with Apple Containers (lightweight Linux VMs) as a native Docker replacement on macOS. This includes building container images, running containers, managing container lifecycle, configuring networking, handling volumes, mounting files with SSH forwarding, or performing multi-platform builds. Invoke for tasks involving the container CLI, Apple container tool, or Linux containers on Apple Silicon macOS 26+.
29skill-builder
Use this skill when creating new Claude Code skills from scratch, editing existing skills to improve their descriptions or structure, or converting Claude Code sub-agents to skills. This includes designing skill workflows, writing SKILL.md files, organizing supporting files with intention-revealing names, and leveraging CLI tools and Node.js scripting.
16ocx-use
Use this skill when managing OpenCode extensions with OCX (OpenCode eXtensions). This includes installing components from registries, using Ghost Mode for cross-repository development, auditing changes with SHA-256 verification, managing dependencies, configuring registries, or performing component updates and version management. Invoke for tasks involving ocx init, ocx add, ocx update, ocx diff, ocx ghost, or OCX registry operations.
12md-wiki
Multi-domain LLM Wiki — build and maintain a federation of interlinked markdown knowledge bases. Each domain wiki has its own schema, index, and log, linked across boundaries via path-based wikilinks. Extends Karpathy's single-wiki pattern for multiple domains under one root.
4vault-ops
Use this skill when working with a markdown notes vault such as Obsidian. It defines a default workflow for selecting a vault, reading vault-local instructions, navigating notes, writing regular notes, and maintaining Maps of Content (MoCs). Triggers: vault, obsidian, notes vault, moc, map of content, markdown notes.
4lossless-claw-use
Use this skill when installing, configuring, tuning, or troubleshooting the lossless-claw plugin in OpenClaw. It covers context engine setup, LCM compaction tuning, agent memory tools (`lcm_grep`, `lcm_describe`, `lcm_expand_query`), database operations, TUI maintenance workflows, and optional FTS5 runtime enablement. Triggers: lossless-claw, LCM, OpenClaw context engine, summary DAG, lcm-tui, lcm_expand_query.
3