{
  "schemaVersion": "1.0",
  "item": {
    "slug": "proxmox",
    "name": "Proxmox",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/weird-aftertaste/proxmox",
    "canonicalUrl": "https://clawhub.ai/weird-aftertaste/proxmox",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/proxmox",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=proxmox",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "scripts/pve.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/proxmox"
    },
    "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/proxmox",
    "agentPageUrl": "https://openagent3.xyz/skills/proxmox/agent",
    "manifestUrl": "https://openagent3.xyz/skills/proxmox/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/proxmox/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": "Configuration",
        "body": "Set environment variables or store in ~/.proxmox-credentials:\n\n# Option 1: API Token (recommended)\nexport PROXMOX_HOST=\"https://192.168.1.100:8006\"\nexport PROXMOX_TOKEN_ID=\"user@pam!tokenname\"\nexport PROXMOX_TOKEN_SECRET=\"xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx\"\n\n# Option 2: Credentials file\ncat > ~/.proxmox-credentials << 'EOF'\nPROXMOX_HOST=https://192.168.1.100:8006\nPROXMOX_TOKEN_ID=user@pam!monitoring\nPROXMOX_TOKEN_SECRET=your-token-secret\nEOF\nchmod 600 ~/.proxmox-credentials\n\nCreate API token in Proxmox: Datacenter → Permissions → API Tokens → Add"
      },
      {
        "title": "CLI Usage",
        "body": "# Load credentials\nsource ~/.proxmox-credentials 2>/dev/null\n\n# Auth header for API token\nAUTH=\"Authorization: PVEAPIToken=$PROXMOX_TOKEN_ID=$PROXMOX_TOKEN_SECRET\""
      },
      {
        "title": "Cluster & Nodes",
        "body": "# Cluster status\ncurl -ks -H \"$AUTH\" \"$PROXMOX_HOST/api2/json/cluster/status\" | jq\n\n# List nodes\ncurl -ks -H \"$AUTH\" \"$PROXMOX_HOST/api2/json/nodes\" | jq '.data[] | {node, status, cpu, mem: (.mem/.maxmem*100|round)}'\n\n# Node status\ncurl -ks -H \"$AUTH\" \"$PROXMOX_HOST/api2/json/nodes/{node}/status\" | jq"
      },
      {
        "title": "List VMs & Containers",
        "body": "# All VMs on a node\ncurl -ks -H \"$AUTH\" \"$PROXMOX_HOST/api2/json/nodes/{node}/qemu\" | jq '.data[] | {vmid, name, status, mem: .mem, cpu: (.cpu*100|round)}'\n\n# All LXC containers on a node\ncurl -ks -H \"$AUTH\" \"$PROXMOX_HOST/api2/json/nodes/{node}/lxc\" | jq '.data[] | {vmid, name, status}'\n\n# Cluster-wide resources\ncurl -ks -H \"$AUTH\" \"$PROXMOX_HOST/api2/json/cluster/resources?type=vm\" | jq '.data[] | {node, vmid, name, type, status}'"
      },
      {
        "title": "VM/Container Control",
        "body": "# Start VM\ncurl -ks -X POST -H \"$AUTH\" \"$PROXMOX_HOST/api2/json/nodes/{node}/qemu/{vmid}/status/start\"\n\n# Stop VM\ncurl -ks -X POST -H \"$AUTH\" \"$PROXMOX_HOST/api2/json/nodes/{node}/qemu/{vmid}/status/stop\"\n\n# Shutdown VM (graceful)\ncurl -ks -X POST -H \"$AUTH\" \"$PROXMOX_HOST/api2/json/nodes/{node}/qemu/{vmid}/status/shutdown\"\n\n# Reboot VM\ncurl -ks -X POST -H \"$AUTH\" \"$PROXMOX_HOST/api2/json/nodes/{node}/qemu/{vmid}/status/reboot\"\n\n# Same for LXC: replace /qemu/ with /lxc/"
      },
      {
        "title": "Snapshots",
        "body": "# List snapshots\ncurl -ks -H \"$AUTH\" \"$PROXMOX_HOST/api2/json/nodes/{node}/qemu/{vmid}/snapshot\" | jq\n\n# Create snapshot\ncurl -ks -X POST -H \"$AUTH\" \"$PROXMOX_HOST/api2/json/nodes/{node}/qemu/{vmid}/snapshot\" \\\n  -d \"snapname=snap1\" -d \"description=Before update\"\n\n# Rollback\ncurl -ks -X POST -H \"$AUTH\" \"$PROXMOX_HOST/api2/json/nodes/{node}/qemu/{vmid}/snapshot/{snapname}/rollback\"\n\n# Delete snapshot\ncurl -ks -X DELETE -H \"$AUTH\" \"$PROXMOX_HOST/api2/json/nodes/{node}/qemu/{vmid}/snapshot/{snapname}\""
      },
      {
        "title": "Tasks & Logs",
        "body": "# Recent tasks\ncurl -ks -H \"$AUTH\" \"$PROXMOX_HOST/api2/json/nodes/{node}/tasks\" | jq '.data[:10] | .[] | {upid, type, status, user}'\n\n# Task log\ncurl -ks -H \"$AUTH\" \"$PROXMOX_HOST/api2/json/nodes/{node}/tasks/{upid}/log\" | jq -r '.data[].t'"
      },
      {
        "title": "Storage",
        "body": "# List storage\ncurl -ks -H \"$AUTH\" \"$PROXMOX_HOST/api2/json/nodes/{node}/storage\" | jq '.data[] | {storage, type, active, used_fraction: (.used/.total*100|round|tostring + \"%\")}'\n\n# Storage content\ncurl -ks -H \"$AUTH\" \"$PROXMOX_HOST/api2/json/nodes/{node}/storage/{storage}/content\" | jq"
      },
      {
        "title": "Backups",
        "body": "# List backups\ncurl -ks -H \"$AUTH\" \"$PROXMOX_HOST/api2/json/nodes/{node}/storage/{storage}/content?content=backup\" | jq\n\n# Start backup\ncurl -ks -X POST -H \"$AUTH\" \"$PROXMOX_HOST/api2/json/nodes/{node}/vzdump\" \\\n  -d \"vmid={vmid}\" -d \"storage={storage}\" -d \"mode=snapshot\""
      },
      {
        "title": "Helper Script",
        "body": "Use scripts/pve.sh for common operations:\n\n./scripts/pve.sh status          # Cluster overview\n./scripts/pve.sh vms             # List all VMs\n./scripts/pve.sh start {vmid}    # Start VM\n./scripts/pve.sh stop {vmid}     # Stop VM"
      },
      {
        "title": "Notes",
        "body": "Replace {node}, {vmid}, {storage}, {snapname} with actual values\nAPI tokens don't need CSRF tokens for POST/PUT/DELETE\nUse -k to skip SSL verification for self-signed certs\nTask operations return UPID for tracking async jobs"
      }
    ],
    "body": "Proxmox VE Management\nConfiguration\n\nSet environment variables or store in ~/.proxmox-credentials:\n\n# Option 1: API Token (recommended)\nexport PROXMOX_HOST=\"https://192.168.1.100:8006\"\nexport PROXMOX_TOKEN_ID=\"user@pam!tokenname\"\nexport PROXMOX_TOKEN_SECRET=\"xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx\"\n\n# Option 2: Credentials file\ncat > ~/.proxmox-credentials << 'EOF'\nPROXMOX_HOST=https://192.168.1.100:8006\nPROXMOX_TOKEN_ID=user@pam!monitoring\nPROXMOX_TOKEN_SECRET=your-token-secret\nEOF\nchmod 600 ~/.proxmox-credentials\n\n\nCreate API token in Proxmox: Datacenter → Permissions → API Tokens → Add\n\nCLI Usage\n# Load credentials\nsource ~/.proxmox-credentials 2>/dev/null\n\n# Auth header for API token\nAUTH=\"Authorization: PVEAPIToken=$PROXMOX_TOKEN_ID=$PROXMOX_TOKEN_SECRET\"\n\nCommon Operations\nCluster & Nodes\n# Cluster status\ncurl -ks -H \"$AUTH\" \"$PROXMOX_HOST/api2/json/cluster/status\" | jq\n\n# List nodes\ncurl -ks -H \"$AUTH\" \"$PROXMOX_HOST/api2/json/nodes\" | jq '.data[] | {node, status, cpu, mem: (.mem/.maxmem*100|round)}'\n\n# Node status\ncurl -ks -H \"$AUTH\" \"$PROXMOX_HOST/api2/json/nodes/{node}/status\" | jq\n\nList VMs & Containers\n# All VMs on a node\ncurl -ks -H \"$AUTH\" \"$PROXMOX_HOST/api2/json/nodes/{node}/qemu\" | jq '.data[] | {vmid, name, status, mem: .mem, cpu: (.cpu*100|round)}'\n\n# All LXC containers on a node\ncurl -ks -H \"$AUTH\" \"$PROXMOX_HOST/api2/json/nodes/{node}/lxc\" | jq '.data[] | {vmid, name, status}'\n\n# Cluster-wide resources\ncurl -ks -H \"$AUTH\" \"$PROXMOX_HOST/api2/json/cluster/resources?type=vm\" | jq '.data[] | {node, vmid, name, type, status}'\n\nVM/Container Control\n# Start VM\ncurl -ks -X POST -H \"$AUTH\" \"$PROXMOX_HOST/api2/json/nodes/{node}/qemu/{vmid}/status/start\"\n\n# Stop VM\ncurl -ks -X POST -H \"$AUTH\" \"$PROXMOX_HOST/api2/json/nodes/{node}/qemu/{vmid}/status/stop\"\n\n# Shutdown VM (graceful)\ncurl -ks -X POST -H \"$AUTH\" \"$PROXMOX_HOST/api2/json/nodes/{node}/qemu/{vmid}/status/shutdown\"\n\n# Reboot VM\ncurl -ks -X POST -H \"$AUTH\" \"$PROXMOX_HOST/api2/json/nodes/{node}/qemu/{vmid}/status/reboot\"\n\n# Same for LXC: replace /qemu/ with /lxc/\n\nSnapshots\n# List snapshots\ncurl -ks -H \"$AUTH\" \"$PROXMOX_HOST/api2/json/nodes/{node}/qemu/{vmid}/snapshot\" | jq\n\n# Create snapshot\ncurl -ks -X POST -H \"$AUTH\" \"$PROXMOX_HOST/api2/json/nodes/{node}/qemu/{vmid}/snapshot\" \\\n  -d \"snapname=snap1\" -d \"description=Before update\"\n\n# Rollback\ncurl -ks -X POST -H \"$AUTH\" \"$PROXMOX_HOST/api2/json/nodes/{node}/qemu/{vmid}/snapshot/{snapname}/rollback\"\n\n# Delete snapshot\ncurl -ks -X DELETE -H \"$AUTH\" \"$PROXMOX_HOST/api2/json/nodes/{node}/qemu/{vmid}/snapshot/{snapname}\"\n\nTasks & Logs\n# Recent tasks\ncurl -ks -H \"$AUTH\" \"$PROXMOX_HOST/api2/json/nodes/{node}/tasks\" | jq '.data[:10] | .[] | {upid, type, status, user}'\n\n# Task log\ncurl -ks -H \"$AUTH\" \"$PROXMOX_HOST/api2/json/nodes/{node}/tasks/{upid}/log\" | jq -r '.data[].t'\n\nStorage\n# List storage\ncurl -ks -H \"$AUTH\" \"$PROXMOX_HOST/api2/json/nodes/{node}/storage\" | jq '.data[] | {storage, type, active, used_fraction: (.used/.total*100|round|tostring + \"%\")}'\n\n# Storage content\ncurl -ks -H \"$AUTH\" \"$PROXMOX_HOST/api2/json/nodes/{node}/storage/{storage}/content\" | jq\n\nBackups\n# List backups\ncurl -ks -H \"$AUTH\" \"$PROXMOX_HOST/api2/json/nodes/{node}/storage/{storage}/content?content=backup\" | jq\n\n# Start backup\ncurl -ks -X POST -H \"$AUTH\" \"$PROXMOX_HOST/api2/json/nodes/{node}/vzdump\" \\\n  -d \"vmid={vmid}\" -d \"storage={storage}\" -d \"mode=snapshot\"\n\nHelper Script\n\nUse scripts/pve.sh for common operations:\n\n./scripts/pve.sh status          # Cluster overview\n./scripts/pve.sh vms             # List all VMs\n./scripts/pve.sh start {vmid}    # Start VM\n./scripts/pve.sh stop {vmid}     # Stop VM\n\nNotes\nReplace {node}, {vmid}, {storage}, {snapname} with actual values\nAPI tokens don't need CSRF tokens for POST/PUT/DELETE\nUse -k to skip SSL verification for self-signed certs\nTask operations return UPID for tracking async jobs"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/weird-aftertaste/proxmox",
    "publisherUrl": "https://clawhub.ai/weird-aftertaste/proxmox",
    "owner": "weird-aftertaste",
    "version": "1.0.1",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/proxmox",
    "downloadUrl": "https://openagent3.xyz/downloads/proxmox",
    "agentUrl": "https://openagent3.xyz/skills/proxmox/agent",
    "manifestUrl": "https://openagent3.xyz/skills/proxmox/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/proxmox/agent.md"
  }
}