Install
openclaw skills install syncSynchronize files and directories between local, remote, and cloud storage reliably.
openclaw skills install syncrsync src/ copies contents, rsync src copies the folder itself — this is the #1 cause of wrong directory structures-avz baseline: archive mode preserves permissions/timestamps, verbose shows progress, compress speeds transfers--delete only when you want destination to mirror source exactly — without it, deleted source files remain on destination--dry-run before any destructive sync — shows what would change without modifying anything--exclude flags: rsync -avz --exclude-from=.syncignore src/ dest/.git/, node_modules/, __pycache__/, .venv/, *.pyc, .DS_Store, Thumbs.db/logs/ excludes only top-level logs, logs/ excludes logs/ anywhererclone sync deletes destination files not in source; rclone copy only adds — use copy when unsurerclone config — never hardcode cloud credentials in scripts--dry-run first, then --progress for visual feedback during actual sync--s3-chunk-size 64M for large files to avoid timeoutsrsync -avzc uses checksums instead of size/time (slower but certain)rclone check source: dest: to compare without transferringrsync -avz src/ dest/ | tee sync.logunison dir1 dir2rsync -avz -e "ssh -i ~/.ssh/key" src/ user@host:dest/-e "ssh -p 2222"--partial --progress for large files over unreliable connections — allows resume on failure--delete repeatedly causes destination to accumulate deleted files forever--checksum for accuracy or sync NTP first