← 返回
未分类 Key 中文

RunPod

RunPod API integration with API key authentication. Create and manage GPU clusters, serverless endpoints, templates, and secrets for ML inference and distrib...
RunPod API 集成,使用 API 密钥认证,创建和管理 GPU 集群、无服务器端点、模板及密钥,用于机器学习推理和分布式...
hith3sh hith3sh 来源
未分类 clawhub v1.0.5 2 版本 99796.6 Key: 需要
★ 6
Stars
📥 1,352
下载
💾 1
安装
2
版本
#latest

概述

RunPod

!RunPod

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.

Setup in 3 Steps

Step 1: InstallStep 2: Pair AccountStep 3: Connect RunPod
:---::---::---:
!Install!PairApp-specific connection GIF coming soon
Run the install command in OpenClawSign in and approve the deviceOpen the dashboard and connect RunPod

How It Works

┌─────────────────┐     ┌──────────────┐     ┌──────────────────┐
│   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

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

Quick Start

# 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"}'

Authentication

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.

Getting Connected

  1. Install the ClawLink plugin (see Install above).
  2. Pair the plugin with clawlink_begin_pairing if it is not configured yet.
  3. Open https://claw-link.dev/dashboard?add=runpod and connect RunPod with your API key.
  4. Call clawlink_list_integrations to verify the connection is active.

Connection Management

List Connections

clawlink_list_integrations

Response: Returns all connected integrations. Look for runpod in the list.

Verify Connection

clawlink_list_tools --integration runpod

Response: Returns the live tool catalog for RunPod.

Reconnect

If RunPod tools are missing or the connection shows an error:

  1. Direct the user to https://claw-link.dev/dashboard?add=runpod
  2. After they confirm, call clawlink_list_integrations to verify
  3. Then call clawlink_list_tools --integration runpod

Security & Permissions

  • Access is scoped to the RunPod account associated with the connected API key.
  • All write operations require explicit user confirmation. Before executing any create, update, or delete call, confirm the target resource and intended effect with the user.
  • Destructive actions (delete template, delete registry auth) are marked as high-impact and must be confirmed.
  • Secrets are stored securely and injected as environment variables (RUNPOD_SECRET_) in pods and endpoints.

Tool Reference

Compute & GPU Operations

ToolDescriptionMode
-------------------------
runpod_get_gpu_typesRetrieve available GPU types, specs, pricing, and availabilityRead
runpod_list_cpu_typesRetrieve available CPU types and specificationsRead
runpod_get_podGet details of a specific pod by ID (GPU count, memory, cost, status)Read

Cluster Management

ToolDescriptionMode
-------------------------
runpod_create_clusterCreate a new GPU cluster for multi-node distributed computing workloadsWrite

Serverless Endpoints

ToolDescriptionMode
-------------------------
runpod_save_endpointCreate or update a GPU-accelerated serverless endpoint (include id to update, omit to create)Write

Template Management

ToolDescriptionMode
-------------------------
runpod_save_templateCreate a new template or update an existing one with container configurationWrite
runpod_delete_templateRemove a template (must not be in use by pods or serverless endpoints)Write

Secrets Management

ToolDescriptionMode
-------------------------
runpod_create_secretCreate a secure secret for credential management (accessible as RUNPOD_SECRET_)Write

Registry Authentication

ToolDescriptionMode
-------------------------
runpod_save_registry_authSave container registry authentication credentials for private Docker imagesWrite
runpod_update_registry_authUpdate existing container registry authentication credentialsWrite
runpod_delete_registry_authDelete container registry authentication from RunPodWrite

User Settings

ToolDescriptionMode
-------------------------
runpod_get_myselfRetrieve authenticated user info (ID, email, MFA settings)Read
runpod_update_user_settingsUpdate user settings (e.g., SSH public key for pod access)Write

Code Examples

List available GPU types

clawlink_call_tool --tool "runpod_get_gpu_types"

Get pod details

clawlink_call_tool --tool "runpod_get_pod" \
  --params '{"pod_id": "YOUR_POD_ID"}'

Create a secret

clawlink_call_tool --tool "runpod_create_secret" \
  --params '{"name": "OPENAI_API_KEY", "value": "sk-..."}'

