用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/dvcrn/openclaw-skills-marketplace --skill openclaw-sync命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
监控 OpenClaw GitHub 版本更新,获取最新版本发布说明,翻译成中文, 并推送到 Telegram 和 Feishu。用于:(1) 定时检查版本更新 (2) 推送版本更新通知 (3) 生成中文版发布说明
The philosophical layer for AI agents. Maps behavior to Spinoza's 48 affects, calculates persistence scores, and generates geometric self-reports. Give your agent a soul.
Order food/drinks (点餐) on an Android device paired as an OpenClaw node. Uses in-app menu and cart; add goods, view cart, submit order (demo, no real payment).
基于 SOC 职业分类
正在显示 SKILL.md
| name | openclaw-sync |
| description | OpenClaw 数据轻量同步技能。基于 rclone + cron,支持 70+ 云存储后端, 定时备份 workspace 数据,资源占用极低。 |
基于 rclone + cron 的数据备份方案,定时同步 workspace 到云端。
# 自动安装
curl https://rclone.org/install.sh | sudo bash
# 或手动安装
sudo apt-get install rclone
# 交互式配置
rclone config
# 按照提示选择云服务商,填写密钥
cd skills/openclaw-sync
# 编辑配置
vim config/sync-config.json
{
"remote": "myqiniu", // rclone 配置的 remote 名称
"bucket": "mybucket", // 存储桶名称
"prefix": "openclaw-backup", // 云端目录前缀
"interval": "5" // 同步间隔(分钟)
}
# 手动测试
bash scripts/sync.sh
# 添加到 cron(推荐)
bash scripts/setup-cron.sh
skills/openclaw-sync/
├── config/
│ ├── sync-config.json # 同步配置
│ └── sync-list.txt # 文件过滤规则
├── scripts/
│ ├── sync.sh # 同步脚本
│ ├── setup-cron.sh # 安装定时任务
│ └── status.sh # 查看状态
├── logs/
│ └── sync.log # 同步日志
└── SKILL.md # 本文件
{
"remote": "myqiniu", // rclone remote 名称
"bucket": "mybucket", // 存储桶
"prefix": "openclaw-backup", // 云端前缀
"interval": "5", // 同步间隔(分钟)
"syncDelete": false // 是否同步删除
}
# 包含规则(+开头)
+MEMORY.md
+memory/
+IDENTITY.md
+USER.md
+SOUL.md
+AGENTS.md
+TOOLS.md
+HEARTBEAT.md
+BOOTSTRAP.md
+README.md
+skills/
+tools/
# 排除规则(-开头)
-.git/**
-node_modules/**
-*.tmp
-*.log
-.DS_Store
| 命令 | 说明 |
|---|---|
bash scripts/sync.sh | 手动执行同步 |
bash scripts/setup-cron.sh | 安装定时任务 |
bash scripts/remove-cron.sh | 移除定时任务 |
bash scripts/status.sh | 查看同步状态 |
tail -f logs/sync.log | 查看实时日志 |
配置方法:rclone config 交互式配置
rclone listremotes # 列出已配置的 remote
rclone ls myqiniu:mybucket # 测试连接
tail -50 logs/sync.log
bash scripts/sync.sh --dry-run # 模拟运行,不实际上传
MIT License