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

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

Agent Skill

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

总安装

4,398

周安装

187

GitHub Stars

8,817

下载量

1,541
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/memtensor/memos --skill memos-memory-guide

简介

memos-memory-guide 提供内存共享与任务摘要管理功能。

  • 适用于团队协作中同步代理间记忆或向中心枢纽共享知识片段。
  • 支持按块 ID 检索、选择性共享及可见性分级控制。memos-memory-guide 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 涉及团队共享时必须获得用户明确同意,禁止静默上传。
  • 安装需配置集线器地址,并验证网络连通性与身份认证机制。

SKILL.md

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, query team-shared data, share tasks, and discover or pull reusable skills.

Two sharing planes exist and must not be confused:

  • Local agent sharing: visible to agents in the same OpenClaw workspace only.
  • Team sharing: visible to teammates through the configured team server.

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 local private memories and local public memories. Team-shared data only appears when you search with scope="group" or scope="all".

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. - scope (string, optional) — 'local' (default) for current agent + local shared memories, or 'group' / 'all' to include team-shared memories. - maxResults (number, optional) — Increase when the first search is too narrow. - minScore (number, optional) — Lower slightly if recall is too strict. - role (string, optional) — Filter local results by 'user', 'assistant', 'tool', or 'system'.

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: Create a brand new local shared memory. These memories are visible to all agents in the same OpenClaw workspace during memory_search. This does not publish anything to the team server.
  • When to call: In multi-agent or collaborative scenarios, when you want to create a new persistent shared note from scratch (e.g. shared decisions, conventions, configurations, workflows). Do not use it if you already have a specific memory chunk to expose.
  • Parameters:

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

memory_share

  • What it does: Share an existing memory either with local OpenClaw agents, to the team, or to both.
  • When to call:

- If you want to share conversation content to team or hub, first retrieve memories related to that content to obtain the right chunkId(s), then share. - target='agents' (default): When those memories would clearly help other agents in the same workspace, you may share proactively without asking the user. - target='hub' or 'both': Only after explicit user consent when the content would benefit collaborators—explain briefly, ask first, then call hub/both (Hub must be configured). Never silently Hub-share.

  • Do not use when: You are creating a brand-new shared note with no existing chunk—use memory_write_public instead.
  • Parameters:

- chunkId (string, required) — Existing memory chunk ID. - target (string, optional) — 'agents' (default), 'hub', or 'both'. - visibility (string, optional) — Team visibility when target includes team: 'public' (default) or 'group'. - groupId (string, optional) — Optional team group ID when visibility='group'.

memory_unshare

  • What it does: Remove an existing memory from local agent sharing, team sharing, or both.
  • When to call: A memory should no longer be visible outside the current agent or should be removed from the team.
  • Parameters:

- chunkId (string, required) — Existing memory chunk ID. - target (string, optional) — 'agents', 'hub', or 'all' (default). - privateOwner (string, optional) — Rare fallback only for older public memories that have no recorded original owner.

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, local shared skills, or both. It can also include team skills.
  • 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) — 'mix' (default, self + local shared), 'self', 'public' (local shared only), or 'group' / 'all' to include team results.

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: Share a skill with local agents, or publish it to the team.
  • When to call: You have a useful skill that other agents or your team could benefit from.
  • Parameters:

- skillId (string, required) — The skill ID to publish. - target (string, optional) — 'agents' (default) or 'hub'. - visibility (string, optional) — When target='hub', use 'public' (default) or 'group'. - groupId (string, optional) — Optional team group ID when target='hub' and visibility='group'. - scope (string, optional) — Backward-compatible alias for old calls. Prefer target + visibility in new calls.

skill_unpublish

  • What it does: Stop local agent sharing, remove a team-published copy, or do both.
  • When to call: You want to stop sharing a previously published skill.
  • Parameters:

- skillId (string, required) — The skill ID to unpublish. - target (string, optional) — 'agents' (default), 'hub', or 'all'.

network_memory_detail

  • What it does: Fetches the full content behind a team search hit.
  • When to call: A memory_search result came from the team and you need the full shared memory content.
  • Parameters: remoteHitId.

task_share / task_unshare

  • What they do: Share a local task to the team, or remove it later.
  • When to call: A task is valuable to your group or to the whole team and should be discoverable via shared search.
  • Parameters: taskId, plus sharing visibility/scope when required.

network_skill_pull

  • What it does: Pulls a team-shared skill bundle down into local storage.
  • When to call: skill_search found a useful team skill and you want to use it locally or offline.
  • Parameters: skillId.

network_team_info

  • What it does: Returns current team server connection information, user, role, and groups.
  • When to call: You need to confirm whether team sharing is configured or which groups the current client belongs to.
  • Call this first before: memory_share(... target='hub'|'both'), memory_unshare(... target='hub'|'all'), task_share, task_unshare, skill_publish(... target='hub'), skill_unpublish(... target='hub'|'all'), or network_skill_pull.
  • Parameters: none.

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.
  2. Need to see the full original text of a search hit → Call memory_get(chunkId="...").
  3. Search returned hits with task_id and you need full context → Call task_summary(taskId="...").
  4. Task has an experience guide you want to follow → Call skill_get(taskId="...") or skill_get(skillId="..."). Optionally skill_install(skillId="...") for future use.
  5. You need the exact surrounding conversation of a hit → Call memory_timeline(chunkId="...").
  6. You need a capability/guide that you don't have → Call skill_search(query="...", scope="mix") to discover available skills.
  7. You have new shared knowledge useful to all local agents → Call memory_write_public(content="...").
  8. You already have an existing memory chunk and want to expose or hide it → Call memory_share(chunkId="...", target="agents|hub|both") or memory_unshare(chunkId="...", target="agents|hub|all").
  9. You are about to do anything team-sharing-related → Call network_team_info() first if team server availability is uncertain.
  10. You want to share/stop sharing a skill with local agents or team → Prefer skill_publish(skillId="...", target="agents|hub", visibility=...) and skill_unpublish(skillId="...", target="agents|hub|all").
  11. 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.
  • Local shared memories: Memories marked as local shared are visible to all agents in the same OpenClaw workspace. Use memory_write_public to create them, or memory_share(target='agents') to expose an existing chunk.
  • 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

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.15%
按下载量换算557

Claude

29.03%
按下载量换算447

Cursor

21.48%
按下载量换算331

Gemini CLI

9.96%
按下载量换算153

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

操作浏览器

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

安装前确认

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

来源信息

继续浏览同类 Skills