Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计提醒

openclaw-memOpenClaw MEM 搜索

Agent Skill

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

总安装

292,981

周安装

11,852

GitHub Stars

21

下载量

91,972
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install openclaw-mem

简介

openclaw-mem 用于管理和优化 OpenClaw 内存系统。

  • 适合内存文件整理、压缩和生存周期管理任务。
  • 支持每日日志归档、内存搜索调优和冗余清理。
  • 安装命令为 openclaw skills install openclaw-mem,需读写内存目录权限。
  • 注意备份关键记忆内容,防止误删造成信息丢失。

SKILL.md

name
openclaw-mem
description
>

OpenClaw Memory — Setup, Optimization & Troubleshooting

Core Principle

OpenClaw memory is plain Markdown on disk. The files are the single source of truth. The model only "remembers" what gets written to disk — nothing stays in RAM between sessions. Memory search tools are provided by the active memory plugin (default: memory-core).


1. Memory Architecture (Two Layers)

Layer 1: Daily Logs — memory/YYYY-MM-DD.md

  • Append-only session notes, running context, events of the day.
  • OpenClaw reads today + yesterday at session start.
  • If someone says "remember this" → write it here immediately.
  • These accumulate over time; old logs are searchable via memory_search.

Layer 2: Long-Term Memory — MEMORY.md

  • Curated durable facts: decisions, preferences, iron-law rules, project context.
  • Loaded at session start in private/main sessions only (never in group contexts).
  • If both MEMORY.md and memory.md exist, only MEMORY.md is loaded.
  • Keep it short — anything not needed every session belongs in daily logs.
  • Files over ~20,000 characters get truncated (bootstrapMaxChars).
  • Combined bootstrap cap: ~150,000 characters across all workspace files.

Workspace Layout

~/.openclaw/workspace/
├── MEMORY.md              # Long-term curated memory (main session only)
├── memory/
│   ├── 2026-03-17.md      # Today's daily log
│   ├── 2026-03-16.md      # Yesterday's log (also auto-loaded)
│   └── ...                # Older logs (searchable, not auto-loaded)
├── AGENTS.md              # Operating manual, boot sequence
├── SOUL.md                # Persona, tone, values
├── USER.md                # Human profile
└── TOOLS.md               # Environment-specific config

What Goes Where

Content TypeDestinationWhy
Durable decisions & preferencesMEMORY.mdLoaded every session
Iron-law rules the agent must always followMEMORY.mdSurvives compaction
Today's work notes, events, contextmemory/YYYY-MM-DD.mdAppend-only log
One-time instructionsChat (or daily log)Ephemeral by design
Behavioral rulesAGENTS.md or SOUL.mdAlways in context

2. Memory Tools

OpenClaw exposes two agent-facing tools:

memory_search — Semantic Recall

  • Searches across all indexed memory files (MEMORY.md + daily logs).
  • Returns snippet text (~700 chars max), file path, line range, score.
  • Uses hybrid search: vector similarity + BM25 keyword matching.
  • Vector finds paraphrases ("deployment process" matches "how we ship code").
  • BM25 finds exact tokens (IDs, env vars, error strings, code symbols).
  • Results are ranked by weighted fusion: finalScore = vectorWeight × vectorScore + textWeight × textScore.

memory_get — Targeted File Read

  • Reads a specific memory file by path + optional line range.
  • Degrades gracefully if file doesn't exist (returns empty text, no error).
  • Use when you know exactly which file has the information.

Best Practice: Make Retrieval Mandatory

Add this rule to AGENTS.md:

## Memory Protocol
- ALWAYS run memory_search before acting on tasks that reference past context.
- Do NOT guess from conversation history alone — check your notes.

Without this, the agent guesses instead of checking its memory files.


3. Compaction & Memory Flush

The Problem

Long conversations fill the context window. When it hits the threshold, OpenClaw compacts (summarizes/truncates) older messages. Anything only in the conversation — including instructions typed in chat — can vanish.

