{
  "schemaVersion": "1.0",
  "item": {
    "slug": "simple-backup",
    "name": "Simple Backup",
    "source": "tencent",
    "type": "skill",
    "category": "效率提升",
    "sourceUrl": "https://clawhub.ai/VACInc/simple-backup",
    "canonicalUrl": "https://clawhub.ai/VACInc/simple-backup",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/simple-backup",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=simple-backup",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "package.json",
      "simple-backup.sh"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "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."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "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."
        },
        {
          "label": "Upgrade existing",
          "body": "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."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.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/simple-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."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/simple-backup",
    "agentPageUrl": "https://openagent3.xyz/skills/simple-backup/agent",
    "manifestUrl": "https://openagent3.xyz/skills/simple-backup/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/simple-backup/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "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."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "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."
      },
      {
        "label": "Upgrade existing",
        "body": "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."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Simple Backup",
        "body": "A robust backup script that:\n\nAuto-detects workspace and state directories from OpenClaw config\nAllows overrides for custom/non-standard setups\nCompresses & encrypts using GPG (AES256)\nPrunes old backups (Daily/Hourly retention)\nSyncs to cloud via rclone (optional)"
      },
      {
        "title": "Setup",
        "body": "Dependencies:\nbrew install rclone gnupg jq\n\n\n\nPassword: Set encryption password (choose one):\n\nFile: ~/.openclaw/credentials/backup.key (recommended)\nEnv: export BACKUP_PASSWORD=\"secret\"\nConfig: Add \"password\": \"secret\" to skill config\n\n\n\nCloud (Optional):\nrclone config"
      },
      {
        "title": "Usage",
        "body": "simple-backup"
      },
      {
        "title": "Auto-Detection",
        "body": "By default, paths are auto-detected from ~/.openclaw/openclaw.json:\n\nWorkspace: agents.defaults.workspace\nState: ~/.openclaw (where config lives)\nBackup root: <workspace>/BACKUPS"
      },
      {
        "title": "Custom Configuration",
        "body": "For non-standard setups, override any path in ~/.openclaw/openclaw.json:\n\n{\n  \"skills\": {\n    \"entries\": {\n      \"simple-backup\": {\n        \"config\": {\n          \"workspaceDir\": \"/custom/path/workspace\",\n          \"stateDir\": \"/custom/path/state\",\n          \"skillsDir\": \"/custom/path/skills\",\n          \"backupRoot\": \"/custom/path/backups\",\n          \"remoteDest\": \"gdrive:backups\"\n        }\n      }\n    }\n  }\n}"
      },
      {
        "title": "Configuration Reference",
        "body": "Config KeyEnv VarAuto-DetectedDescriptionworkspaceDirBRAIN_DIRagents.defaults.workspaceAgent workspacestateDirBODY_DIR~/.openclawOpenClaw state dirskillsDirSKILLS_DIR~/openclaw/skillsSkills directorybackupRootBACKUP_ROOT<workspace>/BACKUPSLocal backup storageremoteDestREMOTE_DEST(none)Rclone remote pathmaxDaysMAX_DAYS7Days to keep daily backupshourlyRetentionHoursHOURLY_RETENTION_HOURS24Hours to keep hourlypasswordBACKUP_PASSWORD(none)Encryption password\n\nPriority: Config file → Env var → Auto-detect"
      }
    ],
    "body": "Simple Backup\n\nA robust backup script that:\n\nAuto-detects workspace and state directories from OpenClaw config\nAllows overrides for custom/non-standard setups\nCompresses & encrypts using GPG (AES256)\nPrunes old backups (Daily/Hourly retention)\nSyncs to cloud via rclone (optional)\nSetup\n\nDependencies:\n\nbrew install rclone gnupg jq\n\n\nPassword: Set encryption password (choose one):\n\nFile: ~/.openclaw/credentials/backup.key (recommended)\nEnv: export BACKUP_PASSWORD=\"secret\"\nConfig: Add \"password\": \"secret\" to skill config\n\nCloud (Optional):\n\nrclone config\n\nUsage\nsimple-backup\n\nAuto-Detection\n\nBy default, paths are auto-detected from ~/.openclaw/openclaw.json:\n\nWorkspace: agents.defaults.workspace\nState: ~/.openclaw (where config lives)\nBackup root: <workspace>/BACKUPS\nCustom Configuration\n\nFor non-standard setups, override any path in ~/.openclaw/openclaw.json:\n\n{\n  \"skills\": {\n    \"entries\": {\n      \"simple-backup\": {\n        \"config\": {\n          \"workspaceDir\": \"/custom/path/workspace\",\n          \"stateDir\": \"/custom/path/state\",\n          \"skillsDir\": \"/custom/path/skills\",\n          \"backupRoot\": \"/custom/path/backups\",\n          \"remoteDest\": \"gdrive:backups\"\n        }\n      }\n    }\n  }\n}\n\nConfiguration Reference\nConfig Key\tEnv Var\tAuto-Detected\tDescription\nworkspaceDir\tBRAIN_DIR\tagents.defaults.workspace\tAgent workspace\nstateDir\tBODY_DIR\t~/.openclaw\tOpenClaw state dir\nskillsDir\tSKILLS_DIR\t~/openclaw/skills\tSkills directory\nbackupRoot\tBACKUP_ROOT\t<workspace>/BACKUPS\tLocal backup storage\nremoteDest\tREMOTE_DEST\t(none)\tRclone remote path\nmaxDays\tMAX_DAYS\t7\tDays to keep daily backups\nhourlyRetentionHours\tHOURLY_RETENTION_HOURS\t24\tHours to keep hourly\npassword\tBACKUP_PASSWORD\t(none)\tEncryption password\n\nPriority: Config file → Env var → Auto-detect"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/VACInc/simple-backup",
    "publisherUrl": "https://clawhub.ai/VACInc/simple-backup",
    "owner": "VACInc",
    "version": "2.2.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/simple-backup",
    "downloadUrl": "https://openagent3.xyz/downloads/simple-backup",
    "agentUrl": "https://openagent3.xyz/skills/simple-backup/agent",
    "manifestUrl": "https://openagent3.xyz/skills/simple-backup/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/simple-backup/agent.md"
  }
}