{
  "schemaVersion": "1.0",
  "item": {
    "slug": "runpod",
    "name": "RunPod pod management",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/andrewharp/runpod",
    "canonicalUrl": "https://clawhub.ai/andrewharp/runpod",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/runpod",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=runpod",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "scripts/mount_pod.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-05-07T17:22:31.273Z",
      "expiresAt": "2026-05-14T17:22:31.273Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
        "contentDisposition": "attachment; filename=\"afrexai-annual-report-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/runpod"
    },
    "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/runpod",
    "agentPageUrl": "https://openagent3.xyz/skills/runpod/agent",
    "manifestUrl": "https://openagent3.xyz/skills/runpod/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/runpod/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": "RunPod Skill",
        "body": "Manage RunPod GPU cloud instances, SSH connections, and filesystem access."
      },
      {
        "title": "Prerequisites",
        "body": "brew install runpod/runpodctl/runpodctl\nrunpodctl config --apiKey \"your-api-key\"\n\nSSH Key: runpodctl manages SSH keys in ~/.runpod/ssh/:\n\nrunpodctl ssh add-key\n\nView and manage keys at: https://console.runpod.io/user/settings\n\nMount script configuration:\nThe mount script checks ~/.ssh/runpod_key first, then falls back to runpodctl's default key. Override with:\n\nexport RUNPOD_SSH_KEY=\"$HOME/.runpod/ssh/RunPod-Key\"\n\nHost keys are stored separately in ~/.runpod/ssh/known_hosts (isolated from your main SSH config). Uses StrictHostKeyChecking=accept-new to verify hosts on reconnect while allowing new RunPod instances."
      },
      {
        "title": "Quick Reference",
        "body": "runpodctl get pod                    # List pods\nrunpodctl get pod <id>               # Get pod details\nrunpodctl start pod <id>             # Start pod\nrunpodctl stop pod <id>              # Stop pod\nrunpodctl ssh connect <id>           # Get SSH command\nrunpodctl send <file>                # Send file to pod\nrunpodctl receive <code>             # Receive file from pod"
      },
      {
        "title": "Create Pod",
        "body": "# Without volume\nrunpodctl create pod --name \"my-pod\" --gpuType \"NVIDIA GeForce RTX 4090\" --imageName \"runpod/pytorch:1.0.2-cu1281-torch280-ubuntu2404\"\n\n# With volume (100GB at /workspace)\nrunpodctl create pod --name \"my-pod\" --gpuType \"NVIDIA GeForce RTX 4090\" --imageName \"runpod/pytorch:1.0.2-cu1281-torch280-ubuntu2404\" --volumeSize 100 --volumePath \"/workspace\"\n\nImportant: When using a volume (--volumeSize), always specify --volumePath too. Without it:\n\nerror creating container: ... invalid mount config for type \"volume\": field Target must not be empty"
      },
      {
        "title": "SSH to Pod",
        "body": "# Get SSH command\nrunpodctl ssh connect <pod_id>\n\n# Connect directly (copy command from above)\nssh -p <port> root@<ip> -i ~/.ssh/runpod_key"
      },
      {
        "title": "Mount Pod Filesystem (SSHFS)",
        "body": "./scripts/mount_pod.sh <pod_id> [base_dir]\n\nMounts pod to ~/pods/<pod_id> by default.\n\nAccess files:\n\nls ~/pods/<pod_id>/\ncat ~/pods/<pod_id>/workspace/my-project/train.py\n\nUnmount:\n\nfusermount -u ~/pods/<pod_id>"
      },
      {
        "title": "Helper Script",
        "body": "ScriptPurposemount_pod.shMount pod filesystem via SSHFS (no runpodctl equivalent)"
      },
      {
        "title": "Web Service Access",
        "body": "Proxy URLs:\n\nhttps://<pod_id>-<port>.proxy.runpod.net\n\nCommon ports:\n\n8188: ComfyUI\n7860: Gradio\n8888: Jupyter\n8080: Dev tools"
      }
    ],
    "body": "RunPod Skill\n\nManage RunPod GPU cloud instances, SSH connections, and filesystem access.\n\nPrerequisites\nbrew install runpod/runpodctl/runpodctl\nrunpodctl config --apiKey \"your-api-key\"\n\n\nSSH Key: runpodctl manages SSH keys in ~/.runpod/ssh/:\n\nrunpodctl ssh add-key\n\n\nView and manage keys at: https://console.runpod.io/user/settings\n\nMount script configuration: The mount script checks ~/.ssh/runpod_key first, then falls back to runpodctl's default key. Override with:\n\nexport RUNPOD_SSH_KEY=\"$HOME/.runpod/ssh/RunPod-Key\"\n\n\nHost keys are stored separately in ~/.runpod/ssh/known_hosts (isolated from your main SSH config). Uses StrictHostKeyChecking=accept-new to verify hosts on reconnect while allowing new RunPod instances.\n\nQuick Reference\nrunpodctl get pod                    # List pods\nrunpodctl get pod <id>               # Get pod details\nrunpodctl start pod <id>             # Start pod\nrunpodctl stop pod <id>              # Stop pod\nrunpodctl ssh connect <id>           # Get SSH command\nrunpodctl send <file>                # Send file to pod\nrunpodctl receive <code>             # Receive file from pod\n\nCommon Operations\nCreate Pod\n# Without volume\nrunpodctl create pod --name \"my-pod\" --gpuType \"NVIDIA GeForce RTX 4090\" --imageName \"runpod/pytorch:1.0.2-cu1281-torch280-ubuntu2404\"\n\n# With volume (100GB at /workspace)\nrunpodctl create pod --name \"my-pod\" --gpuType \"NVIDIA GeForce RTX 4090\" --imageName \"runpod/pytorch:1.0.2-cu1281-torch280-ubuntu2404\" --volumeSize 100 --volumePath \"/workspace\"\n\n\nImportant: When using a volume (--volumeSize), always specify --volumePath too. Without it:\n\nerror creating container: ... invalid mount config for type \"volume\": field Target must not be empty\n\nSSH to Pod\n# Get SSH command\nrunpodctl ssh connect <pod_id>\n\n# Connect directly (copy command from above)\nssh -p <port> root@<ip> -i ~/.ssh/runpod_key\n\nMount Pod Filesystem (SSHFS)\n./scripts/mount_pod.sh <pod_id> [base_dir]\n\n\nMounts pod to ~/pods/<pod_id> by default.\n\nAccess files:\n\nls ~/pods/<pod_id>/\ncat ~/pods/<pod_id>/workspace/my-project/train.py\n\n\nUnmount:\n\nfusermount -u ~/pods/<pod_id>\n\nHelper Script\nScript\tPurpose\nmount_pod.sh\tMount pod filesystem via SSHFS (no runpodctl equivalent)\nWeb Service Access\n\nProxy URLs:\n\nhttps://<pod_id>-<port>.proxy.runpod.net\n\n\nCommon ports:\n\n8188: ComfyUI\n7860: Gradio\n8888: Jupyter\n8080: Dev tools"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/andrewharp/runpod",
    "publisherUrl": "https://clawhub.ai/andrewharp/runpod",
    "owner": "andrewharp",
    "version": "1.0.1",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/runpod",
    "downloadUrl": "https://openagent3.xyz/downloads/runpod",
    "agentUrl": "https://openagent3.xyz/skills/runpod/agent",
    "manifestUrl": "https://openagent3.xyz/skills/runpod/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/runpod/agent.md"
  }
}