OpenClaw Workspace Backup

Created: 13 March 2026, 20:00 (Europe/Dublin)

Backup Contents (77 MB total)

Excludes: node_modules, .venv, .next/cache, .vercel/output, webpack cache (all reinstallable)

Download Parts

Part 1 (24 MB) Part 2 (24 MB) Part 3 (24 MB) Part 4 (5.4 MB)

Reassemble & Restore

# 1. Download all 4 parts to a folder, then:
cat backup-part-aa backup-part-ab backup-part-ac backup-part-ad > openclaw-backup-20260313.zip

# 2. Extract
unzip openclaw-backup-20260313.zip -d ~/.openclaw/

# 3. Reinstall dependencies
cd ~/.openclaw/workspace && npm install

# 4. Restore client project dependencies as needed
# cd clients/irelandify && npm install
# etc.

Quick Single-Command Restore

# From the directory containing downloaded parts:
cat backup-part-* > backup.zip && unzip backup.zip -d ~/.openclaw/ && cd ~/.openclaw/workspace && npm install