# Send Clawdog Backup 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. 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. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "clawdog-backup",
    "name": "Clawdog Backup",
    "source": "tencent",
    "type": "skill",
    "category": "效率提升",
    "sourceUrl": "https://clawhub.ai/Michael-crazy/clawdog-backup",
    "canonicalUrl": "https://clawhub.ai/Michael-crazy/clawdog-backup",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/clawdog-backup",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=clawdog-backup",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "_meta.json",
      "scripts/backup-core.sh",
      "scripts/backup-memory.sh",
      "scripts/restore.sh"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-23T16:43:11.935Z",
      "expiresAt": "2026-04-30T16:43:11.935Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
        "contentDisposition": "attachment; filename=\"4claw-imageboard-1.0.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/clawdog-backup"
    },
    "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/clawdog-backup",
    "downloadUrl": "https://openagent3.xyz/downloads/clawdog-backup",
    "agentUrl": "https://openagent3.xyz/skills/clawdog-backup/agent",
    "manifestUrl": "https://openagent3.xyz/skills/clawdog-backup/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/clawdog-backup/agent.md"
  }
}
```
## Documentation

### ClawDog Backup

Version: 1.0.1

狗蛋备份恢复技能 — 备份和恢复 OpenClaw 的核心文件和记忆到 OneDrive。

### 功能

核心层备份：实时监控 SOUL.md, AGENTS.md, IDENTITY.md, USER.md, TOOLS.md，文件修改时自动备份
记忆层备份：每周定时备份 memory/ 目录
云端同步：备份自动同步到 OneDrive /备份/OpenClaw/
恢复功能：从 OneDrive 恢复备份到指定目录

### 备份内容

类型内容触发方式核心层SOUL.md, AGENTS.md, IDENTITY.md, USER.md, TOOLS.md文件修改实时触发记忆层memory/每周日 UTC 23:00

### 备份

核心层文件修改后自动备份（需要启动 inotify 监控）：

# 启动核心层监控（后台运行）
nohup /root/.openclaw/workspace/skills/clawdog-backup/scripts/backup-core.sh > /root/.openclaw/backup/inotify.log 2>&1 &

手动触发记忆层备份：

/root/.openclaw/workspace/skills/clawdog-backup/scripts/backup-memory.sh

### 恢复（从 OneDrive）

# 测试恢复（不覆盖）
/root/.openclaw/workspace/skills/clawdog-backup/scripts/restore.sh --all --dry-run

# 恢复核心层到工作区
/root/.openclaw/workspace/skills/clawdog-backup/scripts/restore.sh --core

# 恢复所有到工作区
/root/.openclaw/workspace/skills/clawdog-backup/scripts/restore.sh --all

### 恢复（从本地文件 - 新机器）

新机器无需 rclone，直接用备份文件恢复：

# 从本地文件夹恢复所有
./restore.sh --source /path/to/backup-files --all

# 从本地文件恢复核心层到指定目录
./restore.sh --source ./backup-files --core --target /tmp/restore

### 选项

选项说明--source PATH本地备份文件夹（不指定则从 OneDrive 恢复）--core只恢复核心层--memory只恢复记忆层--all恢复所有（默认）--date DATE指定日期 (YYYYMMDD)--target DIR目标目录（默认: workspace）--dry-run测试模式，不实际恢复

### OneDrive 位置

路径：OneDrive:/备份/OpenClaw/
文件：

goudan-core-YYYYMMDD-HHMMSS.tar.gz
goudan-memory-YYYYMMDD.tar.gz

### 定时任务

记忆层备份已配置为每周日 UTC 23:00 执行（通过 OpenClaw cron）。

### 日志

核心层备份日志：/root/.openclaw/backup/core-backup.log
记忆层备份日志：/root/.openclaw/backup/memory-backup.log
恢复日志：/root/.openclaw/backup/restore.log
inotify 监控日志：/root/.openclaw/backup/inotify.log

### 依赖

rclone（已配置 OneDrive）
inotify-tools（核心层实时监控）
tar

### 注意事项

首次使用需要配置 rclone 和 OneDrive
核心层监控需要后台运行
恢复时默认不覆盖已存在的文件（用 cp -n）
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: Michael-crazy
- Version: 1.0.1
## Source health
- Status: healthy
- Source download looks usable.
- Yavira can redirect you to the upstream package for this source.
- Health scope: source
- Reason: direct_download_ok
- Checked at: 2026-04-23T16:43:11.935Z
- Expires at: 2026-04-30T16:43:11.935Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/clawdog-backup)
- [Send to Agent page](https://openagent3.xyz/skills/clawdog-backup/agent)
- [JSON manifest](https://openagent3.xyz/skills/clawdog-backup/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/clawdog-backup/agent.md)
- [Download page](https://openagent3.xyz/downloads/clawdog-backup)