Token导航 LogoToken导航TokenDH.com
研究检索需要联网unknown未标认证来源可访问许可证需确认审计通过

openclaw-memOpenClaw MEM 搜索

Agent Skill

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

总安装

504

周安装

21

下载量

168
Local Agent

安装说明

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

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:openclaw-mem(OpenClaw MEM 搜索)
来源仓库:https://skills.volces.com
仓库路径:openclaw-mem
安装命令:
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。当前暂无明确安装命令,请以来源页面说明为准。

简介

用于查找、检索和筛选内存或缓存相关的性能数据。

  • 适合在 Local Agent 中根据关键词或运维场景快速定位候选结果。
  • 可辅助监控系统资源、识别瓶颈或生成优化建议。
  • 安装前需确认权限范围与维护状态,注意是否会触发系统调用或日志整理。
  • 建议结合来源仓库与原始 README 进一步验证指标整理方式与可视化支持。

SKILL.md

OpenClaw Memory Curator

A session-first memory system for OpenClaw.

It exists for one reason: important knowledge must survive session compaction without bloating the context window.


TL;DR (for humans)

  • Session memory = temporary (RAM)
  • Disk = source of truth
  • Decisions & preferences → MEMORY.md
  • Daily work → memory/YYYY-MM-DD.md
  • This skill saves durable knowledge before compaction
  • Retrieval always happens via memory_searchmemory_get

If something matters later, write it to disk.


⚠️ CRITICAL REQUIREMENT Session memory indexing must be enabled.

Enable Session Memory

CLI

clawdbot config set agents.defaults.memorySearch.experimental.sessionMemory true

JSON

{
  "agents": {
    "defaults": {
      "memorySearch": {
        "experimental": { "sessionMemory": true },
        "sources": ["memory", "sessions"]
      }
    }
  }
}

Mental Model (read this once)

OpenClaw memory has three layers. Confusion usually comes from mixing them up.

1. Session Memory (RAM)

  • Lives in the current conversation
  • Automatically compacted
  • Indexed for retrieval
  • Never reliable long-term

👉 Treat as short-term thinking space.


2. Daily Logs (memory/YYYY-MM-DD.md)

  • Append-only
  • What happened today
  • Commands, edits, short-lived issues

👉 Treat as a work log, not a knowledge base.


3. Long-Term Memory (MEMORY.md)

  • Curated
  • Small
  • High-signal only
  • Indexed and retrievable

👉 Treat as facts the agent must not forget.


When to Write Memory (simple rules)

Write to MEMORY.md if it would still be true next week.

Examples:

  • Decisions
  • Preferences
  • Invariants
  • Policies

Write to daily logs if it helps understand today.

Examples:

  • Refactors
  • Experiments
  • Temporary blockers

If unsure: write to daily log first, promote later.


Pre-Compaction Flush (why this exists)

Before OpenClaw compacts the session, it triggers a silent reminder.

This skill uses that moment as a Save Game checkpoint.

What happens:

  1. Durable knowledge is extracted
  2. Daily notes are written to today’s log
  3. Durable items are promoted to MEMORY.md
  4. Agent replies NO_REPLY (user never sees this)

This prevents knowledge loss without interrupting you.


Durable Memory Format (MEMORY.md)

Use IDs and tags so search works reliably.

## DEC-2026-02-04-01
type: decision
area: memory

Decision:
Session memory is retrieval-only. Disk is the source of truth.

Reason:
Session compaction is lossy. Disk memory is stable.

ID prefixes

  • DEC – Decisions
  • PREF – Preferences
  • FACT – Durable facts
  • POLICY – Rules / invariants

Retrieval Strategy (how agents should recall)

  1. Use memory_search (max ~6 results)
  2. Pick the best 1–2 hits
  3. Use memory_get with line ranges
  4. Inject the minimum text required

This keeps context small and precise.


Agent Playbook (rules for agents)

  • Prefer disk over RAM
  • Prefer MEMORY.md over daily logs for facts
  • Use search before asking the user again
  • Never copy raw chat into memory
  • Write memory explicitly, do not assume it sticks

Anti-Patterns (do not do these)

  • ❌ Copy chat transcripts into memory
  • ❌ Store secrets or credentials
  • ❌ Treat daily logs as long-term memory
  • ❌ Overwrite memory files instead of appending
  • ❌ Store speculation as fact

Privacy Rules

  • Never store secrets (API keys, tokens, passwords)
  • Ignore anything inside <private>...</private>
  • If sensitive info exists: store only that it exists, not the value

Retention & Cleanup

Default: no deletion

  • Disk is cheap
  • Recall quality is expensive

Optional:

  • Move old daily logs to memory/archive/YYYY-MM/
  • Only prune after durable knowledge is verified

Usage (human-friendly)

Examples that work well:

  • “Store this as a durable decision.”
  • “This is a preference, remember it.”
  • “Write this to today’s log.”

Design Philosophy

  • Disk is truth
  • RAM is convenience
  • Retrieval beats retention
  • Fewer tokens > more tokens
  • Memory should earn its place

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Local Agent

98.17%
按下载量换算165

安全审计

Socket

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills