# Send RunPod pod management 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": "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": {
    "downloadUrl": "/downloads/runpod",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=runpod",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "scripts/mount_pod.sh"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "runpod",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-08T07:40:24.428Z",
      "expiresAt": "2026-05-15T07:40:24.428Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=runpod",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=runpod",
        "contentDisposition": "attachment; filename=\"runpod-1.0.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "runpod"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "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."
      ]
    }
  },
  "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"
  }
}
```
## Documentation

### RunPod Skill

Manage RunPod GPU cloud instances, SSH connections, and filesystem access.

### Prerequisites

brew install runpod/runpodctl/runpodctl
runpodctl config --apiKey "your-api-key"

SSH Key: runpodctl manages SSH keys in ~/.runpod/ssh/:

runpodctl ssh add-key

View and manage keys at: https://console.runpod.io/user/settings

Mount script configuration:
The mount script checks ~/.ssh/runpod_key first, then falls back to runpodctl's default key. Override with:

export RUNPOD_SSH_KEY="$HOME/.runpod/ssh/RunPod-Key"

Host 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.

### Quick Reference

runpodctl get pod                    # List pods
runpodctl get pod <id>               # Get pod details
runpodctl start pod <id>             # Start pod
runpodctl stop pod <id>              # Stop pod
runpodctl ssh connect <id>           # Get SSH command
runpodctl send <file>                # Send file to pod
runpodctl receive <code>             # Receive file from pod

### Create Pod

# Without volume
runpodctl create pod --name "my-pod" --gpuType "NVIDIA GeForce RTX 4090" --imageName "runpod/pytorch:1.0.2-cu1281-torch280-ubuntu2404"

# With volume (100GB at /workspace)
runpodctl create pod --name "my-pod" --gpuType "NVIDIA GeForce RTX 4090" --imageName "runpod/pytorch:1.0.2-cu1281-torch280-ubuntu2404" --volumeSize 100 --volumePath "/workspace"

Important: When using a volume (--volumeSize), always specify --volumePath too. Without it:

error creating container: ... invalid mount config for type "volume": field Target must not be empty

### SSH to Pod

# Get SSH command
runpodctl ssh connect <pod_id>

# Connect directly (copy command from above)
ssh -p <port> root@<ip> -i ~/.ssh/runpod_key

### Mount Pod Filesystem (SSHFS)

./scripts/mount_pod.sh <pod_id> [base_dir]

Mounts pod to ~/pods/<pod_id> by default.

Access files:

ls ~/pods/<pod_id>/
cat ~/pods/<pod_id>/workspace/my-project/train.py

Unmount:

fusermount -u ~/pods/<pod_id>

### Helper Script

ScriptPurposemount_pod.shMount pod filesystem via SSHFS (no runpodctl equivalent)

### Web Service Access

Proxy URLs:

https://<pod_id>-<port>.proxy.runpod.net

Common ports:

8188: ComfyUI
7860: Gradio
8888: Jupyter
8080: Dev tools
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: andrewharp
- Version: 1.0.1
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-08T07:40:24.428Z
- Expires at: 2026-05-15T07:40:24.428Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/runpod)
- [Send to Agent page](https://openagent3.xyz/skills/runpod/agent)
- [JSON manifest](https://openagent3.xyz/skills/runpod/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/runpod/agent.md)
- [Download page](https://openagent3.xyz/downloads/runpod)