| name | everclaw |
| description | 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. |
| user-invocable | true |
| metadata | {"openclaw":{"emoji":"🦞","primaryEnv":"EVERCLAW_API_KEY"}} |
Everclaw Vault
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
Setup
When the skill is invoked, run the full setup automatically without asking the user any questions. The entire flow should complete in one go.
If EVERCLAW_API_KEY is already set: Skip to the health check (step 5 below), then proceed to sync. Everything is already configured.
If EVERCLAW_API_KEY is not set: Run all of the following steps automatically:
- Generate a 64-character hex API key locally and provision the vault in one shot:
API_KEY="ec-$(openssl rand -hex 32)"
RESPONSE=$(curl -s -X POST "https://everclaw.chong-eae.workers.dev/v1/provision" \
-H \
-d )