Hybrid RAG for Local Agent Memory with OpenClaw, Ollama, and nomic-embed-text

Problem: Retrieval, Not Storage
The developer had months of daily memory logs stored in markdown files, which worked for saving information but not for finding it again. When the agent needed past context, it would fall back to running ls, opening files one by one, spending tokens, and sometimes missing relevant information. The issue was retrieval by meaning, not storage.
Solution: Hybrid RAG with Local Embeddings
The developer enabled memorySearch in OpenClaw using Ollama as the provider and nomic-embed-text for local embeddings, running in hybrid mode. Hybrid means 70% vector similarity (cosine via nomic-embed-text) combined with 30% BM25 keyword matching. Vector handles semantic proximity while BM25 handles exact names, versions, and IDs. MMR reduces redundant results, and temporal decay gives more weight to recent logs. Everything runs locally without external APIs.
Configuration
"memorySearch": {
"provider": "ollama",
"query": {
"hybrid": {
"enabled": true,
"vectorWeight": 0.7,
"textWeight": 0.3,
"mmr": {
"enabled": true,
"lambda": 0.7
},
"temporalDecay": {
"enabled": true,
"halfLifeDays": 30
}
}
}
}Setup Instructions
- OpenClaw detects Ollama automatically at localhost:11434
- No need to specify baseUrl or model - it picks up nomic-embed-text if pulled
- Run
ollama pull nomic-embed-textfirst, then restart the gateway - Avoid setting
provider: "openai"and pointing baseUrl to Ollama - useprovider: "ollama"directly
Behavioral Change Required
Enabling the tool wasn't enough. Without explicit instructions to use memorySearch before reading files directly, the agent would skip it and take the slower, token-heavy route. The developer wrote a rule into both AGENTS.md and MEMORY.md in the workspace to make memory search part of the agent's normal workflow.
Before vs After Results
- Before: Browse folders, open files blindly, hope wording matches, waste tokens, miss context
- After: Run
memory_searchwith semantic query, retrieve ranked results with similarity scores, open best match, answer from actual past notes - Similarity scores for relevant results typically range 0.45 to 0.48 for nomic-embed-text on prose logs
Practical Notes
- nomic-embed-text has a 2048 token context limit by default, not 8192 - large files may get truncated at indexing
- Memory files in Spanish work well - nomic-embed-text handles Spanish without issues
- Retrieval quality depends on note quality - vague logs still cause semantic search struggles
Tech Stack
- OpenClaw (local, self-hosted)
- Ollama + nomic-embed-text:latest
- SQLite with sqlite-vec and FTS5 (created automatically by OpenClaw on first use)
- Mac mini M4, 16GB unified memory
📖 Read the full source: r/openclaw
👀 See Also

OpenClaw User Reports Workflow with Minimax 2.7 for Markdown Editing
A user describes using Minimax 2.7 via Openrouter as a lower-cost alternative to Claude Cowork for Markdown research and writing, integrating it with OpenClaw, Telegram voice notes, Obsidian, and Syncthing for a semi-live editing workflow.

Custom OpenClaw Skills for CRM and CMS Integration
A developer built custom OpenClaw skills to interface with their own CRM and CMS systems, enabling automated lead generation and content drafting with human oversight. The setup took one day to implement.

Developer Builds Couples Therapy App with Claude, Shares Prompt Engineering Insights
A developer built TherapAI, a couples emotional wellness PWA where partners each get a private AI companion powered by Claude Sonnet. The developer shares five specific prompt engineering techniques that made Claude feel more human and less like a chatbot.

Building a Voice Interface for OpenClaw Agents Using iPhone Shortcuts
A developer created a voice-controlled interface for OpenClaw agents by building a Python server endpoint and integrating it with an iPhone Shortcut that handles speech-to-text and text-to-speech locally on the device.