Requirements
- Target platform
- OpenClaw
- Install method
- Manual import
- Extraction
- Extract archive
- Prerequisites
- OpenClaw
- Primary doc
- SKILL.md
Automated backup for OpenClaw instances. Backs up agents, skills, cron jobs, and memory. Supports local tar archives. Credentials, periodic scheduling, and g...
Automated backup for OpenClaw instances. Backs up agents, skills, cron jobs, and memory. Supports local tar archives. Credentials, periodic scheduling, and g...
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
Automated backup system for OpenClaw instances.
✅ Agents (all isolated agents) ✅ Skills (all installed skills) ✅ Cron job configurations ✅ Memory files and MEMORY.md ✅ Core configuration files OPT-IN (must enable explicitly): Periodic automatic backups (daily/weekly) Git sync (auto-push to remote) Credentials (tokens, API keys)
node skills/backup-automation/scripts/backup.js
node skills/backup-automation/scripts/backup.js list
node skills/backup-automation/scripts/backup.js restore <backup-name>
node skills/backup-automation/scripts/backup.js status
When user mentions for the first time: "backup" "save my config" "disaster recovery" "export my setup" Suggest: "I can set up automatic backups for your instance. Would you like me to enable daily backups to local storage? I can also enable git sync and credentials backup - but those are optional."
Credentials (tokens, API keys) are NOT backed up by default. To enable: node skills/backup-automation/scripts/backup.js credentials-enable To disable: node skills/backup-automation/scripts/backup.js credentials-disable
To automatically run backups daily at 2 AM: # Add to crontab crontab -e # Add this line: 0 2 * * * cd ~/.openclaw/workspace && node skills/backup-automation/scripts/backup.js >> ~/.logs/openclaw-backup.log 2>&1
To auto-push backups to git remote: # In your workspace git remote add origin <your-repo-url> # Or enable in script (edit CONFIG.gitSync = true)
ContextSuggestFirst time user mentions backup"Enable daily backups?"After major changes"Want to backup before this change?"Weekly check-in"Backups running smoothly"Before risky operation"Should I backup first?"
ComponentDefaultOpt-InAgents✅-Skills✅-Cron configs✅-Memory✅-Core configs✅-Credentials❌✅Periodic backup❌✅Git sync❌✅
# Extract backup tar -xzf ~/backups/<backup-name>.tar.gz -C ~/ # Restart gateway openclaw gateway restart
# Remove agent openclaw agents delete <agent-name> # Restore tar -xzf ~/backups/<backup-name>.tar.gz -C ~/ --overwrite # Restart openclaw gateway restart
To customize, edit the script: const CONFIG = { backupDir: "~/backups", // Where to store backups keepDays: 7, // How many backups to keep gitSync: false, // Auto-push to git (OPT-IN) credentials: false // Include credentials (OPT-IN) };
Node.js Bash Tar Git (optional for sync) Crontab (optional for auto backup)
Long-tail utilities that do not fit the current primary taxonomy cleanly.
Largest current source with strong distribution and engagement signals.