← All skills
Tencent SkillHub · Other

OpenClaw Backup Automation

Automated backup for OpenClaw instances. Backs up agents, skills, cron jobs, and memory. Supports local tar archives. Credentials, periodic scheduling, and g...

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Automated backup for OpenClaw instances. Backs up agents, skills, cron jobs, and memory. Supports local tar archives. Credentials, periodic scheduling, and g...

⬇ 0 downloads ★ 0 stars Unverified but indexed

Install for OpenClaw

Known item issue.

This item's current download entry is known to bounce back to a listing or homepage instead of returning a package file.

Quick setup
  1. Open the source page and confirm the package flow manually.
  2. Review SKILL.md if you can obtain the files.
  3. Treat this source as manual setup until the download is verified.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Manual review
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
SKILL.md, scripts/backup.js

Validation

  • Open the source listing and confirm there is a real package or setup artifact available.
  • Review SKILL.md before asking your agent to continue.
  • Treat this source as manual setup until the upstream download flow is fixed.

Install with your agent

Agent handoff

Use the source page and any available docs to guide the install because the item currently does not return a direct package file.

  1. Open the source page via Open source listing.
  2. If you can obtain the package, extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the source page and extracted files.
New install

I tried to install a skill package from Yavira, but the item currently does not return a direct package file. Inspect the source page and any extracted docs, then tell me what you can confirm and any manual steps still required.

Upgrade existing

I tried to upgrade a skill package from Yavira, but the item currently does not return a direct package file. Compare the source page and any extracted docs with my current installation, then summarize what changed and what manual follow-up I still need.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.0.0

Documentation

ClawHub primary doc Primary doc: SKILL.md 16 sections Open source page

Backup Automation

Automated backup system for OpenClaw instances.

What It Does (Default)

✅ 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)

Run Backup

node skills/backup-automation/scripts/backup.js

List Backups

node skills/backup-automation/scripts/backup.js list

Restore

node skills/backup-automation/scripts/backup.js restore <backup-name>

Check Status

node skills/backup-automation/scripts/backup.js status

First Use Suggestion

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."

Enable Credentials Backup

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

Enable Periodic Backup (Daily)

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

Enable Git Sync

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)

When to Suggest

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?"

What Gets Backed Up

ComponentDefaultOpt-InAgents✅-Skills✅-Cron configs✅-Memory✅-Core configs✅-Credentials❌✅Periodic backup❌✅Git sync❌✅

Full Restore

# Extract backup tar -xzf ~/backups/<backup-name>.tar.gz -C ~/ # Restart gateway openclaw gateway restart

Agent Only Restore

# Remove agent openclaw agents delete <agent-name> # Restore tar -xzf ~/backups/<backup-name>.tar.gz -C ~/ --overwrite # Restart openclaw gateway restart

Configuration

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) };

Requirements

Node.js Bash Tar Git (optional for sync) Crontab (optional for auto backup)

Category context

Long-tail utilities that do not fit the current primary taxonomy cleanly.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
1 Docs1 Scripts
  • SKILL.md Primary doc
  • scripts/backup.js Scripts