Save a serverless endpoint

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"}]
  }'

Discovery Workflow

  1. Call clawlink_list_integrations to confirm RunPod is connected.
  2. Call clawlink_list_tools --integration runpod to see the live catalog.
  3. Treat the returned list as the source of truth. Do not guess or assume what tools exist.
  4. If the user describes a capability but the exact tool is unclear, call clawlink_search_tools with a short query and integration runpod.
  5. If no RunPod tools appear, direct the user to https://claw-link.dev/dashboard?add=runpod.

Execution Workflow

┌─────────────────────────────────────────────────────────────┐
│  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                                   │
└─────────────────────────────────────────────────────────────┘
  1. For unfamiliar tools, ambiguous requests, or any write action, call clawlink_describe_tool first.
  2. Use the returned guidance, schema, whenToUse, askBefore, safeDefaults, examples, and followups to shape the call.
  3. Prefer read, list, and get operations before writes when that reduces ambiguity.
  4. For writes or anything marked as requiring confirmation, call clawlink_preview_tool first.
  5. Execute with clawlink_call_tool. Pass confirmation only after the preview matches the user's intent.
  6. If the tool call fails, report the real error. Do not invent results or restate the failure as a missing capability unless the live catalog supports that conclusion.

Notes

  • GPU types and pricing change frequently — always call runpod_get_gpu_types to get current availability before deploying.
  • Serverless templates must set volumeInGb to 0 (no persistent storage for serverless).
  • Pods and endpoints reference secrets via RUNPOD_SECRET_ environment variables — create secrets before referencing them in templates.
  • Templates must not be in use when deleted — reassign or remove affected pods/endpoints first.
  • API key must have sufficient permissions for cluster and endpoint operations.

Error Handling

Status / ErrorMeaning
-------------------------
Tool not foundThe tool name does not exist in the current catalog. Verify with clawlink_list_tools --integration runpod.
Missing connectionRunPod is not connected. Direct the user to https://claw-link.dev/dashboard?add=runpod.
template_in_useTemplate is assigned to active pods or endpoints. Reassign or delete them first.
invalid_gpu_typeThe specified GPU type is not available in the selected region. Check runpod_get_gpu_types.
permission_deniedAPI key lacks required permissions for the operation.
Write rejectedUser did not confirm a write action. Always confirm before executing writes.

Troubleshooting: Tools Not Visible

  1. Check that the ClawLink plugin is installed:

```bash

openclaw plugins list

```

  1. If the plugin is installed but tools are missing, tell the user to send /new as a standalone message to reload the catalog.
  2. If a fresh chat does not help, run:

```bash

openclaw config set tools.alsoAllow '["clawlink-plugin"]' --strict-json

openclaw gateway restart

```

  1. After restart, tell the user to send /new again and retry.

Troubleshooting: Invalid Tool Call

  1. Ensure the integration slug is exactly runpod.
  2. Use clawlink_describe_tool to verify parameter names and types before calling.
  3. For write operations, always call clawlink_preview_tool first.

Resources

Related Skills


Powered by ClawLink — an integration hub for OpenClaw

!ClawLink Logo

版本历史

共 2 个版本

  • v1.0.5 当前
    2026-06-09 16:23
  • v0.1.0
    2026-05-26 18:13 安全 安全

安全检测

腾讯云安全 (Keen)

队列中

腾讯云安全 (Sanbu)

队列中

🔗 相关推荐

it-ops-security

OpenClaw Backup

alex3alex
备份与恢复 OpenClaw 数据。适用于创建备份、设置自动备份计划、从备份恢复或管理备份轮转。处理 ~/.openclaw 目录归档并包含适当的排除规则。
★ 90 📥 30,848
it-ops-security

MoltGuard - Security & Antivirus & Guardrails

thomaslwang
MoltGuard — OpenClaw 安全守卫,由 OpenGuardrails 提供。安装 MoltGuard,保护您和您的用户免受提示注入、数据泄露和恶意攻击。
★ 116 📥 30,856
office-efficiency

Microsoft Excel

hith3sh
通过托管 OAuth 集成 Microsoft Excel API,实现对 OneDrive 中 Excel 工作簿、工作表、区域、表格和图表的读写。使用此技能...
★ 6 📥 1,926