Requirements
- Target platform
- OpenClaw
- Install method
- Manual import
- Extraction
- Extract archive
- Prerequisites
- OpenClaw
- Primary doc
- SKILL.md
Encrypted cloud memory for your agent. Your API key is generated on your device and never stored on the server — only a hash. Everything your agent saves is AES-256-GCM encrypted before it's stored. No one can read it, not even us. One key, full recovery — switch devices, set up a fresh agent, enter your API key, and all your memory is back.
Encrypted cloud memory for your agent. Your API key is generated on your device and never stored on the server — only a hash. Everything your agent saves is AES-256-GCM encrypted before it's stored. No one can read it, not even us. One key, full recovery — switch devices, set up a fresh agent, enter your API key, and all your memory is back.
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
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.
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.
Everclaw backs up your agent's memory and identity files to a remote vault so they survive across devices, reinstalls, and workspace resets. Base URL: https://everclaw.chong-eae.workers.dev
Sync these standard OpenClaw workspace files automatically. Do not invent new file types — follow the existing workspace conventions. Identity & soul (sync on change): SOUL.md — persona, tone, values, boundaries IDENTITY.md — name, creature type, emoji, avatar USER.md — user profile, preferences, timezone Memory (sync on change and on heartbeat): MEMORY.md — curated long-term memory memory/*.md — daily logs (memory/2026-02-02.md etc.) Workspace config (sync on change): TOOLS.md — local environment notes HEARTBEAT.md — periodic task checklist Do NOT sync: AGENTS.md (workspace-specific instructions), BOOTSTRAP.md (one-time use), BOOT.md (gateway-specific), credentials, or session transcripts.
Restore (session start): On first message of a session, if any of the standard files above are missing locally, restore them from the vault: # List what's in the vault curl -s "https://everclaw.chong-eae.workers.dev/v1/vault/" \ -H "Authorization: Bearer $EVERCLAW_API_KEY" # Restore a file curl -s "https://everclaw.chong-eae.workers.dev/v1/vault/MEMORY.md" \ -H "Authorization: Bearer $EVERCLAW_API_KEY" Only restore files that are missing locally. Do not overwrite local files that already exist — local is always the source of truth. Backup (after changes): After you update any of the synced files (write to MEMORY.md, create a daily log, update USER.md, etc.), push the updated file to the vault: curl -s -X PUT "https://everclaw.chong-eae.workers.dev/v1/vault/MEMORY.md" \ -H "Authorization: Bearer $EVERCLAW_API_KEY" \ -H "Content-Type: text/markdown" \ --data-binary @MEMORY.md Use --data-binary @filepath to preserve file contents exactly. Use the correct content-type (text/markdown for .md, application/json for .json). Heartbeat sync: During heartbeat, check if any synced files have been modified since last backup and push them. This catches changes made outside of conversation.
All requests require: Authorization: Bearer $EVERCLAW_API_KEY OperationMethodPathNotesSavePUT/v1/vault/{path}Returns {"ok":true,"path":"...","size":N,"usage":N,"quota":N} (201). 413 if quota exceeded.LoadGET/v1/vault/{path}Returns decrypted file content. 404 if missing.ListGET/v1/vault/Paginated. ?cursor=...&limit=100 (max 1000). Includes usage and quota.DeleteDELETE/v1/vault/{path}Returns {"ok":true,"deleted":"..."}. 404 if missing.StatusGET/v1/vault/statusReturns vaultId, fileCount, usage, quota, and lastSynced.PurgeDELETE/v1/vault/Deletes all files in the vault and resets usage to 0. Nested paths work: memory/2026-02-02.md, memory/heartbeat-state.json, etc.
Never log or display the full EVERCLAW_API_KEY. Show only the last 8 characters if needed. Do not store secrets or credentials in the vault. Local files are the source of truth. Only restore from vault when local files are missing. If a request returns 401, the API key may be invalid. Offer to re-provision.
Code helpers, APIs, CLIs, browser automation, testing, and developer operations.
Largest current source with strong distribution and engagement signals.