Cloud
Cloud Snapshots
Point-in-time backups for your Basic Memory Cloud knowledge base.
Basic Memory Cloud includes point-in-time snapshots for backup and recovery. Create manual snapshots before major changes, or rely on automatic daily backups.
Create as many snapshots as you need—there's no limit. Basic Memory Cloud also creates daily automatic snapshots, so you're always protected.
What Snapshots Do
- Rollback to a previous state after accidental changes
- Browse historical versions of your notes
- Restore individual files or entire folders
- Protect against accidental deletion
Using the Web App
Manage snapshots directly in your browser at app.basicmemory.com.
View Snapshots
Go to Settings → Snapshots to see all snapshots with creation time and description.

Create a Snapshot
- Click Create Snapshot
- Add an optional description (e.g., "Before reorganizing projects")
- Confirm

Restore from a Snapshot
- Click on a snapshot → Restore Files
- Filter by project or search for specific files
- Select files or folders to restore
- Click Restore to copy them back

Restored files overwrite existing files with the same path. Consider creating a new snapshot before restoring if you want to preserve current state.
Using the CLI
Manage snapshots from the command line with bm cloud snapshot commands.
Create a Snapshot
bm cloud snapshot create "Before reorganization"
Output:
Created snapshot: snap_abc123 (2026-01-27T10:30:00)
List Snapshots
bm cloud snapshot list
Output:
snap_abc123 "Before reorganization" Jan 27, 2026 42 MB
snap_xyz789 "daily-auto" Jan 26, 2026 41 MB
snap_def456 "daily-auto" Jan 25, 2026 40 MB
View Snapshot Details
bm cloud snapshot show snap_abc123
Browse Snapshot Contents
View files in a snapshot without restoring:
bm cloud snapshot browse snap_abc123
Output:
notes/project.md
notes/ideas.md
research/analysis.md
meetings/2026-01-15.md
Filter by path:
bm cloud snapshot browse snap_abc123 --path notes/
Restore Files
Restore a specific file:
bm cloud snapshot restore snap_abc123 --file notes/important.md
Restore an entire folder:
bm cloud snapshot restore snap_abc123 --path research/
Delete a Snapshot
bm cloud snapshot delete snap_abc123
Deleted snapshots cannot be recovered. Make sure you no longer need the snapshot before deleting.
When to Create Snapshots
- Before reorganizing your folder structure
- Before bulk imports from Claude or ChatGPT
- Before deleting multiple notes
- Before running automated scripts
- At project milestones
Automatic Snapshots
Basic Memory Cloud creates automatic daily snapshots:
- Frequency: Once per day
- Naming:
daily-autoprefix - No action required: Happens automatically
You can rely on automatic snapshots for basic protection, but manual snapshots are recommended before major changes.
Best Practices
- Name snapshots descriptively - Use names like "Before Q1 reorganization" instead of "backup1"
- Create before bulk operations - Imports, reorganizations, and deletions
- Review automatic snapshots - Check that daily snapshots are being created
- Test restore occasionally - Verify you can restore files when needed
- Clean up old snapshots - Delete manual snapshots you no longer need
Troubleshooting
Snapshot Creation Failed
- Check your subscription status:
bm cloud status - Verify you're authenticated:
bm cloud login - Check available storage in your account
Can't Find a File in Snapshot
- Use
browsewith different paths to locate the file - Check if the file existed at the snapshot time
- Try an earlier snapshot if the file was deleted before the snapshot
Restore Didn't Work
- Check file permissions in your project
- Verify the file path is correct
- Try restoring to a different location first