The Safety Net: Automatic Memory Flush

Before compaction fires, OpenClaw triggers a silent agentic turn that reminds the model to write durable notes to disk.

Default config:

{
  "agents": {
    "defaults": {
      "compaction": {
        "reserveTokensFloor": 20000,
        "memoryFlush": {
          "enabled": true,
          "softThresholdTokens": 4000,
          "systemPrompt": "Session nearing compaction. Store durable memories now.",
          "prompt": "Write any lasting notes to memory/YYYY-MM-DD.md; reply with NO_REPLY if nothing to store."
        }
      }
    }
  }
}

Key Points

  • Soft threshold: flush triggers at contextWindow - reserveTokensFloor - softThresholdTokens.
  • One flush per compaction cycle (tracked in sessions.json).
  • Silent: agent replies with NO_REPLY so user doesn't see it.
  • Requires writable workspace: skipped if workspaceAccess: "ro" or "none".
  • Verify it's working: check config and ensure memoryFlush.enabled = true with enough buffer.

Survival Rules

  1. Put durable rules in files, not chat. MEMORY.md and AGENTS.md survive compaction.
  2. Verify memory flush is enabled and has enough buffer to trigger.
  3. Make retrieval mandatory via AGENTS.md rules.

4. Vector Memory Search Configuration

Embedding Providers (auto-selection order)

  1. local — if memorySearch.local.modelPath is configured + file exists
  2. openai — if OpenAI API key is available
  3. gemini — if Gemini API key is available
  4. voyage — if Voyage API key is available
  5. mistral — if Mistral API key is available
  6. Disabled if none configured

Also supported: ollama (local/self-hosted, not auto-selected).

Important: Codex OAuth covers only chat/completions — it does NOT work for embeddings. You need a separate API key for your embedding provider.

Hybrid Search Config

{
  "agents": {
    "defaults": {
      "memorySearch": {
        "provider": "openai",
        "model": "text-embedding-3-small",
        "query": {
          "hybrid": true
        }
      }
    }
  }
}

Indexing Details

  • Chunks: ~400 token target, 80-token overlap.
  • Storage: per-agent SQLite at ~/.openclaw/memory/<agentId>.sqlite.
  • File watcher: debounce 1.5s, re-indexes on change.
  • Auto-reindex when provider/model/chunking params change.

5. Advanced: Post-Processing Pipeline

Vector + Keyword → Weighted Merge → Temporal Decay → Sort → MMR → Top-K Results

Temporal Decay (Recency Boost)

Old notes can outrank recent ones by raw similarity. Enable decay to fix this:

  • Applies exponential multiplier based on age.
  • Today's note (score 0.82 × 1.00 = 0.82) beats a 148-day-old note (score 0.91 × 0.03 = 0.03).
  • When to enable: months of daily notes where stale info outranks current context.

MMR Re-Ranking (Diversity)

Near-duplicate daily logs can crowd out diverse results. MMR removes redundancy:

  • Penalizes results too similar to already-selected ones.
  • When to enable: memory_search returns redundant/near-duplicate snippets.

6. QMD Backend (Experimental)

For power users who want better search quality:

{
  "memory": {
    "backend": "qmd",
    "citations": "auto",
    "qmd": {
      "includeDefaultMemory": true,
      "update": { "interval": "5m", "debounceMs": 15000 },
      "limits": { "maxResults": 6, "timeoutMs": 4000 },
      "paths": [
        { "name": "docs", "path": "~/notes", "pattern": "**/*.md" }
      ]
    }
  }
}
  • QMD combines BM25 + vectors + reranking locally via Bun + node-llama-cpp.
  • Requires separate install: bun install -g https://github.com/tobi/qmd.
  • Falls back to builtin SQLite if QMD fails or is missing.
  • First search may be slow (downloads GGUF models on first run).
  • Session indexing available: memory.qmd.sessions.enabled = true.

7. Additional Memory Paths

