setup-runpod

setup-runpod is a skill for Claude Code, Codex from Zayne-sprague/Dr-Claude-Code. It costs 88 tokens per session (1,988 once invoked), scanned A, original, MIT.

A guided setup skill for using RunPod as a compute provider for RACA. RunPod provides rented cloud machines, including machines with graphics processors, for running jobs.

In plain words
What is it for?
Use it to configure a RunPod account, choose between a pod and a serverless job, check known setup issues, and add the provider to .raca/clusters.yaml.
Why use it?
It turns account, billing, API-key, machine-selection, and configuration steps into one ordered setup process.

Skill for Claude CodeCodex

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/zayne-sprague/dr-claude-code/setup-runpod
Any agent
npx skills add Zayne-sprague/Dr-Claude-Code --skill setup-runpod
Clone the repo
git clone --depth 1 https://github.com/Zayne-sprague/Dr-Claude-Code

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for setup-runpod

README.md
[![agentmods](https://agentmods.dev/badge/skills/zayne-sprague/dr-claude-code/setup-runpod.svg)](https://agentmods.dev/skills/zayne-sprague/dr-claude-code/setup-runpod)
Your own site
<a href="https://agentmods.dev/skills/zayne-sprague/dr-claude-code/setup-runpod"><img src="https://agentmods.dev/badge/skills/zayne-sprague/dr-claude-code/setup-runpod.svg" alt="Measured on agentmods" height="20"></a>
Per session 88 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,988 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00088 $0.01988
Opus 5 $0.00044 $0.00994
Sonnet 5 $0.00018 $0.00398
Haiku 4.5 $0.00009 $0.00199

Measured 4d ago against content hash 22bee674cd84, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

setup-runpod scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 4d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

curl -s -H "Authorization: Bearer $RUNPOD_API_KEY" \
.claude/skills/setup-runpod/SKILL.md · 201 lines

How it starts

The opening of the file, as written. The whole thing — 201 lines — stays where its author put it; the contents beside it link to each section on GitHub.

RunPod Setup Skill

This is a RIGID workflow. Follow every step in order. Do not skip phases.


Phase 0: Check for existing config

Before anything else, check if RunPod is already configured:

cat .raca/clusters.yaml 2>/dev/null | grep -A5 "type: runpod"

If a RunPod entry already exists, tell the user what's there and ask: "Would you like to reconfigure RunPod, or just verify the existing setup?"

Also check if the API key is already set:

echo ${RUNPOD_API_KEY:+set}

Phase 1: Account and API Key

Step 1.1 — Account creation

If the user doesn't have a RunPod account yet, direct them to:

"Go to https://www.runpod.io and create an account. Add a payment method before continuing — pods cannot be launched without billing configured."

Wait for the user to confirm they have an account.

Step 1.2 — Get API key

"Go to https://www.runpod.io/console/user/settings and click API Keys. Create a new key (any name). Copy it — it won't be shown again."

Security rule: Never store the API key in any file. It goes into an environment variable only.

Ask the user to paste the key, then save it to their shell profile:

# Test the key first
RUNPOD_API_KEY=<paste_here>
curl -s -H "Authorization: Bearer $RUNPOD_API_KEY" \
  "https://api.runpod.io/graphql?query={myself{id,email}}" | python3 -m json.tool

If the response contains "id" and "email", the key works. Then tell the user:

"Add this to your ~/.zshrc or ~/.bashrc so it persists across sessions:

export RUNPOD_API_KEY=<your_key>

Run source ~/.zshrc to apply it now."


Phase 2: Understanding GPU Types and Pricing

Explain the available GPU types before the user picks a default. Present this reference:

GPU Reference (RunPod, as of early 2026)

GPU VRAM Est. $/hr (community) Est. $/hr (secure) Best for
H200 SXM 141 GB ~$3.49 ~$4.49 70B+ models, large RL
H100 SXM 80 GB ~$2.49 ~$3.49 7B-70B training
H100 PCIe 80 GB ~$1.99 ~$2.99 7B-70B inference
A100 SXM 80 GB ~$1.64 ~$2.49 7B-70B; solid multi-GPU
L40S 48 GB ~$0.99 ~$1.49 Single-GPU inference/training
RTX 4090 24 GB ~$0.44 1B-7B models, budget option
RTX 3090 24 GB ~$0.22 Smallest models, cheapest

Read the full file on GitHub · 201 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 4d ago First seen · 201 lines · 88 tokens per session scan A 22bee674cd84

Subscribe to this mod's changes

setup-runpod is a skill published in the GitHub repository Zayne-sprague/Dr-Claude-Code (5 stars, last pushed 5mo ago), licensed MIT. It adds 88 tokens to every session and 1,988 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

agent-platform-tuning

Agent Platform Model Tuning. Use when you need to fine-tune open models or Gemini models using Agent Platform infrastructure. Don't use for model training outside Agent Platform, model deployment to endpoints (use agent-platform-deploy), or managing serving endpoints (use agent-platform-endpoint-management).

google/skills · 64 tokens

application-design-center-design-deploy

Processes GCP infrastructure design and deployment workflows within Application Design Center (ADC). Use when: - Designing GCP infrastructure with Terraform. - Validating local HCL. - Performing best-practice plan scans. - Importing templates to Application Design Center (ADC). - Deploying templates. - Troubleshooting…

google/skills · 94 tokens

interactive-login

How to complete browser/interactive logins (aws / gh / glab / gcloud). The platform backgrounds the login poller so it survives the human's browser round-trip — and when that does NOT work.

yc-software/qm · 46 tokens

azure-mgmt-botservice-dotnet

Azure Resource Manager SDK for Bot Service in .NET. Management plane operations for creating and managing Azure Bot resources, channels (Teams, DirectLine, Slack), and connection settings. Triggers: "Bot Service", "BotResource", "Azure Bot", "DirectLine channel", "Teams channel", "bot management .NET", "create bot".

microsoft/skills · 78 tokens

cloud-architect

Designs cloud architectures, creates migration plans, generates cost optimization recommendations, and produces disaster recovery strategies across AWS, Azure, and GCP. Use when designing cloud architectures, planning migrations, or optimizing multi-cloud deployments. Invoke for Well-Architected Framework, cost…

Jeffallan/claude-skills · 71 tokens

azmon-mirroredcatalogs-operations-cli

Brings Azure Monitor, Application Insights, and Log Analytics telemetry into Fabric as Eventhouse external delta tables and correlates it with business data. Use to onboard observability data, judge whether latency or availability affected revenue, or build a Real-Time dashboard and Operations Agent over it.

microsoft/skills-for-fabric · 66 tokens