← Back to Skills Marketplace
andy27725

Memos Memory Guide Andy27725

by Andy27725 · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ✓ Security Clean
126
Downloads
0
Stars
1
Active Installs
1
Versions
Install in OpenClaw
/install memos-memory-guide-andy27725
Description
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 preference...
README (SKILL.md)

MemOS 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_search yourself. 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_search with 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 chunkId and optionally task_id.
  • When to call:
    • The automatic recall did not run or returned nothing (e.g. no \x3Cmemory_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).
  • Parameters: query (required), optional minScore, role (e.g. "user").
  • Output: List of items with role, excerpt, chunkId, and sometimes task_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_search hit included a task_id and 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

  • What it does: Returns the content of a learned skill (experience guide) by skillId or by taskId. If you pass taskId, the system finds the skill linked to that task.
  • When to call: A search hit has a task_id and the task is the kind that has a "how to do this again" guide (e.g. a workflow the user has run before). Use this to follow the same approach or reuse steps.
  • Parameters: skillId (direct) or taskId (lookup).
  • Effect: You receive the full SKILL.md-style guide. You can then call skill_install(skillId) if the user or you want that skill loaded for future turns.

skill_install

  • What it does: Installs a skill (by skillId) into the workspace so it is loaded in future sessions.
  • When to call: After skill_get when the skill is useful for ongoing use (e.g. the user's recurring workflow). Optional; only when you want the skill to be permanently available.
  • Parameters: skillId.

memory_timeline

  • What it does: Expands context around a single memory chunk: returns the surrounding conversation messages (±N turns) so you see what was said before and after that excerpt.
  • When to call: A memory_search hit is relevant but you need the surrounding dialogue (e.g. who said what next, or the exact follow-up question).
  • Parameters: chunkId (from a search hit), optional window (default 2).
  • Effect: You get a short, linear slice of the conversation around that chunk.

memory_viewer

  • What it does: Returns the URL of the MemOS Memory Viewer (web UI) where the user can browse, search, and manage their memories.
  • When to call: The user asks how to view their memories, open the memory dashboard, or manage stored data.
  • Parameters: None.
  • Effect: You can tell the user to open that URL in a browser.

Quick decision flow

  1. No memories in context or auto-recall reported nothing → Call memory_search with a self-generated short query (e.g. key topic or rephrased question).

  2. Search returned hits with task_id and you need full context → Call task_summary(taskId).

  3. Task has an experience guide you want to follow → Call skill_get(taskId=...) (or skill_get(skillId=...) if you have the id). Optionally skill_install(skillId) for future use.

  4. You need the exact surrounding conversation of a hit → Call memory_timeline(chunkId=...).

  5. User asks where to see or manage their memories → Call memory_viewer() and share the URL.

Writing good search queries

  • Prefer short, focused queries (a few words or one clear question).
  • Use concrete terms: names, topics, tools, or decisions (e.g. "preferred editor", "deploy script", "API key setup").
  • If the user's message is long, derive one or two sub-queries rather than pasting the whole message.
  • Use role='user' when you specifically want to find what the user said (e.g. preferences, past questions).
Usage Guidance
This skill is a plain-language guide for using the MemOS Lite memory tools and appears internally consistent. Before installing or enabling it, consider: (1) memories can contain sensitive data — the guide encourages generating search queries, which could surface secrets stored in your memories, so review and redact sensitive memory entries if you care about exposure; (2) the skill is instruction-only and has no code, so it cannot download or run external binaries, but an agent allowed to install skills could call skill_install to add other skills — ensure you trust the agent's install policy; (3) the skill metadata lacks a homepage and shows an owner mismatch (registry owner id vs _meta.json owner), so if provenance matters to you, ask the publisher for clarification. If you are privacy-conscious, inspect your MemOS memory viewer and restrict or redact any secret data before allowing memory searches or enabling this guide.
Capability Analysis
Type: OpenClaw Skill Name: memos-memory-guide-andy27725 Version: 1.0.0 The skill bundle provides a legitimate guide and tool definitions for an AI agent to interact with the MemOS Lite memory system. The instructions in SKILL.md focus on searching conversation history, retrieving task summaries, and managing learned skills, all of which align with the stated purpose of providing long-term memory context without any signs of malicious intent or data exfiltration.
Capability Assessment
Purpose & Capability
Name and description match the SKILL.md instructions: the skill is purely a usage guide for MemOS Lite memory tools. It does not request unrelated binaries, environment variables, or config paths. (Note: the package metadata lacks a homepage and the _meta.json owner field ('binyuli') differs from the registry owner id given in the registry metadata — this is a metadata inconsistency but does not change functional behavior.)
Instruction Scope
Instructions are narrowly scoped to calling memory-related tools (memory_search, task_summary, skill_get, memory_timeline, memory_viewer). However, the guide explicitly tells the agent to generate short search queries when automatic recall returns nothing; that behavior can surface sensitive items stored in the user's memories (API keys, passwords, etc.) if such items exist. This is an expected property of a memory-search guide, but worth noting for privacy-sensitive contexts.
Install Mechanism
No install spec and no code files are included (instruction-only), so nothing is written to disk or fetched at install time. This is low-risk from an installation/execution perspective.
Credentials
The skill requires no environment variables, credentials, or config paths. There are no disproportionate secret requests.
Persistence & Privilege
always:false (default) and the skill does not request permanent presence or modify other skills. It documents a skill_install tool the agent can call to install other skills, which is expected behavior but means an agent with install permissions could add skills if allowed by the platform.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install memos-memory-guide-andy27725
  3. After installation, invoke the skill by name or use /memos-memory-guide-andy27725
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.0
Changelog for memos-memory-guide-andy27725 v1.0.0 - Initial release of the memos-memory-guide skill. - Provides a detailed guide for using MemOS Lite's memory system to search and leverage past user conversations. - Documents tool functions (memory_search, task_summary, skill_get, skill_install, memory_timeline, memory_viewer) with clear usage instructions. - Includes quick decision flows and guidelines for generating effective memory search queries. - Supports workflows for recalling prior user preferences, conversation history, and task summaries.
Metadata
Slug memos-memory-guide-andy27725
Version 1.0.0
License MIT-0
All-time Installs 1
Active Installs 1
Total Versions 1
Frequently Asked Questions

What is Memos Memory Guide Andy27725?

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 preference... It is an AI Agent Skill for Claude Code / OpenClaw, with 126 downloads so far.

How do I install Memos Memory Guide Andy27725?

Run "/install memos-memory-guide-andy27725" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is Memos Memory Guide Andy27725 free?

Yes, Memos Memory Guide Andy27725 is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does Memos Memory Guide Andy27725 support?

Memos Memory Guide Andy27725 is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created Memos Memory Guide Andy27725?

It is built and maintained by Andy27725 (@andy27725); the current version is v1.0.0.

💬 Comments