Index files outside the default workspace:

{
  "agents": {
    "defaults": {
      "memorySearch": {
        "extraPaths": ["../team-docs", "/srv/shared-notes/overview.md"]
      }
    }
  }
}
  • Directories scanned recursively for .md files.
  • Symlinks ignored.
  • Multimodal indexing (images/audio) available with Gemini Embedding 2.

8. Troubleshooting

Diagnosis: Always Start Here

Run /context list in your OpenClaw session to check:

  • Is MEMORY.md loading? If "missing" → not in context → zero effect.
  • Is anything TRUNCATED? Files over 20,000 chars get cut.
  • Do injected chars match raw chars? If not → content is being trimmed.

Common Problems

SymptomCauseFix
Agent "forgot" a ruleRule was in chat, not a fileMove to MEMORY.md or AGENTS.md
memory_search returns nothingEmbedding provider not configuredSet API key for openai/gemini/ollama
memory_search returns stale resultsNo temporal decayEnable decay in memorySearch config
memory_search returns duplicatesNo MMR re-rankingEnable MMR diversity filter
MEMORY.md not loadingFile too large or in group sessionTrim file; check session type is private
401 errors on searchWrong/missing embedding API keySet correct key (Codex OAuth won't work)
Agent loses context mid-conversationCompaction wiped itEnable memoryFlush; put rules in files

Health Check Checklist

  1. MEMORY.md exists and is < 10,000 chars (ideal) or < 20,000 chars (max)
  2. memory/ directory exists with recent daily logs
  3. memoryFlush.enabled = true in compaction config
  4. Embedding provider is configured and API key is valid
  5. AGENTS.md includes "search memory before acting" rule
  6. Run wc -c ~/.openclaw/workspace/*.md to audit file sizes

9. Memory Plugins (External)

For users who need memory beyond the built-in system:

Mem0 (@mem0/openclaw-mem0)

  • Stores memory outside the context window → survives compaction.
  • Auto-Capture: extracts facts from conversations automatically.
  • Auto-Recall: injects relevant memories before every response.
  • Separates long-term (user-scoped) and short-term (session-scoped) memory.
  • Cloud or self-hosted (Ollama + Qdrant + any LLM).

Cognee (Knowledge Graph)

  • Adds relational reasoning to memory ("Alice manages auth team" → graph traversal).
  • Scans memory files on startup, syncs after each session.
  • Good for: cross-project context, "who should I talk to about X?" queries.
  • Requires Docker for the Cognee server.

Supermemory (openclaw-supermemory)

  • Cloud-based persistent memory with user profiles.
  • Custom container routing (work vs personal).
  • No local infrastructure required.

10. Memory Maintenance Routine

Weekly

  • Review MEMORY.md — remove outdated facts, promote important daily-log entries.
  • Check daily logs aren't growing excessively large.

Monthly (Memory Distillation)

  • Scan memory/*.md for recurring patterns and hard-won rules.
  • Promote mature rules to MEMORY.md or to skill SKILL.md files.
  • Archive old daily logs (> 30 days) if desired.

Backup

cd ~/.openclaw/workspace
git init  # if not already
git add memory/ MEMORY.md
git commit -m "Memory backup $(date +%Y-%m-%d)"

Exclude: ~/.openclaw/credentials/ and openclaw.json (contain secrets).


Quick Reference: File Priority

FileLoaded WhenScopeSurvives Compaction
AGENTS.mdEvery session startAll sessions✅ Yes
SOUL.mdEvery session startAll sessions✅ Yes
MEMORY.mdSession start (private only)Main session✅ Yes
memory/today.mdSession startMain session✅ Yes
memory/yesterday.mdSession startMain session✅ Yes
memory/older.mdVia memory_search onlyOn-demand✅ Yes
Chat instructionsDuring conversationCurrent context❌ No

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

96.29%
按下载量换算88,560

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

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

来源信息

继续浏览同类 Skills