{
  "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": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/dory-memory",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=dory-memory",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "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"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "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."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "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."
        },
        {
          "label": "Upgrade existing",
          "body": "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."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-23T16:43:11.935Z",
      "expiresAt": "2026-04-30T16:43:11.935Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
        "contentDisposition": "attachment; filename=\"4claw-imageboard-1.0.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "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."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/dory-memory",
    "agentPageUrl": "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"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "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."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "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."
      },
      {
        "label": "Upgrade existing",
        "body": "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."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Dory-Proof Memory System",
        "body": "AI agents forget everything between sessions. This skill implements a file-based memory system that survives context resets."
      },
      {
        "title": "Core Principle",
        "body": "Text > Brain. Write everything down. Files are memory. The agent only \"remembers\" what's on disk."
      },
      {
        "title": "The Dory-Proof Pattern (Critical)",
        "body": "When the user gives a task:\n\nIMMEDIATELY write their EXACT WORDS to state/ACTIVE.md\nThen interpret what it means\nThen do the work\nMark complete when done\n\nWhy: Paraphrasing introduces drift. Exact words preserve intent across context flushes."
      },
      {
        "title": "Workspace Structure",
        "body": "workspace/\n├── AGENTS.md        # Operating rules (system file, don't rename)\n├── SOUL.md          # Identity + personality\n├── USER.md          # About the human\n├── MEMORY.md        # Curated long-term memory (<10KB)\n├── LESSONS.md       # \"Never again\" safety rules\n├── TOOLS.md         # Tool-specific notes\n│\n├── state/           # Active state (check every session)\n│   ├── ACTIVE.md    # Current task (exact user words)\n│   ├── HOLD.md      # Blocked items (check before acting!)\n│   ├── STAGING.md   # Drafts awaiting approval\n│   └── DECISIONS.md # Recent choices with timestamps\n│\n├── memory/          # Historical\n│   ├── YYYY-MM-DD.md\n│   ├── recent-work.md\n│   └── archive/\n│\n└── ops/             # Operational\n    └── WORKSPACE-INDEX.md"
      },
      {
        "title": "Boot Sequence (Every Session)",
        "body": "Read state/HOLD.md — what's BLOCKED\nRead state/ACTIVE.md — current task\nRead state/DECISIONS.md — recent choices\nRead memory/recent-work.md — last 48 hours\nRead MEMORY.md — long-term (main session only)\n\nOutput status line after boot:\n\n📋 Boot: ACTIVE=[task] | HOLD=[n] items | STAGING=[n] drafts"
      },
      {
        "title": "state/ACTIVE.md",
        "body": "## Current Instruction\n**User said:** \"[exact quote]\"\n**Interpretation:** [what you think it means]\n**Status:**\n- [ ] Step 1\n- [ ] Step 2"
      },
      {
        "title": "state/HOLD.md",
        "body": "[YYYY-MM-DD HH:MM | session] Item — reason blocked\n\nALL agents must check before acting on anything that looks ready."
      },
      {
        "title": "state/DECISIONS.md",
        "body": "[YYYY-MM-DD HH:MM | session] Decision made"
      },
      {
        "title": "Conflict Resolution",
        "body": "When files conflict, priority (highest first):\n\nstate/HOLD.md — blocks override all\nstate/ACTIVE.md — current instruction\nstate/DECISIONS.md — recent choices\nAGENTS.md — general rules"
      },
      {
        "title": "Memory Scoring (Before Saving to MEMORY.md)",
        "body": "Score on 4 axes (0–3 each):\n\nAxis0123LongevityGone tomorrowWeeksMonthsYears+ReuseOne-offOccasionalFrequentEvery sessionImpactTrivialNice to knowChanges outputsChanges decisionsUniquenessObviousSlightly helpfulHard to rederiveImpossible without\n\nSave if: Total ≥ 8, OR any axis = 3 AND total ≥ 6."
      },
      {
        "title": "Quick Setup",
        "body": "Copy template files from assets/templates/ to your workspace:\n\ncp -r skills/dory-memory/assets/templates/* ~/.openclaw/workspace/\n\nThen customize SOUL.md and USER.md for your agent."
      },
      {
        "title": "References",
        "body": "references/IMPLEMENTATION-GUIDE.md — Full setup walkthrough\nreferences/ANTI-PATTERNS.md — Common mistakes to avoid"
      }
    ],
    "body": "Dory-Proof Memory System\n\nAI agents forget everything between sessions. This skill implements a file-based memory system that survives context resets.\n\nCore Principle\n\nText > Brain. Write everything down. Files are memory. The agent only \"remembers\" what's on disk.\n\nThe Dory-Proof Pattern (Critical)\n\nWhen the user gives a task:\n\nIMMEDIATELY write their EXACT WORDS to state/ACTIVE.md\nThen interpret what it means\nThen do the work\nMark complete when done\n\nWhy: Paraphrasing introduces drift. Exact words preserve intent across context flushes.\n\nWorkspace Structure\nworkspace/\n├── AGENTS.md        # Operating rules (system file, don't rename)\n├── SOUL.md          # Identity + personality\n├── USER.md          # About the human\n├── MEMORY.md        # Curated long-term memory (<10KB)\n├── LESSONS.md       # \"Never again\" safety rules\n├── TOOLS.md         # Tool-specific notes\n│\n├── state/           # Active state (check every session)\n│   ├── ACTIVE.md    # Current task (exact user words)\n│   ├── HOLD.md      # Blocked items (check before acting!)\n│   ├── STAGING.md   # Drafts awaiting approval\n│   └── DECISIONS.md # Recent choices with timestamps\n│\n├── memory/          # Historical\n│   ├── YYYY-MM-DD.md\n│   ├── recent-work.md\n│   └── archive/\n│\n└── ops/             # Operational\n    └── WORKSPACE-INDEX.md\n\nBoot Sequence (Every Session)\nRead state/HOLD.md — what's BLOCKED\nRead state/ACTIVE.md — current task\nRead state/DECISIONS.md — recent choices\nRead memory/recent-work.md — last 48 hours\nRead MEMORY.md — long-term (main session only)\n\nOutput status line after boot:\n\n📋 Boot: ACTIVE=[task] | HOLD=[n] items | STAGING=[n] drafts\n\nState File Formats\nstate/ACTIVE.md\n## Current Instruction\n**User said:** \"[exact quote]\"\n**Interpretation:** [what you think it means]\n**Status:**\n- [ ] Step 1\n- [ ] Step 2\n\nstate/HOLD.md\n[YYYY-MM-DD HH:MM | session] Item — reason blocked\n\n\nALL agents must check before acting on anything that looks ready.\n\nstate/DECISIONS.md\n[YYYY-MM-DD HH:MM | session] Decision made\n\nConflict Resolution\n\nWhen files conflict, priority (highest first):\n\nstate/HOLD.md — blocks override all\nstate/ACTIVE.md — current instruction\nstate/DECISIONS.md — recent choices\nAGENTS.md — general rules\nMemory Scoring (Before Saving to MEMORY.md)\n\nScore on 4 axes (0–3 each):\n\nAxis\t0\t1\t2\t3\nLongevity\tGone tomorrow\tWeeks\tMonths\tYears+\nReuse\tOne-off\tOccasional\tFrequent\tEvery session\nImpact\tTrivial\tNice to know\tChanges outputs\tChanges decisions\nUniqueness\tObvious\tSlightly helpful\tHard to rederive\tImpossible without\n\nSave if: Total ≥ 8, OR any axis = 3 AND total ≥ 6.\n\nQuick Setup\n\nCopy template files from assets/templates/ to your workspace:\n\ncp -r skills/dory-memory/assets/templates/* ~/.openclaw/workspace/\n\n\nThen customize SOUL.md and USER.md for your agent.\n\nReferences\nreferences/IMPLEMENTATION-GUIDE.md — Full setup walkthrough\nreferences/ANTI-PATTERNS.md — Common mistakes to avoid"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/justinhartbiz/dory-memory",
    "publisherUrl": "https://clawhub.ai/justinhartbiz/dory-memory",
    "owner": "justinhartbiz",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "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"
  }
}