โ† All skills
Tencent SkillHub ยท Productivity

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".

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

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".

โฌ‡ 0 downloads โ˜… 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
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

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

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

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.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.0.0

Documentation

ClawHub primary doc Primary doc: SKILL.md 12 sections Open source page

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

Category context

Workflow acceleration for inboxes, docs, calendars, planning, and execution loops.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
6 Docs
  • SKILL.md Primary doc
  • assets/templates/LESSONS.md Docs
  • assets/templates/memory/recent-work.md Docs
  • assets/templates/ops/WORKSPACE-INDEX.md Docs
  • assets/templates/state/ACTIVE.md Docs
  • assets/templates/state/DECISIONS.md Docs