/install claude-memory
Claude Memory
A structured, layered memory architecture for OpenClaw agents. Uses a 4-type classification (user/feedback/project/reference) for organized memory, combined with semantic search and progressive disclosure for token-efficient retrieval.
Architecture
MEMORY.md (≤10KB, injected every turn via system prompt)
├── High-frequency info directly readable (inline)
├── Pointers to details in topics/
└── 4 sections: user | feedback → feedback.md | project | reference
memory/
├── feedback.md # Corrections AND confirmations from human (MOST IMPORTANT)
├── YYYY-MM-DD.md # Daily raw notes
└── topics/ # Low-frequency large content
├── agent-ids.md
├── known-issues.md
└── ... (domain-specific)
4-Type Classification
| Type | Purpose | Examples |
|---|---|---|
| user | Human's personal info, preferences, relationships | IDs, timezone, family, privacy rules |
| feedback | Corrections AND confirmations from human | "Check docs first", "That approach was right" |
| project | Work items, tasks, known issues | Active bugs, cron jobs, cleanup history |
| reference | Technical resources, environment | Runtime config, connected services, security events |
Setup
Run the init script to create the directory structure and template files:
python scripts/init_memory.py \x3Cworkspace-path>
This creates:
MEMORY.mdwith empty section templatesmemory/feedback.mdwith format guidememory/topics/directory- Instructions to update AGENTS.md memory rules
After running, edit MEMORY.md sections with actual content and update AGENTS.md to include the memory rules from references/agents-rules.md.
Write Rules
- Feedback immediately — When human corrects you, write to
memory/feedback.mdNOW. Not later, not "I'll remember", NOW. - Record confirmations too — When human validates a non-obvious approach ("yes exactly", "keep doing that"), record it. If you only save corrections, you'll avoid past mistakes but drift away from approaches the human has already approved, becoming overly cautious.
- MEMORY.md ≤ 10KB — Hybrid format: inline high-frequency info for direct readability, pointers to
topics/for depth. If it exceeds 10KB, move lower-frequency content to topics/ — the content is preserved, just relocated. - Read before answer — When MEMORY.md says "see topics/X.md", read that file first. Never answer from a one-line summary.
- Absolute dates only — Convert relative dates ("yesterday", "last week") to absolute dates (e.g., "2026-04-01") when writing. Memories should remain interpretable months later.
- Don't memorize what tools can look up — File paths, git history, code structure, current weather, live data.
- Don't memorize ephemeral state — In-progress work, temporary conversation context, things that resolve themselves.
What NOT to Save
- Information tools can look up in real-time (weather, time, current stock prices)
- Code patterns, architecture, file paths, project structure — derivable by reading the project
- Git history, recent changes, who-changed-what —
git logis authoritative - Debugging solutions or fix recipes — the fix is in the code; the commit has the context
- Ephemeral task details: in-progress work, temporary state, current conversation context
- Anything already documented in CLAUDE.md or equivalent project files
Verification Rules
Memories are long-term assets, not consumables. They don't expire. But some memories need verification before use:
- Personal preferences, relationships, history events — Generally stable. No verification needed.
- Technical state (service configs, bug status, installed versions) — Verify before acting on them. The world changes.
- Before recommending based on memory — If the memory names a specific file, check it exists. If it names a function or flag, grep for it. "The memory says X exists" is not the same as "X exists now."
Feedback Format
Each feedback entry follows this structure. Two types: correction (don't do X) and confirmation (keep doing X).
### F###: Rule description (date)
- **Why**: Root cause or context
- **How to apply**: Concrete scenarios
### F###: Confirmed approach description (确认 date)
- **Context**: What was being worked on
- **Why**: What made this approach noteworthy or validated
Heartbeat Maintenance
Memory is an asset, not a consumable. Memories should not be deleted because they're old.
⚠️ Setup requirement: This 4-phase routine MUST be written into
HEARTBEAT.md, NOTAGENTS.md.HEARTBEAT.mdis injected only during heartbeat polls (token-efficient), whileAGENTS.mdis loaded every session (wastes token on every message). Write memory write rules inAGENTS.md, write this maintenance routine inHEARTBEAT.md.
During heartbeat polls, follow this 4-phase care routine:
Phase 1 — Catch-up (补漏)
- Did the human correct or confirm something this session that isn't recorded in
memory/feedback.md? - Are there significant events from this conversation not yet in daily notes?
Phase 2 — Consolidate (整合)
- Review recent daily notes (last 1-3 days) for insights worth elevating to
MEMORY.mdortopics/. - Merge new signal into existing topic files rather than creating near-duplicates.
- Daily notes that have been fully consolidated can be left in place as historical records — do NOT delete them.
Phase 3 — Verify (校验)
- Pick 1-2 entries from
MEMORY.mdand spot-check if they're still accurate. - Focus on technical state entries (service configs, bug status, versions). Personal info and historical events don't need verification.
- If a memory conflicts with current reality, update it — don't delete it, correct it.
Phase 4 — Tidy (整理)
- If
MEMORY.mdexceeds 10KB, relocate lower-frequency content totopics/. The content is preserved, just moved to a more appropriate home. - Ensure topic files have a timestamp annotation:
> Created: YYYY-MM-DD | Updated: YYYY-MM-DD - Add pointers in MEMORY.md for any newly created topic files.
Design Decisions
- MEMORY.md as hybrid (content + pointers) — High-frequency info is directly readable for warmth and efficiency. Deep details live in
topics/. Not a pure index — an agent's memory should feel like a person's, not a database. - Memories don't expire — Unlike a coding agent where project state changes fast, a daily assistant's memories are long-term assets. Old memories get relocated (to topics/) if MEMORY.md needs space, never deleted.
- Feedback includes confirmations — Recording only corrections makes the agent overly cautious. Validated approaches ("yes, keep doing that") are just as important to remember.
- Verification is selective — Personal preferences and history are stable facts. Only technical state (configs, versions, bug status) needs re-verification.
- Feedback as separate file — Highest-priority memory. Must never be buried under daily notes.
- Topics for depth — Low-frequency but detailed content lives in
topics/to keep MEMORY.md lean. - No auto-extraction — Requires OpenClaw runtime support. Currently manual via rules.
Advanced
For detailed AGENTS.md rules, see references/agents-rules.md.
For troubleshooting, see references/encoding-notes.md.
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install claude-memory - 安装完成后,直接呼叫该 Skill 的名称或使用
/claude-memory触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
Claude Memory 是什么?
Structured memory system for OpenClaw agents. Provides a 4-type classification (user/feedback/project/reference), layered architecture (MEMORY.md + topics/ +... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 351 次。
如何安装 Claude Memory?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install claude-memory」即可一键安装,无需额外配置。
Claude Memory 是免费的吗?
是的,Claude Memory 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
Claude Memory 支持哪些平台?
Claude Memory 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 Claude Memory?
由 Kaiji-Z(@kaiji-z)开发并维护,当前版本 v1.2.0。