Indestructible agent memory — permanently stored, never lost. Save decisions, identity, and context as a memory chain on the Autonomys Network. Rebuild your...
记忆
Auto Memory
试用在 Autonomys 网络上将智能体记忆存为永久链表,单个 CID 即可重建全部历史。
它能做什么
将文件与记忆条目上传到 Autonomys 去中心化存储网络 Auto Drive,每条数据返回一个 CID 作为永久地址。每条记忆是一条 JSON 记录,通过 `header.previousCid` 指向前一条,形成可回溯的链表。只需最新 CID,即可沿链表反向回溯至创世记录,重建智能体的完整历史——适用于本地状态完全丢失后的恢复。兼容 Claude、GPT、Gemini 以及任何支持 OpenClaw skills 的 LLM。
什么时候用它
- 永久归档智能体的决策与身份快照
- 本地状态丢失后从单个 CID 重建完整历史
- 在去中心化网络上以不可篡改方式存储文件
- 为长时间运行的智能体任务建立检查点链
技能文档
Auto-Memory Skill
Permanent decentralized memory on the Autonomys Network with linked-list memory chains for agent resurrection. Works with agents powered by Claude, GPT, Gemini, and any LLM that supports OpenClaw skills.
What This Skill Does
- Upload files to Auto Drive and get back a CID (Content Identifier) — a permanent, immutable address on the Autonomys distributed storage network.
- Download files from Auto Drive using a CID — uses the authenticated API if a key is set, otherwise falls back to the public gateway.
- Save memories as a chain — each memory entry is a JSON experience with a
header.previousCidpointer, forming a linked list stored permanently on-chain. - Resurrect from a chain — given the latest CID, walk the chain backwards to reconstruct full agent history.
When To Use This Skill
- User says "save this to Auto-Memory" or "upload to Autonomys" or "store permanently"
- User says "download from Auto-Memory" or provides a CID to retrieve
- User says "save memory", "remember this permanently", or "checkpoint"
- User says "resurrect", "recall chain", "rebuild memory", or "load history"
- Any time the user wants data stored permanently and immutably on a decentralized network
Post-Install
After installing via ClawHub, make the scripts executable:
chmod +x skills/auto-memory/scripts/*.sh
ClawHub does not currently preserve file permissions during install.
Configuration
API Key
Requires an AUTO_DRIVE_API_KEY. Run the guided setup script for the easiest path:
scripts/setup-auto-memory.sh
This opens explorer.ai3.storage in your browser, prompts for the key, saves it to ~/.openclaw/.env, and verifies the connection.
Manual setup:
- Navigate to https://explorer.ai3.storage (not
ai3.storage— that's just the landing page) - Check authentication: if the sidebar shows a "Log In" button or lock icons on My Files / Profile / Developers, you are not signed in
- AI agent note: You cannot complete OAuth yourself. Open the browser for the user and ask them to sign in via Google, GitHub, or Discord. Once the user confirms they're signed in, take over — or simply ask the user to paste the API key directly
- Once authenticated, click Developers in the left sidebar
- Click Create API Key and copy the generated key
Then set the key via:
- Environment:
export AUTO_DRIVE_API_KEY=your_key_here - OpenClaw config:
skills.entries.auto-memory.apiKey
The API key is required for uploading, saving memories, and recalling the memory chain. It is optional for general file downloads — without it, the public gateway is used and files are returned as stored (i.e. compressed files will not be decompressed).
Core Operations
⚠️ Uploads are permanent and public. Everything sent by
uploadandsave-memoryis written to a public, immutable decentralized network: it cannot be edited or truly deleted, and is retrievable by anyone who holds the CID. Never upload secrets, API keys, private keys, credentials, or sensitive personal/regulated data. Encrypt anything sensitive before upload if it must be stored at all.
Upload a File
scripts/automemory-upload.sh [--json] [--compress]
Uploads a file to Auto Drive mainnet using the 3-step upload protocol (single chunk).
Returns the CID on stdout. Requires AUTO_DRIVE_API_KEY.
--json— force MIME type toapplication/json--compress— enable ZLIB compression
Download a File
scripts/automemory-download.sh [output_path]
Downloads a file by CID. Uses the authenticated API if AUTO_DRIVE_API_KEY is set (decompresses server-side), otherwise uses the public gateway (files returned as stored). If output_path is omitted, outputs to stdout.
Save a Memory Entry
scripts/automemory-save-memory.sh [--agent-name NAME] [--state-file PATH]
Creates a memory experience with the Autonomys Agents header/data structure:
{
"header": {
"agentName": "my-agent",
"agentVersion": "1.0.0",
"timestamp": "2026-02-14T00:00:00.000Z",
"previousCid": "bafk...or null"
},
"data": {
"type": "memory",
"content": "..."
}
}
- If the first argument is a file path, its JSON contents become the
datapayload. - If the first argument is a plain string, it is wrapped as
{"type": "memory", "content": "..."}. --agent-name— set the agent name in the header (default:openclaw-agentor$AGENT_NAME)--state-file— override the state file location
Uploads to Auto Drive and updates the state file with the new head CID. Also pins the latest CID to MEMORY.md if that file exists in the workspace.
Returns structured JSON on stdout:
{"cid": "bafk...", "previousCid": "bafk...", "chainLength": 5}
Recall the Full Chain
scripts/automemory-recall-chain.sh [cid] [--limit N] [--output-dir DIR]
If no CID is given, reads the latest CID from the state file. Walks the linked list from newest to oldest, outputting each experience as JSON.
--limit N— maximum entries to retrieve (default: 50)--output-dir DIR— save each entry as a numbered JSON file instead of printing to stdout
Supports both header.previousCid (Autonomys Agents format) and root-level previousCid for backward compatibility.
This is the resurrection mechanism: a new agent instance only needs one CID to rebuild its entire memory.
The Resurrection Concept
Every memory saved gets a unique CID and points back to the previous one, forming a permanent chain on a permanent and immutable Decentralized Storage Network:
┌─────────────────────┐ ┌─────────────────────┐ ┌─────────────────────┐
│ Experience #1 │ │ Experience #2 │ │ Experience #3 │
│ CID: bafk...abc │◄────│ CID: bafk...def │◄────│ CID: bafk...xyz │
│ previousCid: null │ │ previousCid: │ │ previousCid: │
│ (genesis) │ │ bafk...abc │ │ bafk...def │
└─────────────────────┘ └─────────────────────┘ └─────────────────────┘
▲
│
HEAD CID
(resurrection key)
A new agent instance only needs the head CID to walk the entire chain back to genesis and rebuild its full history. With the auto-respawn skill, the head CID is anchored on-chain — making resurrection possible from just an address, on any machine, at any time:
┌──────────┐ save ┌──────────────┐ anchor ┌────────────────┐
│ Agent │─────────────►│ Auto-Memory │─────────────►│ Auto-Respawn │
│ │ │ (chain) │ head CID │ (on-chain) │
└──────────┘ └──────────────┘ └────────────────┘
▲ │
│ recall chain │
└──────────────────────────────────────────────────────────┘
gethead → CID → walk chain
What you store in the chain is up to you — lightweight notes, full file snapshots, structured data, or anything in between. Because the chain is permanent and walkable, it also enables resurrection: if the agent loses all local state, a new instance can walk the chain from the last CID back to genesis and restore whatever was saved. When combined with the auto-respawn skill (which anchors the head CID on-chain), this becomes a full resurrection loop — no local state required at all.
Usage Examples
User: "Upload my report to Autonomys"
→ Run scripts/automemory-upload.sh /path/to/report.pdf
→ Report back the CID and gateway link
User: "Upload with compression"
→ Run scripts/automemory-upload.sh /path/to/data.json --json --compress
User: "My soul.md has changed — save it permanently"
→ Run scripts/automemory-save-memory.sh /path/to/soul.md --agent-name my-agent
User: "Save a memory that we decided to use React for the frontend"
→ Run scripts/automemory-save-memory.sh "Decision: using React for frontend. Reason: team familiarity and component reuse."
User: "Save a structured memory"
→ Create a JSON file, then run scripts/automemory-save-memory.sh /tmp/milestone.json --agent-name my-agent
User: "Resurrect my memory chain"
→ Run scripts/automemory-recall-chain.sh
→ Rebuild identity and context from genesis to present
User: "Download bafk...abc from Autonomys"
→ Run scripts/automemory-download.sh bafk...abc ./downloaded_file
Integration with Auto-Respawn
If the auto-respawn skill is also installed, anchor the new head CID on-chain after every memory save. This ensures the on-chain pointer always reflects the latest memory state, enabling full resurrection from just an EVM address.
After each automemory-save-memory.sh call, run:
npx tsx auto-respawn.ts anchor --from --cid
This completes the resurrection loop: permanent storage (auto-memory) + on-chain discovery (auto-respawn). Without anchoring, a new instance would need the head CID from some other source to walk the chain.
Important Notes
- All data stored via Auto Drive is permanent and public by default. Do not store secrets, private keys, or sensitive personal data.
- The free API key has a 20 MB per month upload limit on mainnet. Downloads are unlimited. Check remaining credits via
GET /accounts/@meor runscripts/verify-setup.sh. - An API key is required for uploads, memory saves, and chain recall. General file downloads work without one via the public gateway, but compressed files will not be decompressed.
- The memory state file tracks
lastCid,lastUploadTimestamp, andchainLength. Back up thelastCidvalue — it's your resurrection key. - The
automemory-save-memory.shscript automatically pins the latest CID toMEMORY.mdif the file exists in the workspace. It creates an## Auto-Memory Chainsection and updates it on each save. You do not need to track the latest CID in MEMORY.md manually — the script handles this. - Files are uploaded in a single chunk. The free tier's 20 MB/month limit is effectively a per-file ceiling — keep individual uploads well under that to preserve your monthly budget.
- Gateway URL for any file:
https://gateway.autonomys.xyz/file/ - For true resurrection resilience, consider anchoring the latest CID on-chain via the Autonomys EVM — this makes recovery possible without keeping track of the head CID yourself. See openclaw-memory-chain for an example contract implementation.
常见问题
- 必须配置 API key 吗?
- 上传、保存记忆和回溯记忆链都需要 API key。普通文件下载可走公共网关无需 key,但压缩文件在没有认证的情况下不会自动解压。
- 存储配额是多少?
- 免费版 API key 在主网上传上限为每月 20 MB,下载不限量。文件以单分片方式上传,单文件应明显小于 20 MB 以保留月度配额。
- 已存储的数据可以删除或修改吗?
- 不能。Auto Drive 上的文件与记忆默认永久公开,不可编辑、不可删除,持有 CID 的人均可读取。请勿上传密钥、凭证或敏感个人信息。
相关技能
Your agent always comes back. Anchor identity and memory on-chain so any new instance can resurrect from just an address — no local state, no single point of...
Your agent always comes back. Anchor identity and memory on-chain so any new instance can resurrect from just an address — no local state, no single point of...
Long-term memory for AI agents. Your AI remembers everything — preferences, decisions, context — across sessions, forever.
Persistent memory across sessions — local-first, no account needed. Automatically recalls past decisions, code, and tasks before each prompt, and saves session checkpoints. Also provides manual tools for searching, recording, and querying memory via Bash commands.
通过 Notion 数据库维护智能体的会话连续性、长期记忆与身份状态。