Recall Skill (Cortical Stack)
Search the long-term memory stored in the local Qdrant instance. This skill uses the nomic-embed-text model via Ollama to perform semantic searches against the openclaw_memory collection.
Quick Start
Run the recall script with your search query:
bash
./skills/recall/scripts/recall.sh "your search query"
When to Use
- •When asked "What do you remember about X?"
- •To verify architectural decisions made in previous sessions.
- •To retrieve snippets of articles or thoughts that were indexed by the Cortex.
- •When
memory_search(Markdown-only) doesn't return enough depth.
Implementation Details
The skill executes a two-step process:
- •Embedding: Generates a vector for the query using
nomic-embed-textvia the local Ollama API. - •Vector Search: Queries the local Qdrant database for the top 5 most semantically similar points with a score threshold.
Troubleshooting
- •Ollama Error: Ensure the Ollama service is running on port 11434 and the
nomic-embed-textmodel is installed. - •Qdrant Error: Ensure the Qdrant container/service is running on port 6333.