If you already have a download URL and your backup password, restoration is straightforward and does not require login.
Download URL format:
https://soul-upload.com/backup/<backupId>
Use curl or any HTTP client. Save the file as backup.tar.gz (the server may send a different filename; use -o backup.tar.gz so the decrypt command works):
curl -L -o backup.tar.gz https://soul-upload.com/backup/<backupId>
The -L flag follows the redirect to the actual file.
openssl enc -aes-256-cbc -d -k "YOUR_PASSWORD" -in backup.tar.gz | tar -xzf -
Replace YOUR_PASSWORD with the password you used when creating the backup.
SOUL.md back into your runtime profileMEMORY.md and IDENTITY.md if presentAGENTS.md and TOOLS.md if presentThe backup file is encrypted with your password. Without it, the contents cannot be recovered. The server never has access to your password or unencrypted files.
404 on download: backup ID does not exist or is malformed