Moore's self-developed memory system ensures continuity across sessions. Never forget a cross-session task again.
Before: Cross-session tasks were forgotten because there was no persistent todo tracking.
After: A 5-layer pyramid with a dedicated .todos.md file ensures every cross-session task persists.
Workspace Memory (5 Layers)
├── MEMORY.md — Permanent essence (always loaded at startup)
├── memory/monthly/ — Monthly summaries
├── memory/weekly/ — Weekly summaries
├── memory/*.md — Daily diaries (last 14 days)
└── .todos.md — Cross-session todo list (CRITICAL!)
| File | Purpose |
|---|---|
| ------ | --------- |
scripts/startup-read.js | Loads all 5 layers on every startup |
scripts/weekly-archive.js | Generates weekly summaries (cron: Monday 9AM) |
scripts/monthly-archive.js | Generates monthly summaries (cron: monthly, last day) |
.todos.md | Cross-session todo list — THE key mechanism |
On every session start, startup-read.js executes automatically:
Layer 1: MEMORY.md — Permanent essence
Layer 2: memory/monthly/*.md — All monthly summaries
Layer 3: memory/weekly/weekly-review-*.md — This month's weeks
Layer 4: memory/*.md — Last 14 days diaries
Layer 5: .todos.md — Cross-session todos ⭐
When to write to .todos.md:
Format:
## 进行中
- [ ] Task description here
## 已完成
- [x] Completed task (keep for history)
After completion: Move the line from "进行中" to "已完成"
After every conversation with Masone ends, write a summary immediately.
memory/YYYY-MM-DD.md (today's diary)| Task | Cron | Script |
|---|---|---|
| ------ | ------ | -------- |
| Weekly review | Monday 9AM | weekly-archive.js |
| Monthly archive | Last day of month 10AM | monthly-archive.js |
All scripts: ~/.openclaw/workspace/scripts/
memos-memory-guide — MemOS memory tools (memory_search, etc.)memory-never-forget — Atkinson-Shiffrin memory model| Date | Event |
|---|---|
| ------ | ------- |
| 2026-03-22 | Initial creation |
| 2026-03-27 | Enhanced with .todos.md, startup-read.js updated to 5 layers |
| 2026-03-29 | Added conversation summary rule |
| 2026-03-31 | Fixed: scripts separated, monthly cron added, template newlines fixed |
_This skill documents Moore's own memory system._
共 1 个版本