SeekDB Memory
by @frf12
Cloud-native persistent memory for OpenClaw agents. Auto-captures facts after conversations, auto-recalls relevant context before each reply. Hybrid search (...
If the m0 plugin is not yet installed, run the setup skill:
/openclaw-m0-setup
Or install manually:
openclaw add m0
Then configure in ~/.openclaw/openclaw.json:
{
"plugins": {
"entries": {
"m0": {
"enabled": true,
"config": {
"apiKey": "ak_your_key_here",
"baseUrl": "https://your-endpoint",
"autoCapture": true,
"autoRecall": true,
"recallLimit": 10
}
}
}
}
}
1. Don't over-store: Auto-capture handles routine facts. Only use memory_store for high-importance items the user explicitly wants remembered.
2. Use metadata: Add category (preference, decision, fact, deadline) and importance (0.0-1.0) to help with retrieval.
3. Trust auto-recall: Don't call memory_recall at the start of every conversation β the plugin already injects relevant context automatically.
4. Respect forget requests: When a user says "forget X", use memory_forget immediately.
clawhub install seekdb-memory