원클릭으로
simple-backup
Backup agent brain (workspace) and body (state) to local folder and optionally sync to cloud via rclone.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Backup agent brain (workspace) and body (state) to local folder and optionally sync to cloud via rclone.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Set up and use 1Password CLI (op). Use when installing the CLI, enabling desktop app integration, signing in (single or multi-account), or reading/injecting/running secrets via op.
A fast Rust-based headless browser automation CLI with Node.js fallback that enables AI agents to navigate, click, type, and snapshot pages via structured commands.
Persistent memory system for AI agents — remember facts, learn from experience, and track entities across sessions.
AI-powered PDF generator for legal docs, pitch decks, and reports. SAFEs, NDAs, term sheets, whitepapers. npx ai-pdf-builder. Works with Claude, Cursor, GPT, Copilot.
Creating algorithmic art using p5.js with seeded randomness and interactive parameter exploration. Use this when users request creating art using code, generative art, algorithmic art, flow fields, or particle systems. Create original algorithmic art rather than copying existing artists' work to avoid copyright violations.
Search and summarize papers from ArXiv. Use when the user asks for the latest research, specific topics on ArXiv, or a daily summary of AI papers.
| name | simple-backup |
| description | Backup agent brain (workspace) and body (state) to local folder and optionally sync to cloud via rclone. |
| metadata | {"openclaw":{"emoji":"💾","requires":{"bins":["rclone","gpg","tar","jq"]}}} |
A robust backup script that:
rclone (optional)Dependencies:
# macOS
brew install rclone gnupg jq
# Linux (Debian/Ubuntu)
sudo apt install rclone gnupg jq
# Linux (Fedora/RHEL)
sudo dnf install rclone gnupg jq
# Linux (Arch)
sudo pacman -S rclone gnupg jq
Password: Set encryption password (choose one):
~/.openclaw/credentials/backup.key (recommended)export BACKUP_PASSWORD="secret""password": "secret" to skill configCloud (Optional):
rclone config
simple-backup
By default, paths are auto-detected from ~/.openclaw/openclaw.json:
agents.defaults.workspace~/.openclaw (where config lives)<workspace>/BACKUPSFor non-standard setups, override any path in ~/.openclaw/openclaw.json:
{
"skills": {
"entries": {
"simple-backup": {
"config": {
"workspaceDir": "/custom/path/workspace",
"stateDir": "/custom/path/state",
"skillsDir": "/custom/path/skills",
"backupRoot": "/custom/path/backups",
"remoteDest": "gdrive:backups"
}
}
}
}
}
| Config Key | Env Var | Auto-Detected | Description |
|---|---|---|---|
workspaceDir | BRAIN_DIR | agents.defaults.workspace | Agent workspace |
stateDir | BODY_DIR | ~/.openclaw | OpenClaw state dir |
skillsDir | SKILLS_DIR | ~/openclaw/skills | Skills directory |
backupRoot | BACKUP_ROOT | <workspace>/BACKUPS | Local backup storage |
remoteDest | REMOTE_DEST | (none) | Rclone remote path |
maxDays | MAX_DAYS | 7 | Days to keep daily backups |
hourlyRetentionHours | HOURLY_RETENTION_HOURS | 24 | Hours to keep hourly |
password | BACKUP_PASSWORD | (none) | Encryption password |
Priority: Config file → Env var → Auto-detect