File-based memory system for AI agents that forget between sessions. Implements the "Dory-Proof" pattern for continuity across context resets. Use when setting up agent memory, building workspace structure, implementing task tracking, or preventing context-loss errors. Triggers on "memory system", "remember between sessions", "Dory pattern", "agent continuity", or "workspace setup".
数据来源:ClawHub。 在 ClawSkills 查看
选择你使用的 Agent
方法一:命令行安装(推荐)
推荐(无需提前安装 clawhub)
npx clawhub@latest --dir ~/.claude/skills install dory-memory或使用 clawhub CLI(需提前安装)
clawhub --dir ~/.claude/skills install dory-memory⚠️ 需要 Node.js 18+,没有 Node?请使用下方方法二直接下载 ZIP。 安装 Node.js →
方法二:手动下载安装(无需 Node)
下载 ZIP,解压后将文件夹放到以下路径,重启 Agent 即可:
安装路径
~/.claude/skills/dory-memory/💡解压后将文件夹放到上方路径,重启 Agent 即可生效
--- name: dory-memory description: File-based memory system for AI agents that forget between sessions. Implements the "Dory-Proof" pattern for continuity across context resets. Use when setting up agent memory, building workspace structure, implementing task tracking, or preventing context-loss errors. Triggers on "memory system", "remember between sessions", "Dory pattern", "agent continuity", or "workspace setup". ---
AI agents forget everything between sessions. This skill implements a file-based memory system that survives context resets.
Text > Brain. Write everything down. Files are memory. The agent only "remembers" what's on disk.
When the user gives a task:
state/ACTIVE.mdWhy: Paraphrasing introduces drift. Exact words preserve intent across context flushes.
workspace/
├── AGENTS.md # Operating rules (system file, don't rename)
├── SOUL.md # Identity + personality
├── USER.md # About the human
├── MEMORY.md # Curated long-term memory (<10KB)
├── LESSONS.md # "Never again" safety rules
├── TOOLS.md # Tool-specific notes
│
├── state/ # Active state (check every session)
│ ├── ACTIVE.md # Current task (exact user words)
│ ├── HOLD.md # Blocked items (check before acting!)
│ ├── STAGING.md # Drafts awaiting approval
│ └── DECISIONS.md # Recent choices with timestamps
│
├── memory/ # Historical
│ ├── YYYY-MM-DD.md
│ ├── recent-work.md
│ └── archive/
│
└── ops/ # Operational
└── WORKSPACE-INDEX.md
state/HOLD.md — what's BLOCKEDstate/ACTIVE.md — current taskstate/DECISIONS.md — recent choicesmemory/recent-work.md — last 48 hoursMEMORY.md — long-term (main session only)Output status line after boot:
📋 Boot: ACTIVE=[task] | HOLD=[n] items | STAGING=[n] drafts
## Current Instruction
**User said:** "[exact quote]"
**Interpretation:** [what you think it means]
**Status:**
- [ ] Step 1
- [ ] Step 2
[YYYY-MM-DD HH:MM | session] Item — reason blocked
ALL agents must check before acting on anything that looks ready.
[YYYY-MM-DD HH:MM | session] Decision made
When files conflict, priority (highest first):
Score on 4 axes (0–3 each):
| Axis | 0 | 1 | 2 | 3 | |------|---|---|---|---| | Longevity | Gone tomorrow | Weeks | Months | Years+ | | Reuse | One-off | Occasional | Frequent | Every session | | Impact | Trivial | Nice to know | Changes outputs | Changes decisions | | Uniqueness | Obvious | Slightly helpful | Hard to rederive | Impossible without |
Save if: Total ≥ 8, OR any axis = 3 AND total ≥ 6.
Copy template files from assets/templates/ to your workspace:
cp -r skills/dory-memory/assets/templates/* ~/.openclaw/workspace/
Then customize SOUL.md and USER.md for your agent.
references/IMPLEMENTATION-GUIDE.md — Full setup walkthroughreferences/ANTI-PATTERNS.md — Common mistakes to avoid安装 Dory-Proof Memory System 后,可以对 AI 说这些话来触发它
Help me get started with Dory-Proof Memory System
Explains what Dory-Proof Memory System does, walks through the setup, and runs a quick demo based on your current project
Use Dory-Proof Memory System to file-based memory system for AI agents that forget between sessions
Invokes Dory-Proof Memory System with the right parameters and returns the result directly in the conversation
What can I do with Dory-Proof Memory System in my documents & notes workflow?
Lists the top use cases for Dory-Proof Memory System, with example commands for each scenario
将技能文件夹放到 ~/.claude/skills/dory-memory/ 目录(个人级,所有项目可用),或 .claude/skills/dory-memory/(项目级)。重启 AI 客户端后,用 /dory-memory 主动调用,或让 AI 根据上下文自动发现并使用。
Dory-Proof Memory System 支持 Claude、Cursor、OpenClaw,可与这些 AI 平台无缝集成,扩展其能力。
Dory-Proof Memory System 可免费安装使用。请查阅仓库了解许可证信息。
File-based memory system for AI agents that forget between sessions. Implements the "Dory-Proof" pattern for continuity across context resets. Use when setting up agent memory, building workspace structure, implementing task tracking, or preventing context-loss errors. Triggers on "memory system", "remember between sessions", "Dory pattern", "agent continuity", or "workspace setup".
Automate my documents & notes tasks using Dory-Proof Memory System
Identifies repetitive steps in your workflow and sets up Dory-Proof Memory System to handle them automatically
Dory-Proof Memory System 属于「Documents & Notes」分类,该分类的技能帮助 AI 智能体在此领域执行专业任务。