Skills memos-memory-guide
Use the MemOS Local 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. Available tools: memory_search, memory_get, memory_write_public, task_summary, skill_get, skill_search, skill_install, skill_publish, skill_unpublish, memory_timeline, memory_viewer.
git clone https://github.com/openclaw/skills
T=$(mktemp -d) && git clone --depth=1 https://github.com/openclaw/skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/binyuli/memos-memory-guide" ~/.claude/skills/clawdbot-skills-memos-memory-guide-3c86b7 && rm -rf "$T"
skills/binyuli/memos-memory-guide/SKILL.mdMemOS Local 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, share knowledge across agents, and discover public skills.
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
yourself.memory_search - Memory isolation: Each agent can only see its own memories and memories marked as
. Other agents' private memories are invisible to you.public
Tools — what they do and when to call
memory_search
- What it does: Search long-term conversation memory for past conversations, user preferences, decisions, and experiences. Returns relevant excerpts with
and optionallychunkId
. Only returns memories belonging to the current agent or marked as public.task_id - When to call:
- The automatic recall did not run or returned nothing.
- The user's query is long or unclear — generate a short query yourself and call
.memory_search(query="...") - You need to search with a different angle (e.g. filter by
).role='user'
- Parameters:
(string, required) — Natural language search query.query
(number, optional) — Max results, default 20, max 20.maxResults
(number, optional) — Minimum score 0–1, default 0.45, floor 0.35.minScore
(string, optional) — Filter by role:role
,'user'
, or'assistant'
. Use'tool'
to find what the user said.'user'
memory_get
- What it does: Get the full original text of a memory chunk. Use to verify exact details from a search hit.
- When to call: A
hit looks relevant but you need to see the complete original content, not just the summary/excerpt.memory_search - Parameters:
(string, required) — The chunkId from a search hit.chunkId
(number, optional) — Max characters to return (default 4000, max 12000).maxChars
memory_write_public
- What it does: Write a piece of information to public memory. Public memories are visible to all agents during
. Use for shared knowledge, team decisions, or cross-agent coordination information.memory_search - When to call: In multi-agent or collaborative scenarios, when you have persistent information useful to everyone (e.g. shared decisions, conventions, configurations, workflows). Do not write session-only or purely private content.
- Parameters:
(string, required) — The content to write to public memory.content
(string, optional) — Short summary of the content.summary
task_summary
- What it does: Get the detailed summary of a complete task: title, status, narrative summary, and related skills. Use when
returns a hit with amemory_search
and you need the full story. Preserves critical information: URLs, file paths, commands, error codes, step-by-step instructions.task_id - When to call: A
hit included amemory_search
and you need the full context of that task.task_id - Parameters:
(string, required) — The task_id from a memory_search hit.taskId
skill_get
- What it does: Retrieve a proven skill (experience guide) by
or byskillId
. If you pass ataskId
, the system will find the associated skill automatically.taskId - When to call: A search hit has a
and the task has a "how to do this again" guide. Use this to follow the same approach or reuse steps.task_id - Parameters:
(string, optional) — Direct skill ID.skillId
(string, optional) — Task ID — will look up the skill linked to this task.taskId- At least one of
orskillId
must be provided.taskId
skill_search
- What it does: Search available skills by natural language. Searches your own skills, public skills, or both — controlled by the
parameter.scope - When to call: The current task requires a capability or guide you don't have. Use
to find one first; after finding it, useskill_search
to read it, thenskill_get
to load it for future turns.skill_install - Parameters:
(string, required) — Natural language description of the needed skill.query
(string, optional) — Search scope:scope
(default, self + public),'mix'
(own only),'self'
(public only).'public'
skill_install
- What it does: Install a learned skill into the agent workspace so it becomes permanently available. After installation, the skill will be loaded automatically in future sessions.
- When to call: After
when the skill is useful for ongoing use.skill_get - Parameters:
(string, required) — The skill ID to install.skillId
skill_publish
- What it does: Make a skill public so other agents can discover and install it via
.skill_search - When to call: You have a useful skill that other agents could benefit from, and you want to share it.
- Parameters:
(string, required) — The skill ID to publish.skillId
skill_unpublish
- What it does: Make a skill private again. Other agents will no longer be able to discover it.
- When to call: You want to stop sharing a previously published skill.
- Parameters:
(string, required) — The skill ID to unpublish.skillId
memory_timeline
- What it does: Expand context around a memory search hit. Pass the
from a search result to read the surrounding conversation messages.chunkId - When to call: A
hit is relevant but you need the surrounding dialogue.memory_search - Parameters:
(string, required) — The chunkId from a memory_search hit.chunkId
(number, optional) — Context window ±N messages, default 2.window
memory_viewer
- What it does: Show the MemOS Memory Viewer URL. Call this when the user asks how to view, browse, manage, or check their memories. Returns the URL the user can open in their browser.
- When to call: The user asks where to see or manage their memories.
- Parameters: None.
Quick decision flow
-
No memories in context or auto-recall reported nothing → Call
with a self-generated short query.memory_search(query="...") -
Need to see the full original text of a search hit → Call
.memory_get(chunkId="...") -
Search returned hits with
and you need full context → Calltask_id
.task_summary(taskId="...") -
Task has an experience guide you want to follow → Call
orskill_get(taskId="...")
. Optionallyskill_get(skillId="...")
for future use.skill_install(skillId="...") -
You need the exact surrounding conversation of a hit → Call
.memory_timeline(chunkId="...") -
You need a capability/guide that you don't have → Call
to discover available skills.skill_search(query="...", scope="mix") -
You have shared knowledge useful to all agents → Call
to persist it in public memory.memory_write_public(content="...") -
You want to share/stop sharing a skill with other agents → Call
orskill_publish(skillId="...")
.skill_unpublish(skillId="...") -
User asks where to see or manage their memories → Call
and share the URL.memory_viewer()
Writing good search queries
- Prefer short, focused queries (a few words or one clear question).
- Use concrete terms: names, topics, tools, or decisions.
- If the user's message is long, derive one or two sub-queries rather than pasting the whole message.
- Use
when you specifically want to find what the user said.role='user'
Memory ownership and agent isolation
Each memory is tagged with an
owner (e.g. agent:main, agent:sales-bot). This is handled automatically — you do not need to pass any owner parameter.
- Your memories: All tools (
,memory_search
,memory_get
) automatically scope queries to your agent's own memories.memory_timeline - Public memories: Memories marked as
are visible to all agents. Usepublic
to write shared knowledge.memory_write_public - Cross-agent isolation: You cannot see memories owned by other agents (unless they are public).
- How it works: The system identifies your agent ID from the OpenClaw runtime context and applies owner filtering automatically on every search, recall, and retrieval.