# Send Elegant Sync to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "elegant-sync",
    "name": "Elegant Sync",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/russellfei/elegant-sync",
    "canonicalUrl": "https://clawhub.ai/russellfei/elegant-sync",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/elegant-sync",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=elegant-sync",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "index.js",
      "README.md",
      "SKILL.md",
      "_meta.json"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "elegant-sync",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-02T20:56:49.492Z",
      "expiresAt": "2026-05-09T20:56:49.492Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=elegant-sync",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=elegant-sync",
        "contentDisposition": "attachment; filename=\"elegant-sync-1.0.4.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "elegant-sync"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/elegant-sync"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/elegant-sync",
    "downloadUrl": "https://openagent3.xyz/downloads/elegant-sync",
    "agentUrl": "https://openagent3.xyz/skills/elegant-sync/agent",
    "manifestUrl": "https://openagent3.xyz/skills/elegant-sync/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/elegant-sync/agent.md"
  }
}
```
## Documentation

### Elegant Sync

优雅安全的 OpenClaw 配置同步工具

### 功能

🏷️ 版本化备份 - 每次同步创建 git tag，可回滚任意版本
🔒 安全优先 - 不上传配置文件、密钥、敏感信息
📂 .gitignore 支持 - 使用项目 .gitignore 规则选择
🎯 选择性同步 - 可选择备份哪些目录
💾 灾难恢复 - 自动本地备份，支持一键恢复
🌿 多实例独立分支 - 每个设备一个分支，互不干扰

### 备份结构

mini-claw/
├── main/         # 介绍文档
├── omen16/       # 设备1
├── omen16-2/     # 设备2
└── macbook/      # 设备3

### 备份内容

目录/文件说明workspace/memory/⭐ 最重要！个人记忆，无价workspace/AGENTS.md代理规范workspace/IDENTITY.md身份信息workspace/USER.md用户信息workspace/SOUL.md灵魂配置workspace/TOOLS.md工具配置workspace/HEARTBEAT.md心跳配置workspace/skills/自定义技能

### 不备份（安全）

目录/文件原因.env含 API 密钥openclaw.json含配置密钥credentials/凭证信息.git/Git 仓库logs/日志文件media/媒体文件

### 1. 配置环境变量

# 在 ~/.openclaw/.backup.env 中配置
BACKUP_REPO=https://github.com/你的用户名/你的仓库名
BACKUP_TOKEN=ghp_xxx
INSTANCE_ID=你的主机名

### 2. 首次配置提示

运行 /sync 时会自动检测是否已配置，如果没有配置会提示。

### 当前实例

此机器实例名：opi5b（主机名）

### 其他实例配置

实例INSTANCE_ID配置示例Orange Piopi5b默认MacmacbookINSTANCE_ID=macbookVPSvps-1INSTANCE_ID=vps-1

### 场景：新机器或重装系统

1. 安装 OpenClaw

# 在新机器上安装 OpenClaw

2. 克隆备份

git clone https://github.com/你的用户名/你的仓库名

3. 查看分支

cd mini-claw
git branch -a

4. 切换并恢复指定实例

# 例如恢复 omen16
git checkout omen16
cp -r omen16/* ~/.openclaw/workspace/

5. 更新 Instance ID

在新机器的 ~/.openclaw/.backup.env 中更新：

INSTANCE_ID=new-machine-name

6. 验证

node elegant-sync/index.js status

### Memory 是最宝贵的资产

每个实例的 memory 都是无价的
备份到私有仓库 (mini-claw)
确保无损保留

### 更新日志

2026-02-28 v1.0.1: 修复多实例备份，每个设备独立分支
2026-02-28 v1.0.0: 初始版本
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: russellfei
- Version: 1.0.4
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-02T20:56:49.492Z
- Expires at: 2026-05-09T20:56:49.492Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/elegant-sync)
- [Send to Agent page](https://openagent3.xyz/skills/elegant-sync/agent)
- [JSON manifest](https://openagent3.xyz/skills/elegant-sync/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/elegant-sync/agent.md)
- [Download page](https://openagent3.xyz/downloads/elegant-sync)