Deploy and manage GPU-accelerated compute infrastructure on RunPod. Create clusters, configure serverless endpoints, manage templates, and handle secrets for ML training, inference, and distributed computing workloads.
This skill uses ClawLink for hosted connection flows and credentials so you do not need to configure RunPod API access yourself.
| Step 1: Install | Step 2: Pair Account | Step 3: Connect RunPod |
|---|---|---|
| :---: | :---: | :---: |
| !Install | !Pair | App-specific connection GIF coming soon |
| Run the install command in OpenClaw | Sign in and approve the device | Open the dashboard and connect RunPod |
┌─────────────────┐ ┌──────────────┐ ┌──────────────────┐
│ OpenClaw │────▶│ ClawLink │────▶│ RunPod API │
│ (User Chat) │ │ (Proxy) │ │ (Clusters, │
│ │ │ │ │ Endpoints) │
└─────────────────┘ └──────────────┘ └──────────────────┘
│ │ │
│ 1. Install Plugin │ │
│ 2. Pair Device │ │
│ 3. Connect RunPod │ │
│ │ 4. API Key Proxy │
│ │ 5. Request Forward │
│ │ │
▼ ▼ ▼
┌──────────┐ ┌──────────┐ ┌──────────┐
│ SKILL │ │ Dashboard│ │ RunPod │
│ File │ │ Auth │ │ Cloud │
└──────────┘ └──────────┘ └──────────┘
Install the verified ClawLink plugin from ClawHub. After the user confirms, complete the full setup so ClawLink tools are visible in the next OpenClaw chat.
openclaw plugins install clawhub:clawlink-plugin
openclaw config set tools.alsoAllow '["clawlink-plugin"]' --strict-json
openclaw gateway restart
Then tell the user: "OpenClaw has been restarted. Send /new as a standalone message to start a fresh chat, then ask for RunPod again."
# List available GPU types
clawlink_call_tool --tool "runpod_get_gpu_types"
# Get current user info
clawlink_call_tool --tool "runpod_get_myself"
# Get pod details
clawlink_call_tool --tool "runpod_get_pod" --params '{"pod_id": "YOUR_POD_ID"}'
All RunPod tool calls are authenticated automatically by ClawLink using your RunPod API key stored securely in the dashboard.
No API key is required in chat. ClawLink injects your API key into every RunPod GraphQL request on your behalf.
clawlink_begin_pairing if it is not configured yet.clawlink_list_integrations to verify the connection is active.clawlink_list_integrations
Response: Returns all connected integrations. Look for runpod in the list.
clawlink_list_tools --integration runpod
Response: Returns the live tool catalog for RunPod.
If RunPod tools are missing or the connection shows an error:
clawlink_list_integrations to verifyclawlink_list_tools --integration runpodRUNPOD_SECRET_) in pods and endpoints.| Tool | Description | Mode |
|---|---|---|
| ------ | ------------- | ------ |
runpod_get_gpu_types | Retrieve available GPU types, specs, pricing, and availability | Read |
runpod_list_cpu_types | Retrieve available CPU types and specifications | Read |
runpod_get_pod | Get details of a specific pod by ID (GPU count, memory, cost, status) | Read |
| Tool | Description | Mode |
|---|---|---|
| ------ | ------------- | ------ |
runpod_create_cluster | Create a new GPU cluster for multi-node distributed computing workloads | Write |
| Tool | Description | Mode |
|---|---|---|
| ------ | ------------- | ------ |
runpod_save_endpoint | Create or update a GPU-accelerated serverless endpoint (include id to update, omit to create) | Write |
| Tool | Description | Mode |
|---|---|---|
| ------ | ------------- | ------ |
runpod_save_template | Create a new template or update an existing one with container configuration | Write |
runpod_delete_template | Remove a template (must not be in use by pods or serverless endpoints) | Write |
| Tool | Description | Mode |
|---|---|---|
| ------ | ------------- | ------ |
runpod_create_secret | Create a secure secret for credential management (accessible as RUNPOD_SECRET_) | Write |
| Tool | Description | Mode |
|---|---|---|
| ------ | ------------- | ------ |
runpod_save_registry_auth | Save container registry authentication credentials for private Docker images | Write |
runpod_update_registry_auth | Update existing container registry authentication credentials | Write |
runpod_delete_registry_auth | Delete container registry authentication from RunPod | Write |
| Tool | Description | Mode |
|---|---|---|
| ------ | ------------- | ------ |
runpod_get_myself | Retrieve authenticated user info (ID, email, MFA settings) | Read |
runpod_update_user_settings | Update user settings (e.g., SSH public key for pod access) | Write |
clawlink_call_tool --tool "runpod_get_gpu_types"
clawlink_call_tool --tool "runpod_get_pod" \
--params '{"pod_id": "YOUR_POD_ID"}'
clawlink_call_tool --tool "runpod_create_secret" \
--params '{"name": "OPENAI_API_KEY", "value": "sk-..."}'
clawlink_call_tool --tool "runpod_save_endpoint" \
--params '{
"name": "my-endpoint",
"gpu_type_id": "RTX_4090",
"image_url": "your-docker-image:latest",
"env": [{"key": "MODEL_PATH", "value": "/models/llama"}]
}'
clawlink_list_integrations to confirm RunPod is connected.clawlink_list_tools --integration runpod to see the live catalog.clawlink_search_tools with a short query and integration runpod.┌─────────────────────────────────────────────────────────────┐
│ READ OPERATIONS (Safe) │
│ list → get → describe → call │
│ │
│ Example: List GPU types → Get pod details → Show results │
└─────────────────────────────────────────────────────────────┘
│
▼
┌─────────────────────────────────────────────────────────────┐
│ WRITE OPERATIONS (Require Confirmation) │
│ describe → preview → confirm → call │
│ │
│ Example: Describe tool → Preview changes → User approves │
│ → Execute create │
└─────────────────────────────────────────────────────────────┘
clawlink_describe_tool first.whenToUse, askBefore, safeDefaults, examples, and followups to shape the call.clawlink_preview_tool first.clawlink_call_tool. Pass confirmation only after the preview matches the user's intent.runpod_get_gpu_types to get current availability before deploying.volumeInGb to 0 (no persistent storage for serverless).RUNPOD_SECRET_ environment variables — create secrets before referencing them in templates.| Status / Error | Meaning |
|---|---|
| ---------------- | --------- |
| Tool not found | The tool name does not exist in the current catalog. Verify with clawlink_list_tools --integration runpod. |
| Missing connection | RunPod is not connected. Direct the user to https://claw-link.dev/dashboard?add=runpod. |
template_in_use | Template is assigned to active pods or endpoints. Reassign or delete them first. |
invalid_gpu_type | The specified GPU type is not available in the selected region. Check runpod_get_gpu_types. |
permission_denied | API key lacks required permissions for the operation. |
| Write rejected | User did not confirm a write action. Always confirm before executing writes. |
```bash
openclaw plugins list
```
/new as a standalone message to reload the catalog.```bash
openclaw config set tools.alsoAllow '["clawlink-plugin"]' --strict-json
openclaw gateway restart
```
/new again and retry.runpod.clawlink_describe_tool to verify parameter names and types before calling.clawlink_preview_tool first.Powered by ClawLink — an integration hub for OpenClaw
共 2 个版本