memos-memory-guide
Use the MemOS Lite memory system to search and use the user's past conversations. Use this skill whenever the user refers to past chats, their own preferences or history, or when you need to answer from prior context. When auto-recall returns nothing (long or unclear user query), generate your own short search query and call memory_search. Use task_summary when you need full task context, skill_get for experience guides, and memory_timeline to expand around a memory hit.
Install via CLI (Recommended)
clawhub install openclaw/skills/skills/andy27725/memos-memory-guide-backupMemOS Lite Memory — Agent Guide
This skill describes how to use the MemOS memory tools so you can reliably search and use the user's long-term conversation history.
How memory is provided each turn
- Automatic recall (hook): At the start of each turn, the system runs a memory search using the user's current message and injects relevant past memories into your context. You do not need to call any tool for that.
- When that is not enough: If the user's message is very long, vague, or the automatic search returns no memories, you should generate your own short, focused query and call
memory_searchyourself. For example:- User sent a long paragraph → extract 1–2 key topics or a short question and search with that.
- Auto-recall said "no memories" or you see no memory block → call
memory_searchwith a query you derive (e.g. the user's name, a topic they often mention, or a rephrased question).
- When you need more detail: Search results only give excerpts and IDs. Use the tools below to fetch full task context, skill content, or surrounding messages.
Tools — what they do and when to call
memory_search
- What it does: Searches the user's stored conversation memory by a natural-language query. Returns a list of relevant excerpts with
chunkIdand optionallytask_id. - When to call:
- The automatic recall did not run or returned nothing (e.g. no
<memory_context>block, or a note that no memories were found). - The user's query is long or unclear — generate a short query yourself (keywords, rephrased question, or a clear sub-question) and call
memory_search(query="..."). - You need to search with a different angle (e.g. filter by
role='user'to find what the user said, or use a more specific query).
- The automatic recall did not run or returned nothing (e.g. no
- Parameters:
query(required), optionalminScore,role(e.g."user"). - Output: List of items with role, excerpt,
chunkId, and sometimestask_id. Use those IDs with the tools below when you need more context.
task_summary
- What it does: Returns the full task summary for a given
task_id: title, status, and the complete narrative summary of that conversation task (steps, decisions, URLs, commands, etc.). - When to call: A
memory_searchhit included atask_idand you need the full story of that task (e.g. what was done, what the user decided, what failed or succeeded). - Parameters:
taskId(from a search hit). - Effect: You get one coherent summary of the whole task instead of isolated excerpts.
skill_get
Metadata
Not sure this is the right skill?
Describe what you want to build — we'll match you to the best skill from 16,000+ options.
Find the right skillPaste this into your clawhub.json to enable this plugin.
{
"plugins": {
"official-andy27725-memos-memory-guide-backup": {
"enabled": true,
"auto_update": true
}
}
}Related Skills
memos-memory-guide
Use the MemOS Lite memory system to search and use the user's past conversations. Use this skill whenever the user refers to past chats, their own preferences or history, or when you need to answer from prior context. When auto-recall returns nothing (long or unclear user query), generate your own short search query and call memory_search. Use task_summary when you need full task context, skill_get for experience guides, and memory_timeline to expand around a memory hit.
freeride
Manages free AI models from OpenRouter for OpenClaw. Automatically ranks models by quality, configures fallbacks for rate-limit handling, and updates openclaw.json. Use when the user mentions free AI, OpenRouter, model switching, rate limits, or wants to reduce AI costs.
sag
ElevenLabs text-to-speech with mac-style say UX.
openai-image-gen
Batch-generate images via OpenAI Images API. Random prompt sampler + `index.html` gallery.
sherpa-onnx-tts
Local text-to-speech via sherpa-onnx (offline, no cloud)