Ask me what skills you need
What are you building?
Tell me what you're working on and I'll find the best agent skills for you.
重要数据同步工具。通过云服务器中转站在多台电脑间同步 Claude Code 关键配置(skills、hooks、记忆库、skill-factory),GitHub 作为大版本归档。支持 init/pull/push/backup/status 五个子命令。
通过云服务器 bare repo 中转,在多台电脑之间增量同步 Claude Code 的关键数据资产,GitHub 作为大版本归档备份。
电脑A ←──(pull/push)──→ 服务器 relay (最新最全) ←──(pull/push)──→ 电脑B
│
(backup: 大版本归档)
↓
GitHub (私有仓库)
仓库注册表和服务器信息存放在独立文件中,添加/修改仓库无需编辑本 SKILL.md:
配置文件:sync-registry.md(与本文件同目录)
读取方式:执行前先读取 sync-registry.md,解析仓库列表和服务器信息。如果配置文件不存在或格式异常,报错并提示用户检查。
用户说以下任一触发词时启动本 skill:
/data-sync启动后,首先判断用户意图,路由到对应子命令:
用户请求进来
│
├─ "init" / "初始化" / "新电脑配置"
│ → Init 子命令(新电脑首次配置)
│
├─ "pull" / "拉取" / "同步到本机" / 未指定(默认)
│ → Pull 子命令
│
├─ "push" / "推送" / "上传"
│ → Push 子命令
│
├─ "backup" / "归档" / "大版本" / "推到GitHub"
│ → Backup 子命令
│
└─ "status" / "状态" / "检查"
→ Status 子命令
如果用户意图不明确,展示子命令菜单让用户选择。
场景:新电脑首次使用,需要从服务器克隆全部仓库并配置环境。
步骤 1:检查前置条件
# 检查 git 是否安装
git --version
# 检查 SSH 连接
npx skills add LeoYeAI/openclaw-master-skills --skill data-syncHow clear and easy to understand the SKILL.md instructions are, rated from 1 to 5.
Clear and well structured, with only minor parts that might need a second read.
How directly an agent can act on the SKILL.md instructions, rated from 1 to 5.
Mostly actionable with clear steps; only a few small gaps remain.