Loading...
Loading...
Enable and configure Moltbot/Clawdbot memory search for persistent context. Use when setting up memory, fixing "goldfish brain," or helping users configure memorySearch in their config. Covers MEMORY.md, daily logs, and vector search setup.
npx skill4agent add sundial-org/awesome-openclaw-skills memory-setup~/.clawdbot/clawdbot.jsonmoltbot.json{
"memorySearch": {
"enabled": true,
"provider": "voyage",
"sources": ["memory", "sessions"],
"indexMode": "hot",
"minScore": 0.3,
"maxResults": 20
}
}workspace/
├── MEMORY.md # Long-term curated memory
└── memory/
├── logs/ # Daily logs (YYYY-MM-DD.md)
├── projects/ # Project-specific context
├── groups/ # Group chat context
└── system/ # Preferences, setup notesMEMORY.md# MEMORY.md — Long-Term Memory
## About [User Name]
- Key facts, preferences, context
## Active Projects
- Project summaries and status
## Decisions & Lessons
- Important choices made
- Lessons learned
## Preferences
- Communication style
- Tools and workflows| Setting | Purpose | Recommended |
|---|---|---|
| Turn on memory search | |
| Embedding provider | |
| What to index | |
| When to index | |
| Relevance threshold | |
| Max snippets returned | |
voyageopenailocalmemorysessionsbothmemory/logs/YYYY-MM-DD.md# YYYY-MM-DD — Daily Log
## [Time] — [Event/Task]
- What happened
- Decisions made
- Follow-ups needed
## [Time] — [Another Event]
- Details## Memory Recall
Before answering questions about prior work, decisions, dates, people, preferences, or todos:
1. Run memory_search with relevant query
2. Use memory_get to pull specific lines if needed
3. If low confidence after search, say you checkedmemorySearch.enabled: trueclawdbot gateway restartminScore0.2maxResults30VOYAGE_API_KEYOPENAI_API_KEYlocalUser: "What do you remember about [past topic]?"
Agent: [Should search memory and return relevant context]{
"memorySearch": {
"enabled": true,
"provider": "voyage",
"sources": ["memory", "sessions"],
"indexMode": "hot",
"minScore": 0.3,
"maxResults": 20
},
"workspace": "/path/to/your/workspace"
}