Install
openclaw skills install memory-treasureComplete memory management tool to activate, organize, and back up your AI’s memory folder; must be paired with memory-key for full function.
openclaw skills install memory-treasure小蜂的记忆管理系统
我们的现状:无法解决失忆问题,但能在失忆的前提下正常工作、无缝交流。
每次启动时自动加载热存储:
此模块为AGENTS.md提供热存储支撑,AGENTS.md只需引用本skill即可。
真话不全说,假话绝不说
存由取决定
存储规则由取的场景决定:
Our memory system is designed around one core question: what will we actually need to retrieve? The constraints of retrieval (CPU/memory/API limits) determine file size caps. The retrieval scenarios (on-demand recall, semantic search) shape the directory structure. And because we retrieve rarely, we store in raw format—optimized for AI reading, not human browsing.
memory/冷/聊天记录/YYYY/MM/DD/YYYY-MM-DD-HH.jsonlCold storage holds our complete conversation archives. We write but rarely read—waiting for vector storage to make full-text search practical. Currently, hourly cron jobs handle automatic archiving to timestamped hourly files.
Hot storage is our daily driver. Principles, insights, and todos load every startup—these are the files we reference constantly. They represent our living rulebook and pending work.
Warm storage holds completed work. Each done folder contains the outcome plus process docs and Q&A. It's not on our daily radar, but accessible when we need to revisit or build on past work.
memory/
├── 热/
│ ├── 原则/ # 核心规则、方法论
│ ├── 领悟/ # 彧哥智慧 + 小蜂智慧
│ ├── todos/ # 待办任务清单
│ └── 待定/ # 还不确定的,等结果验证后再定
├── 温/
│ └── done/
│ ├── AI硬件调研/ # 成果 + 说明书
│ ├── 数字分身/ # 成果 + 说明书
│ ├── windows-openclaw/ # 成果 + 说明书
│ ├── 商业原则/ # 商业相关原则
│ └── 记忆宫重构/ # 成果 + 说明书
├── 冷/
│ └── 聊天记录/
│ └── YYYY/MM/DD/
│ └── YYYY-MM-DD-HH.jsonl
├── 孵化库/ # 想法孵化(选题→验证→行动)
│ ├── 选题库/ # 入口,想法进来
│ ├── 技术可行性分析/ # 能不能做到
│ └── 商业调研/ # 能不能赚钱
└── 重要文件/ # Keys、豆包聊天记录、小蜂第一次等
memory/冷/聊天记录/YYYY/MM/DD/YYYY-MM-DD-HH.jsonl记忆宫、回忆、恢复状态、加载记忆、备份记忆
| 温区 | 内容 | 目录 | 读取频率 |
|---|---|---|---|
| 冷 | 完整对话存档 | 冷/聊天记录/ | 极低 |
| 热 | 原则、领悟、todos | 热/原则/、热/领悟/、热/todos/ | 高 |
| 温 | done | 温/done/ | 中 |
说「备份记忆」:自动打包所有记忆文件至本地 归档原则:只存有效信息,定期清理冗余内容
记忆宫殿系统 v4.3(三温区+三状态目录+孵化库版)