# Send Dory-Proof Memory System to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "dory-memory",
    "name": "Dory-Proof Memory System",
    "source": "tencent",
    "type": "skill",
    "category": "效率提升",
    "sourceUrl": "https://clawhub.ai/justinhartbiz/dory-memory",
    "canonicalUrl": "https://clawhub.ai/justinhartbiz/dory-memory",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/dory-memory",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=dory-memory",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "assets/templates/LESSONS.md",
      "assets/templates/memory/recent-work.md",
      "assets/templates/ops/WORKSPACE-INDEX.md",
      "assets/templates/state/ACTIVE.md",
      "assets/templates/state/DECISIONS.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "dory-memory",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-29T18:47:31.953Z",
      "expiresAt": "2026-05-06T18:47:31.953Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=dory-memory",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=dory-memory",
        "contentDisposition": "attachment; filename=\"dory-memory-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "dory-memory"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/dory-memory"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/dory-memory",
    "downloadUrl": "https://openagent3.xyz/downloads/dory-memory",
    "agentUrl": "https://openagent3.xyz/skills/dory-memory/agent",
    "manifestUrl": "https://openagent3.xyz/skills/dory-memory/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/dory-memory/agent.md"
  }
}
```
## Documentation

### Dory-Proof Memory System

AI agents forget everything between sessions. This skill implements a file-based memory system that survives context resets.

### Core Principle

Text > Brain. Write everything down. Files are memory. The agent only "remembers" what's on disk.

### The Dory-Proof Pattern (Critical)

When the user gives a task:

IMMEDIATELY write their EXACT WORDS to state/ACTIVE.md
Then interpret what it means
Then do the work
Mark complete when done

Why: Paraphrasing introduces drift. Exact words preserve intent across context flushes.

### Workspace Structure

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

### Boot Sequence (Every Session)

Read state/HOLD.md — what's BLOCKED
Read state/ACTIVE.md — current task
Read state/DECISIONS.md — recent choices
Read memory/recent-work.md — last 48 hours
Read MEMORY.md — long-term (main session only)

Output status line after boot:

📋 Boot: ACTIVE=[task] | HOLD=[n] items | STAGING=[n] drafts

### state/ACTIVE.md

## Current Instruction
**User said:** "[exact quote]"
**Interpretation:** [what you think it means]
**Status:**
- [ ] Step 1
- [ ] Step 2

### state/HOLD.md

[YYYY-MM-DD HH:MM | session] Item — reason blocked

ALL agents must check before acting on anything that looks ready.

### state/DECISIONS.md

[YYYY-MM-DD HH:MM | session] Decision made

### Conflict Resolution

When files conflict, priority (highest first):

state/HOLD.md — blocks override all
state/ACTIVE.md — current instruction
state/DECISIONS.md — recent choices
AGENTS.md — general rules

### Memory Scoring (Before Saving to MEMORY.md)

Score on 4 axes (0–3 each):

Axis0123LongevityGone tomorrowWeeksMonthsYears+ReuseOne-offOccasionalFrequentEvery sessionImpactTrivialNice to knowChanges outputsChanges decisionsUniquenessObviousSlightly helpfulHard to rederiveImpossible without

Save if: Total ≥ 8, OR any axis = 3 AND total ≥ 6.

### Quick Setup

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

references/IMPLEMENTATION-GUIDE.md — Full setup walkthrough
references/ANTI-PATTERNS.md — Common mistakes to avoid
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: justinhartbiz
- Version: 1.0.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-04-29T18:47:31.953Z
- Expires at: 2026-05-06T18:47:31.953Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/dory-memory)
- [Send to Agent page](https://openagent3.xyz/skills/dory-memory/agent)
- [JSON manifest](https://openagent3.xyz/skills/dory-memory/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/dory-memory/agent.md)
- [Download page](https://openagent3.xyz/downloads/dory-memory)