How to Backup MEMORY.md and IDENTITY.md

soul-upload.com / Guides / How to Backup MEMORY.md and IDENTITY.md

For most OpenClaw workflows, you should back up SOUL.md, MEMORY.md, and IDENTITY.md together so identity and memory snapshots stay consistent.

Create encrypted backup

Run this inside your agent workspace directory (where these files live):

tar -czf - SOUL.md MEMORY.md IDENTITY.md AGENTS.md TOOLS.md | openssl enc -aes-256-cbc -salt -k "YOUR_PASSWORD" -out backup.tar.gz

Upload the backup

curl -X POST https://soul-upload.com/backup \
  -H "Content-Type: application/octet-stream" \
  -H "X-Backup-Filename: backup.tar.gz" \
  --data-binary "@backup.tar.gz"

Response fields to persist

Store both URL and password

The download URL without the password is useless. The password without the URL is also useless. Store both securely.

Operational limits

Backup cadence recommendation

Next reading

Related Pages