This skill should be used when working with memory-lancedb-pro, a production-grade long-term memory MCP plugin for OpenClaw AI agents. Use when installing, c...
数据来源:ClawHub。 在 ClawSkills 查看
选择你使用的 Agent
方法一:命令行安装(推荐)
推荐(无需提前安装 clawhub)
npx clawhub@latest --dir ~/.claude/skills install memory-lancedb-pro或使用 clawhub CLI(需提前安装)
clawhub --dir ~/.claude/skills install memory-lancedb-pro⚠️ 需要 Node.js 18+,没有 Node?请使用下方方法二直接下载 ZIP。 安装 Node.js →
方法二:手动下载安装(无需 Node)
下载 ZIP,解压后将文件夹放到以下路径,重启 Agent 即可:
安装路径
~/.claude/skills/memory-lancedb-pro/💡解压后将文件夹放到上方路径,重启 Agent 即可生效
--- name: memory-lancedb-pro description: This skill should be used when working with memory-lancedb-pro, a production-grade long-term memory MCP plugin for OpenClaw AI agents. Use when installing, configuring, or using any feature of memory-lancedb-pro including Smart Extraction, hybrid retrieval, memory lifecycle management, multi-scope isolation, self-improvement governance, or any MCP memory tools (memory_recall, memory_store, memory_forget, memory_update, memory_stats, memory_list, self_improvement_log, self_improvement_extract_skill, self_improvement_review). ---
Production-grade long-term memory system (v1.1.0-beta.8) for OpenClaw AI agents. Provides persistent, intelligent memory storage using LanceDB with hybrid vector + BM25 retrieval, LLM-powered Smart Extraction, Weibull decay lifecycle, and multi-scope isolation.
For full technical details (thresholds, formulas, database schema, source file map), see references/full-reference.md.
---
When the user says "help me enable the best config", "apply optimal configuration", or similar, follow this exact procedure:
Present these three plans in a clear comparison, then ask the user to pick one:
---
Plan A — 🏆 Full Power (Best Quality)
jina-embeddings-v5-text-small (task-aware, 1024-dim)jina-reranker-v3 (cross-encoder, same key)gpt-4o-mini (Smart Extraction)JINA_API_KEY + OPENAI_API_KEYPlan B — 💰 Budget (Free Reranker)
jina-embeddings-v5-text-smallBAAI/bge-reranker-v2-m3 (free tier available)gpt-4o-miniJINA_API_KEY + SILICONFLOW_API_KEY + OPENAI_API_KEYPlan C — 🟢 Simple (OpenAI Only)
text-embedding-3-smallgpt-4o-miniOPENAI_API_KEY onlyPlan D — 🖥️ Fully Local (Ollama, No API Keys)
mxbai-embed-large (1024-dim, recommended) or nomic-embed-text:v1.5 (768-dim, lighter) - qwen3:8b (recommended — best JSON output, native structured output, ~5.2GB) - qwen3:14b (better quality, ~9GB, needs 16GB VRAM) - llama4:scout (multimodal MoE, 10M ctx, ~12GB) - mistral-small3.2 (24B, 128K ctx, excellent instruction following, ~15GB) - mistral-nemo (12B, 128K ctx, efficient, ~7GB)
- Ollama installed: https://ollama.com/download - Models pulled (see Step 5 below) - Ollama running: macOS = launch the app from Applications; Linux = systemctl start ollama or ollama serve
"smartExtraction": false---
After user selects a plan, ask in one message:
openclaw.json? (Skip if you want me to find it automatically)If the user already stated their provider/keys in context, skip asking and proceed.
Do NOT proceed to Step 2 until API keys have been collected and verified (Step 2 below).
Run ALL key checks for the chosen plan before touching any config. If any check fails, STOP and tell the user which key failed and why. Do not proceed to Step 3.
Plan A / Plan B — Jina embedding check:
curl -s -o /dev/null -w "%{http_code}" \
https://api.jina.ai/v1/embeddings \
-H "Authorization: Bearer <JINA_API_KEY>" \
-H "Content-Type: application/json" \
-d '{"model":"jina-embeddings-v5-text-small","input":["test"]}'
Plan A / B / C — OpenAI check:
curl -s -o /dev/null -w "%{http_code}" \
https://api.openai.com/v1/models \
-H "Authorization: Bearer <OPENAI_API_KEY>"
Plan B — SiliconFlow reranker check:
curl -s -o /dev/null -w "%{http_code}" \
https://api.siliconflow.com/v1/rerank \
-H "Authorization: Bearer <SILICONFLOW_API_KEY>" \
-H "Content-Type: application/json" \
-d '{"model":"BAAI/bge-reranker-v2-m3","query":"test","documents":["test doc"]}'
Plan D — Ollama check:
curl -s -o /dev/null -w "%{http_code}" http://localhost:11434/api/tags
Interpret results:
| HTTP code | Meaning | Action | |-----------|---------|--------| | 200 / 201 | Key valid, quota available | ✅ Continue | | 401 / 403 | Invalid or expired key | ❌ STOP — ask user to check key | | 402 | Payment required / no credits | ❌ STOP — ask user to top up account | | 429 | Rate limited or quota exceeded | ❌ STOP — ask user to check billing/quota | | 000 / connection refused | Service unreachable | ❌ STOP — ask user to check network / Ollama running |
If any check fails: Tell the user exactly which provider failed, the HTTP code received, and what to fix. Do not proceed with installation until all required keys pass their checks.
If the user says keys are set as env vars in the gateway process, run checks using ${VAR_NAME} substituted inline or ask them to paste the key temporarily for verification.
Check these locations in order:
# Most common locations
ls ~/.openclaw/openclaw.json
ls ~/openclaw.json
# Ask the gateway where it's reading config from
openclaw config get --show-path 2>/dev/null || echo "not found"
If not found, ask the user for the path.
# Read and display current plugins config before changing anything
openclaw config get plugins.entries.memory-lancedb-pro 2>/dev/null
openclaw config get plugins.slots.memory 2>/dev/null
Check what already exists — never blindly overwrite existing settings.
Use the config block for the chosen plan. Substitute actual API keys inline if the user provided them directly; keep ${ENV_VAR} syntax if they confirmed env vars are set in the gateway process.
...
安装 memory-lancedb-pro 后,可以对 AI 说这些话来触发它
Help me get started with memory-lancedb-pro
Explains what memory-lancedb-pro does, walks through the setup, and runs a quick demo based on your current project
Use memory-lancedb-pro to this skill should be used when working with memory-lancedb-pro, a p...
Invokes memory-lancedb-pro with the right parameters and returns the result directly in the conversation
What can I do with memory-lancedb-pro in my documents & notes workflow?
Lists the top use cases for memory-lancedb-pro, with example commands for each scenario
将技能文件夹放到 ~/.claude/skills/memory-lancedb-pro/ 目录(个人级,所有项目可用),或 .claude/skills/memory-lancedb-pro/(项目级)。重启 AI 客户端后,用 /memory-lancedb-pro 主动调用,或让 AI 根据上下文自动发现并使用。
memory-lancedb-pro 支持 Claude、Cursor、OpenClaw,可与这些 AI 平台无缝集成,扩展其能力。
memory-lancedb-pro 可免费安装使用。请查阅仓库了解许可证信息。
This skill should be used when working with memory-lancedb-pro, a production-grade long-term memory MCP plugin for OpenClaw AI agents. Use when installing, c...
memory-lancedb-pro 属于「Documents & Notes」分类,该分类的技能帮助 AI 智能体在此领域执行专业任务。
Automate my documents & notes tasks using memory-lancedb-pro
Identifies repetitive steps in your workflow and sets up memory-lancedb-pro to handle them automatically