{
  "schemaVersion": "1.0",
  "item": {
    "slug": "k8s-backup",
    "name": "Kubernetes Skills",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/rohitg00/k8s-backup",
    "canonicalUrl": "https://clawhub.ai/rohitg00/k8s-backup",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/k8s-backup",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=k8s-backup",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md"
    ],
    "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/k8s-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/k8s-backup",
    "agentPageUrl": "https://openagent3.xyz/skills/k8s-backup/agent",
    "manifestUrl": "https://openagent3.xyz/skills/k8s-backup/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/k8s-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": "Kubernetes Backup with Velero",
        "body": "Manage backups and restores using kubectl-mcp-server's Velero tools."
      },
      {
        "title": "Check Velero Installation",
        "body": "# Detect Velero\nvelero_detect_tool()\n\n# List backup locations\nvelero_backup_locations_list_tool()"
      },
      {
        "title": "Create Backups",
        "body": "# Backup entire namespace\nvelero_backup_create_tool(\n    name=\"my-backup\",\n    namespaces=[\"default\", \"app-namespace\"]\n)\n\n# Backup with label selector\nvelero_backup_create_tool(\n    name=\"app-backup\",\n    namespaces=[\"default\"],\n    label_selector=\"app=my-app\"\n)\n\n# Backup excluding resources\nvelero_backup_create_tool(\n    name=\"config-backup\",\n    namespaces=[\"default\"],\n    exclude_resources=[\"pods\", \"replicasets\"]\n)\n\n# Backup with TTL\nvelero_backup_create_tool(\n    name=\"daily-backup\",\n    namespaces=[\"production\"],\n    ttl=\"720h\"  # 30 days\n)"
      },
      {
        "title": "List and Describe Backups",
        "body": "# List all backups\nvelero_backups_list_tool()\n\n# Get backup details\nvelero_backup_get_tool(name=\"my-backup\")\n\n# Check backup status\n# - New: Backup request created\n# - InProgress: Backup running\n# - Completed: Backup successful\n# - Failed: Backup failed\n# - PartiallyFailed: Some items failed"
      },
      {
        "title": "Restore from Backup",
        "body": "# Full restore\nvelero_restore_create_tool(\n    name=\"my-restore\",\n    backup_name=\"my-backup\"\n)\n\n# Restore to different namespace\nvelero_restore_create_tool(\n    name=\"my-restore\",\n    backup_name=\"my-backup\",\n    namespace_mappings={\"old-ns\": \"new-ns\"}\n)\n\n# Restore specific resources\nvelero_restore_create_tool(\n    name=\"config-restore\",\n    backup_name=\"my-backup\",\n    include_resources=[\"configmaps\", \"secrets\"]\n)\n\n# Restore excluding resources\nvelero_restore_create_tool(\n    name=\"partial-restore\",\n    backup_name=\"my-backup\",\n    exclude_resources=[\"persistentvolumeclaims\"]\n)"
      },
      {
        "title": "List and Monitor Restores",
        "body": "# List restores\nvelero_restores_list_tool()\n\n# Get restore details\nvelero_restore_get_tool(name=\"my-restore\")"
      },
      {
        "title": "Scheduled Backups",
        "body": "# List schedules\nvelero_schedules_list_tool()\n\n# Get schedule details\nvelero_schedule_get_tool(name=\"daily-backup\")\n\n# Create schedule (via kubectl)\nkubectl_apply(manifest=\"\"\"\napiVersion: velero.io/v1\nkind: Schedule\nmetadata:\n  name: daily-backup\n  namespace: velero\nspec:\n  schedule: \"0 2 * * *\"  # 2 AM daily\n  template:\n    includedNamespaces:\n    - production\n    ttl: 720h\n\"\"\")"
      },
      {
        "title": "Create DR Backup",
        "body": "1. velero_backup_create_tool(\n       name=\"dr-backup-$(date)\",\n       namespaces=[\"production\"]\n   )\n2. velero_backup_get_tool(name=\"dr-backup-...\")  # Wait for completion"
      },
      {
        "title": "Restore to New Cluster",
        "body": "1. velero_detect_tool()  # Verify Velero installed\n2. velero_backups_list_tool()  # Find backup\n3. velero_restore_create_tool(\n       name=\"dr-restore\",\n       backup_name=\"dr-backup-...\"\n   )\n4. velero_restore_get_tool(name=\"dr-restore\")  # Monitor"
      },
      {
        "title": "Related Skills",
        "body": "k8s-multicluster - Multi-cluster operations\nk8s-incident - Incident response"
      }
    ],
    "body": "Kubernetes Backup with Velero\n\nManage backups and restores using kubectl-mcp-server's Velero tools.\n\nCheck Velero Installation\n# Detect Velero\nvelero_detect_tool()\n\n# List backup locations\nvelero_backup_locations_list_tool()\n\nCreate Backups\n# Backup entire namespace\nvelero_backup_create_tool(\n    name=\"my-backup\",\n    namespaces=[\"default\", \"app-namespace\"]\n)\n\n# Backup with label selector\nvelero_backup_create_tool(\n    name=\"app-backup\",\n    namespaces=[\"default\"],\n    label_selector=\"app=my-app\"\n)\n\n# Backup excluding resources\nvelero_backup_create_tool(\n    name=\"config-backup\",\n    namespaces=[\"default\"],\n    exclude_resources=[\"pods\", \"replicasets\"]\n)\n\n# Backup with TTL\nvelero_backup_create_tool(\n    name=\"daily-backup\",\n    namespaces=[\"production\"],\n    ttl=\"720h\"  # 30 days\n)\n\nList and Describe Backups\n# List all backups\nvelero_backups_list_tool()\n\n# Get backup details\nvelero_backup_get_tool(name=\"my-backup\")\n\n# Check backup status\n# - New: Backup request created\n# - InProgress: Backup running\n# - Completed: Backup successful\n# - Failed: Backup failed\n# - PartiallyFailed: Some items failed\n\nRestore from Backup\n# Full restore\nvelero_restore_create_tool(\n    name=\"my-restore\",\n    backup_name=\"my-backup\"\n)\n\n# Restore to different namespace\nvelero_restore_create_tool(\n    name=\"my-restore\",\n    backup_name=\"my-backup\",\n    namespace_mappings={\"old-ns\": \"new-ns\"}\n)\n\n# Restore specific resources\nvelero_restore_create_tool(\n    name=\"config-restore\",\n    backup_name=\"my-backup\",\n    include_resources=[\"configmaps\", \"secrets\"]\n)\n\n# Restore excluding resources\nvelero_restore_create_tool(\n    name=\"partial-restore\",\n    backup_name=\"my-backup\",\n    exclude_resources=[\"persistentvolumeclaims\"]\n)\n\nList and Monitor Restores\n# List restores\nvelero_restores_list_tool()\n\n# Get restore details\nvelero_restore_get_tool(name=\"my-restore\")\n\nScheduled Backups\n# List schedules\nvelero_schedules_list_tool()\n\n# Get schedule details\nvelero_schedule_get_tool(name=\"daily-backup\")\n\n# Create schedule (via kubectl)\nkubectl_apply(manifest=\"\"\"\napiVersion: velero.io/v1\nkind: Schedule\nmetadata:\n  name: daily-backup\n  namespace: velero\nspec:\n  schedule: \"0 2 * * *\"  # 2 AM daily\n  template:\n    includedNamespaces:\n    - production\n    ttl: 720h\n\"\"\")\n\nDisaster Recovery Workflow\nCreate DR Backup\n1. velero_backup_create_tool(\n       name=\"dr-backup-$(date)\",\n       namespaces=[\"production\"]\n   )\n2. velero_backup_get_tool(name=\"dr-backup-...\")  # Wait for completion\n\nRestore to New Cluster\n1. velero_detect_tool()  # Verify Velero installed\n2. velero_backups_list_tool()  # Find backup\n3. velero_restore_create_tool(\n       name=\"dr-restore\",\n       backup_name=\"dr-backup-...\"\n   )\n4. velero_restore_get_tool(name=\"dr-restore\")  # Monitor\n\nRelated Skills\nk8s-multicluster - Multi-cluster operations\nk8s-incident - Incident response"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/rohitg00/k8s-backup",
    "publisherUrl": "https://clawhub.ai/rohitg00/k8s-backup",
    "owner": "rohitg00",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/k8s-backup",
    "downloadUrl": "https://openagent3.xyz/downloads/k8s-backup",
    "agentUrl": "https://openagent3.xyz/skills/k8s-backup/agent",
    "manifestUrl": "https://openagent3.xyz/skills/k8s-backup/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/k8s-backup/agent.md"
  }
}