スキル一覧に戻る
grahama1970

runpod-ops

by grahama1970

1🍴 0📅 2026年1月20日
GitHubで見るManusで実行

SKILL.md


name: runpod-ops description: > Provision, manage, and terminate RunPod GPU instances for LLM training. Use when user says "spin up GPU", "create RunPod instance", "terminate pod", "check GPU status", "provision training server", or needs cloud GPU resources. allowed-tools: Bash, Read triggers:

  • spin up GPU
  • create RunPod
  • terminate pod
  • GPU instance
  • provision server
  • check pod status
  • RunPod management metadata: short-description: RunPod GPU instance management project-path: $RUNPOD_OPS_REPO (set via env; defaults to GitHub clone)

RunPod Operations Skill

Manage RunPod GPU instances for LLM training and inference.

Self-contained skill - auto-installs via uv run from git (no pre-installation needed).

Quick Start

# Via wrapper (auto-installs from GitHub on demand)
.agents/skills/runpod-ops/run.sh list-instances

# Create an instance
.agents/skills/runpod-ops/run.sh create-instance 70B --hours 4

# Monitor an instance
.agents/skills/runpod-ops/run.sh monitor <pod-id>

# Terminate an instance
.agents/skills/runpod-ops/run.sh terminate <pod-id>

Commands

CommandPurpose
create-instanceCreate GPU pod optimized for model size
list-instancesShow all running pods with status/cost
monitorLive monitoring of pod metrics
terminateSafely terminate a pod
estimate-costEstimate training cost before creating
optimizeFind optimal GPU config using benchmarks
start-trainingStart a training job on RunPod
serveStart inference server on RunPod

Examples

Create Instance

.agents/skills/runpod-ops/run.sh create-instance 70B --hours 4

Returns: pod_id=abc123


### Estimate Cost
```bash
.agents/skills/runpod-ops/run.sh estimate-cost 70B --hours 8

Monitor Instance

.agents/skills/runpod-ops/run.sh monitor <pod-id>

Terminate Instance

.agents/skills/runpod-ops/run.sh terminate <pod-id>

Environment Variables

VariableRequiredDescription
RUNPOD_API_KEYYesRunPod API key

Typical Workflow

# 1. Estimate cost
.agents/skills/runpod-ops/run.sh estimate-cost 70B --hours 8

# 2. Create pod
.agents/skills/runpod-ops/run.sh create-instance 70B --hours 8

# 3. Monitor or SSH into pod
.agents/skills/runpod-ops/run.sh monitor <pod-id>

# 4. Run training...

# 5. Terminate when done
.agents/skills/runpod-ops/run.sh terminate <pod-id>

Integration with Memory

After training completes, log the lesson:

memory-agent learn \
  --problem "Training Qwen3-70B on RunPod" \
  --solution "Used A100-80GB, 8 hours, cost $24.72. Config: lr=2e-5, batch=4"

スコア

総合スコア

50/100

リポジトリの品質指標に基づく評価

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

0/10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

0/5

レビュー

💬

レビュー機能は近日公開予定です