← Back to Skills Marketplace
Openclaw Backup
by
meowlegemy-sudo
· GitHub ↗
· v1.0.0
301
Downloads
0
Stars
0
Active Installs
1
Versions
Install in OpenClaw
/install finn-openclaw-backup
Description
备份 OpenClaw 关键配置到桌面带时间戳的文件夹
README (SKILL.md)
OpenClaw Backup Skill
备份 OpenClaw 的关键文件到桌面。
使用方法
运行备份脚本:
~/.openclaw/skills/openclaw-backup/scripts/backup.sh
或手动备份:
DATE=$(date +%Y%m%d-%H%M%S)
BACKUP_DIR="$HOME/Desktop/OpenClawBackup-$DATE"
mkdir -p "$BACKUP_DIR"
cp ~/.openclaw/openclaw.json "$BACKUP_DIR/"
cp -r ~/.openclaw/agents "$BACKUP_DIR/"
cp -r ~/.openclaw/credentials "$BACKUP_DIR/"
cp -r ~/.openclaw/cron "$BACKUP_DIR/"
echo "Backup created: $BACKUP_DIR"
备份内容
- openclaw.json (主配置)
- agents/ (所有 agent 配置)
- credentials/ (API 密钥)
- cron/ (定时任务)
输出位置
~/Desktop/OpenClawBackup-YYYYMMDD-HHMMSS/
Usage Guidance
This skill is coherent and contains only a small shell script that copies OpenClaw config files to ~/Desktop/OpenClawBackup-YYYYMMDD-HHMMSS. Before running it, consider: (1) it will copy the credentials/ directory (API keys) in plaintext to your Desktop — if you want to keep secrets safe, either exclude credentials, encrypt the backup (e.g., tar+gpg), or store the backup in a secure location; (2) review the script yourself (it only runs mkdir and cp) and run it in a safe account (do not run as root); (3) if you need automated backups, add rotation and secure storage rather than leaving copies on the Desktop; (4) if you see any future versions that add network commands (curl, scp, wget) or unexpected binaries, do not run them until you verify where data is being sent. Installing this skill as-is is internally consistent, but treat the resulting backups as sensitive material and handle accordingly.
Capability Analysis
Type: OpenClaw Skill
Name: finn-openclaw-backup
Version: 1.0.0
The skill is designed to perform a local backup of OpenClaw configuration files, including credentials and agent settings, to a timestamped folder on the user's desktop. The actions performed in `scripts/backup.sh` and described in `SKILL.md` are transparent, local-only, and align perfectly with the stated purpose of the skill.
Capability Assessment
Purpose & Capability
The name/description (backup OpenClaw config to Desktop) matches the included script and SKILL.md. The files and paths the skill reads (~/.openclaw/openclaw.json, agents/, credentials/, cron/) are exactly what a backup tool for OpenClaw would need.
Instruction Scope
Instructions are narrowly scoped to creating a local backup on the user's Desktop and do not reference unrelated files, network endpoints, or environment variables. However, the instructions and script copy the credentials/ directory unmodified to the Desktop, which exposes secrets in plaintext — this is expected for a simple backup but is a security/privacy concern that users should be aware of.
Install Mechanism
No install spec; this is an instruction-only skill with one small bundled shell script. Nothing is downloaded or written to system locations beyond creating the backup folder on the Desktop.
Credentials
The skill requests no environment variables or credentials. It does, however, read and copy sensitive local files (~/.openclaw/credentials). That access is proportionate to the stated backup purpose, but copying secrets to an unprotected Desktop folder may be inappropriate for users who require confidentiality.
Persistence & Privilege
always is false and the skill does not modify other skills or system settings. There is no persistent background service or elevated privilege requested.
How to Use
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install finn-openclaw-backup - After installation, invoke the skill by name or use
/finn-openclaw-backup - Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.0
- Initial release of openclaw-backup skill.
- Backs up key OpenClaw files and folders (openclaw.json, agents, credentials, cron) to a time-stamped folder on the desktop.
- Provides both an automated backup script and manual backup instructions.
Metadata
Frequently Asked Questions
What is Openclaw Backup?
备份 OpenClaw 关键配置到桌面带时间戳的文件夹. It is an AI Agent Skill for Claude Code / OpenClaw, with 301 downloads so far.
How do I install Openclaw Backup?
Run "/install finn-openclaw-backup" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is Openclaw Backup free?
Yes, Openclaw Backup is completely free (open-source). You can download, install and use it at no cost.
Which platforms does Openclaw Backup support?
Openclaw Backup is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created Openclaw Backup?
It is built and maintained by meowlegemy-sudo (@meowlegemy-sudo); the current version is v1.0.0.
More Skills