Install
openclaw skills install junmopho-soul-transferBackup and restore all agent files and configurations to fully migrate this agent with automatic path mapping and integrity verification.
openclaw skills install junmopho-soul-transfer"Change the body, keep the soul completely intact."
This skill performs 100% local backup and restore for any OpenClaw agent. No cloud services, no third-party dependencies - everything stays on your machine.
Before backup, the skill analyzes exactly what files exist:
# 1. Find OpenClaw state directory
# 2. Find workspace directory
# 3. Scan ALL subdirectories recursively
| Type | Files/Directories |
|---|---|
| Identity | SOUL.md, IDENTITY.md, USER.md, AGENTS.md, HEARTBEAT.md, TOOLS.md |
| Memory | memory//*, self-improving//, proactive/**/ |
| Skills | skills/**/* |
| Config | openclaw.json, config.yaml, .env |
| Credentials | credentials//*, tokens//* |
| Plugins | extensions//*, plugins//* |
| Agents | agents/**/* |
| Sessions | sessions/**/* |
| Channels | telegram//*, discord//, weixin/**/, whatsapp/**/* |
| Cron | cron//*, scheduled//* |
| Database | */.db, **/.sqlite, /*.sqlite3, qmd// |
| Logs | (excluded by default) |
| Cache | (excluded - regenerated automatically) |
# Detect OS type
detect_linux() { uname == "Linux" && ! grep -q Microsoft /proc/version; }
detect_macos() { uname == "Darwin"; }
detect_windows() { uname == *"MINGW"* || uname == *"CYGWIN"*; }
detect_docker() { grep -q docker /proc/1/cgroup 2>/dev/null; }
| Environment | State Dir | Workspace Dir |
|---|---|---|
| Linux | ~/.openclaw/ | ~/workspace/ |
| macOS | ~/.openclaw/ | ~/workspace/ |
| Docker | /home/app/.openclaw/ | /workspace/ |
| 飞牛 NAS | ~/trim.openclaw/data/home/.openclaw/ | ~/trim.openclaw/data/workspace/ |
| Windows | %USERPROFILE%/.openclaw/ | %USERPROFILE%/workspace/ |
1. Ask user: "Where should I save the backup?"
- Accept: directory path or full filename.zip
2. Analyze current environment
- Scan all OpenClaw directories
- Build complete file manifest with SHA256 checksums
3. Create ZIP archive:
zip -r <output.zip> <files> -x "*.log" "*/cache/*" "*/node_modules/*"
4. Generate backup manifest:
- File list with checksums
- Environment info (OS, OpenClaw version, timestamp)
- Original paths mapping
5. Verify ZIP integrity:
zip -T <output.zip>
6. Report:
- Backup location
- Total size
- File count
- Checksums
# Create backup with verification
BACKUP_DIR="${1:-~/backups}"
TIMESTAMP=$(date +%Y%m%d_%H%M%S)
BACKUP_FILE="$BACKUP_DIR/agent-backup-$TIMESTAMP.zip"
mkdir -p "$BACKUP_DIR"
# Find all OpenClaw files and package them
zip -r "$BACKUP_FILE" \
~/.openclaw/ \
~/workspace/ \
-x "*.log" \
-x "*/cache/*" \
-x "*/node_modules/*" \
-x "*/.git/*" \
-x "*/completions/*"
# Generate manifest
cat > "$BACKUP_DIR/manifest-$TIMESTAMP.json" << EOF
{
"version": "1.0.2",
"timestamp": "$TIMESTAMP",
"files": [],
"checksums": {},
"environment": "$(uname -a)"
}
EOF
zip -m "$BACKUP_FILE" "$BACKUP_DIR/manifest-$TIMESTAMP.json"
1. Locate backup ZIP
- Ask user if not provided
2. Verify ZIP integrity:
unzip -t <backup.zip>
3. Analyze new environment:
- Detect OS type
- Find OpenClaw installation
- Determine correct paths
4. Safety check:
- Ask user: "This will replace current configuration. Continue?"
- Create safety backup: ~/.soul-transfer-backup-<timestamp>
5. Stop gateway (user confirmation required)
6. Extract ZIP:
unzip -o <backup.zip> -d ~
7. Path translation (if different environment):
- Read manifest
- Map old paths to new paths
- Update openclaw.json if needed
8. Reinstall dependencies:
cd <workspace>
npm install --silent
9. Restart gateway
10. Verify soul transfer:
Ask agent questions to confirm identity
# Verify ZIP integrity
unzip -t <backup.zip>
if [ $? -ne 0 ]; then
echo "ERROR: Backup file is corrupted"
exit 1
fi
# Create safety backup
SAFETY_DIR=~/.soul-transfer-backup-$(date +%Y%m%d_%H%M%S)
mkdir -p "$SAFETY_DIR"
cp -r ~/.openclaw "$SAFETY_DIR/" 2>/dev/null
cp -r ~/workspace "$SAFETY_DIR/" 2>/dev/null
# Extract backup
unzip -o <backup.zip> -d ~
# Update permissions
chmod -R 755 ~/.openclaw/
chmod -R 755 ~/workspace/
# Reinstall npm packages
cd ~/workspace && npm install --silent 2>/dev/null
| Feature | Description |
|---|---|
| ZIP Verification | unzip -t validates archive integrity |
| SHA256 Checksums | Every file has checksum for tamper detection |
| Safety Backup | Current state backed up before any overwrite |
| Rollback | Can restore from safety backup if anything fails |
| Path Mapping | Automatic translation between environments |
| Dry Run | Preview what will happen without making changes |
| Exclusion Lists | Cache, logs, node_modules excluded by default |
| Feature | Description |
|---|---|
| 100% Local | No network requests, no cloud upload |
| Integrity Check | SHA256 checksums detect corruption/tampering |
| Credential Safety | All credentials included (encrypted if stored) |
| No Third-Party | Only uses standard tools: zip, tar, sha256sum |
Agent "Soul" = Everything that makes this agent ITSELF:
├── Identity
│ ├── SOUL.md
│ ├── IDENTITY.md
│ ├── USER.md
│ ├── AGENTS.md
│ ├── HEARTBEAT.md
│ └── TOOLS.md
│
├── Memory
│ ├── memory/
│ │ ├── user/
│ │ ├── monthlydailylog/
│ │ ├── projects/
│ │ └── setup.md
│ ├── self-improving/
│ │ ├── memory.md
│ │ ├── corrections.md
│ │ ├── index.md
│ │ └── ...
│ └── proactive/
│ ├── memory.md
│ ├── session-state.md
│ └── ...
│
├── Skills
│ └── skills/
│
├── Configuration
│ ├── .openclaw/
│ │ ├── openclaw.json
│ │ ├── credentials/
│ │ ├── extensions/
│ │ ├── agents/
│ │ ├── sessions/
│ │ └── ...
│ └── .env
│
├── Database
│ └── db/
│
└── Channels
└── (WeChat, Telegram, Discord sessions)
| Type | Reason |
|---|---|
*.log | Regenerated automatically |
*/cache/* | Regenerated automatically |
*/node_modules/* | Reinstalled via npm install |
*/.git/* | Version control, not part of agent |
*/completions/* | API cache, regenerated |
> backup
User: Where should I save the backup?
User: /mnt/backup/agent.zip
Creating backup...
Backup created: /mnt/backup/agent.zip (1.2 GB)
Verification: OK
soul-transfer backup --destination /mnt/backup/my-agent.zip
soul-transfer restore --source /mnt/backup/my-agent.zip
soul-transfer verify --source /mnt/backup/my-agent.zip
soul-transfer restore --dry-run --source /mnt/backup/my-agent.zip
After restore, confirm "soul" is intact:
Correct answers = successful soul transfer.
npm install after restorezip command (standard on most systems)sha256sum or shasum (for checksums)bash or compatible shellAll requirements are available by default on Linux, macOS, and Windows Subsystem for Linux (WSL).