Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器clawhub未标认证来源可访问clear审计通过

memos-memory-guide备忘录记忆指南

Agent Skill

memos-memory-guide 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

130,086

周安装

5,475

GitHub Stars

公开资料未说明

下载量

45,552
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:memos-memory-guide(备忘录记忆指南)
来源仓库:https://github.com/binyuli/memos-memory-guide
安装命令:
openclaw skills install memos-memory-guide
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install memos-memory-guide

简介

memos-memory-guide 利用 MemOS 本地存储系统搜索用户历史对话与偏好。

  • 适用于回答“之前怎么做的?”或“记得我的喜好吗?”类问题。
  • 支持语义匹配与时间线排序,提高回复相关性。
  • 安装命令:openclaw skills install memos-memory-guide,需确认是否启用本地数据库读写。
  • 注意隐私保护,避免存储非必要个人信息。

SKILL.md

version
1.0.0
name
memos-memory-guide
description
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.

MemOS 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 memory_search yourself.
  • Memory isolation: Each agent can only see its own memories and memories marked as public. Other agents' private memories are invisible to you.

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 chunkId and optionally task_id. Only returns memories belonging to the current agent or marked as public.
  • 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:

- query (string, required) — Natural language search query. - maxResults (number, optional) — Max results, default 20, max 20. - minScore (number, optional) — Minimum score 0–1, default 0.45, floor 0.35. - role (string, optional) — Filter by role: 'user', 'assistant', or 'tool'. Use 'user' to find what the user said.

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 memory_search hit looks relevant but you need to see the complete original content, not just the summary/excerpt.
  • Parameters:

- chunkId (string, required) — The chunkId from a search hit. - maxChars (number, optional) — Max characters to return (default 4000, max 12000).

memory_write_public

  • What it does: Write a piece of information to public memory. Public memories are visible to all agents during memory_search. Use for shared knowledge, team decisions, or cross-agent coordination information.
  • 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:

- content (string, required) — The content to write to public memory. - summary (string, optional) — Short summary of the content.

task_summary

  • What it does: Get the detailed summary of a complete task: title, status, narrative summary, and related skills. Use when memory_search returns a hit with a task_id and you need the full story. Preserves critical information: URLs, file paths, commands, error codes, step-by-step instructions.
  • When to call: A memory_search hit included a task_id and you need the full context of that task.
  • Parameters:

- taskId (string, required) — The task_id from a memory_search hit.

skill_get

  • What it does: Retrieve a proven skill (experience guide) by skillId or by taskId. If you pass a taskId, the system will find the associated skill automatically.
  • When to call: A search hit has a task_id and the task has a "how to do this again" guide. Use this to follow the same approach or reuse steps.
  • Parameters:

- skillId (string, optional) — Direct skill ID. - taskId (string, optional) — Task ID — will look up the skill linked to this task. - At least one of skillId or taskId must be provided.

skill_search

  • What it does: Search available skills by natural language. Searches your own skills, public skills, or both — controlled by the scope parameter.
  • When to call: The current task requires a capability or guide you don't have. Use skill_search to find one first; after finding it, use skill_get to read it, then skill_install to load it for future turns.
  • Parameters:

- query (string, required) — Natural language description of the needed skill. - scope (string, optional) — Search scope: 'mix' (default, self + public), 'self' (own only), 'public' (public only).

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 skill_get when the skill is useful for ongoing use.
  • Parameters:

- skillId (string, required) — The skill ID to install.

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:

- skillId (string, required) — The skill ID to publish.

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:

- skillId (string, required) — The skill ID to unpublish.

memory_timeline

  • What it does: Expand context around a memory search hit. Pass the chunkId from a search result to read the surrounding conversation messages.
  • When to call: A memory_search hit is relevant but you need the surrounding dialogue.
  • Parameters:

- chunkId (string, required) — The chunkId from a memory_search hit. - window (number, optional) — Context window ±N messages, default 2.

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

  1. No memories in context or auto-recall reported nothing

→ Call memory_search(query="...") with a self-generated short query.

  1. Need to see the full original text of a search hit

→ Call memory_get(chunkId="...").

  1. Search returned hits with task_id and you need full context

→ Call task_summary(taskId="...").

  1. Task has an experience guide you want to follow

→ Call skill_get(taskId="...") or skill_get(skillId="..."). Optionally skill_install(skillId="...") for future use.

  1. You need the exact surrounding conversation of a hit

→ Call memory_timeline(chunkId="...").

  1. You need a capability/guide that you don't have

→ Call skill_search(query="...", scope="mix") to discover available skills.

  1. You have shared knowledge useful to all agents

→ Call memory_write_public(content="...") to persist it in public memory.

  1. You want to share/stop sharing a skill with other agents

→ Call skill_publish(skillId="...") or skill_unpublish(skillId="...").

  1. 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.
  • 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.

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, memory_timeline) automatically scope queries to your agent's own memories.
  • Public memories: Memories marked as public are visible to all agents. Use memory_write_public to write shared knowledge.
  • 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.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

70.37%
按下载量换算32,055

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills