Install
openclaw skills install claw-soul-backupStore encrypted OpenClaw workspace backups and restore them via token-secured API using claw-vault.com with local encryption and credential management.
openclaw skills install claw-soul-backupUse this skill to run encrypted workspace backups with Claw Vault.
backup_id and api_token as secrets.POST /backup.backup_id and api_token securely.Example:
curl -sS -X POST "https://api.claw-vault.com/backup" \
-F "file=@workspace-backup.tar.gz.enc;type=application/octet-stream"
After the initial backup, run daily updates with PUT /backup/<backup_id> using the same backup ID and API token.
Example:
curl -sS -X PUT "https://api.claw-vault.com/backup/$BACKUP_ID" \
-H "X-API-Token: $API_TOKEN" \
-F "file=@workspace-backup.tar.gz.enc;type=application/octet-stream"
Create a local script that:
PUT override endpoint.Run it daily (example: 03:00):
0 3 * * * /bin/bash /path/to/claw-vault-backup.sh >> /path/to/claw-vault-backup.log 2>&1