coreweave-pack

v1.11.0 by Jeremy Longshore

Claude Code skill pack for CoreWeave (23 skills)

23 plugin-local skills
MIT License
Claude Code Adapters (declared)

Installation

Open Claude Code and run this command:

/plugin install coreweave-pack@claude-code-plugins-plus

Use --global to install for all projects, or --project for current project only.

What It Does

> Community-contributed. Not affiliated with, endorsed by, or sponsored by CoreWeave, Inc. CoreWeave is a registered trademark of CoreWeave, Inc.

22 production-grade Claude Code skills for GPU cloud computing with CoreWeave Kubernetes Service.

Skills (23) plugin-local skills

coreweave-ci-integration View full skill →

Integrate CoreWeave deployments into CI/CD pipelines with GitHub Actions.

ReadWriteEditBash(gh:*)
coreweave-common-errors View full skill →

Diagnose and fix CoreWeave GPU scheduling, pod, and networking errors.

ReadBash(kubectl:*)Grep
coreweave-core-workflow-a View full skill →

Deploy KServe InferenceService on CoreWeave with autoscaling and GPU scheduling.

ReadWriteEditBash(kubectl:*)Grep
coreweave-core-workflow-b View full skill →

Run distributed GPU training jobs on CoreWeave with multi-node PyTorch.

ReadWriteEditBash(kubectl:*)Grep
coreweave-cost-tuning View full skill →

Optimize CoreWeave GPU cloud costs with right-sizing and scheduling.

ReadWriteEditBash(kubectl:*)Grep
coreweave-data-handling View full skill →

Handle training data and model artifacts on CoreWeave persistent storage.

ReadWriteEditBash(kubectl:*)Grep
coreweave-debug-bundle View full skill →

Collect CoreWeave cluster diagnostics for support tickets.

ReadBash(kubectl:*)Bash(tar:*)Grep
coreweave-deploy-integration View full skill →

Deploy inference services on CoreWeave with Helm charts and Kustomize.

ReadWriteEditBash(helm:*)Bash(kubectl:*)Bash(kustomize:*)
coreweave-enterprise-rbac View full skill →

Configure RBAC and namespace isolation for CoreWeave multi-team GPU access.

ReadWriteEditBash(kubectl:*)Grep
coreweave-fabric-diagnostics View full skill →

Diagnose the most expensive silent failure on a CoreWeave multi-node GPU job: GPUDirect RDMA falling back from InfiniBand to TCP.

ReadWriteEditGlobBash(kubectl get:*)Bash(python3:*)
coreweave-gpu-cost-leak-hunter View full skill →

Hunt down CoreWeave GPU cost leaks — idle reserved capacity, wrong-GPU-type right-sizing waste, allocated-but-idle instances, and on-demand spend that should be committed — then produce a CFO-grokkable, dollar-ranked FinOps report.

ReadWriteEditGlobBash(curl:*)Bash(jq:*)Bash(kubectl get:*)Bash(python3:*)
coreweave-gpu-node-forensics View full skill →

Triage a dead or degraded GPU on a CoreWeave node fast — decide reschedule vs GPU-reset vs node-reboot vs RMA from an Xid code or a pasted dmesg / nvidia-smi blob, so a bad card does not silently kill a multi-day training run.

ReadBash(python3:*)Bash(nvidia-smi -q:*)Bash(kubectl get:*)Bash(dmesg:*)
coreweave-hello-world View full skill →

Deploy a GPU workload on CoreWeave with kubectl.

ReadWriteEditBash(kubectl:*)
coreweave-incident-runbook View full skill →

Incident response runbook for CoreWeave GPU workload failures.

ReadBash(kubectl:*)Grep
coreweave-install-auth View full skill →

Configure CoreWeave Kubernetes Service (CKS) access with kubeconfig and API tokens.

ReadWriteEditBash(kubectl:*)Grep
coreweave-local-dev-loop View full skill →

Set up local development workflow for CoreWeave GPU deployments.

ReadWriteEditBash(kubectl:*)Bash(docker:*)Grep
coreweave-multi-env-setup View full skill →

Configure CoreWeave across development, staging, and production environments.

ReadWriteEditBash(kubectl:*)Bash(kustomize:*)Grep
coreweave-observability View full skill →

Set up GPU monitoring and observability for CoreWeave workloads.

ReadWriteEditBash(kubectl:*)Grep
coreweave-performance-tuning View full skill →

Optimize CoreWeave GPU inference latency and throughput.

ReadWriteEditBash(kubectl:*)
coreweave-prod-checklist View full skill →

Production readiness checklist for CoreWeave GPU workloads.

ReadBash(kubectl:*)Grep
coreweave-sdk-patterns View full skill →

Production-ready patterns for CoreWeave GPU workload management with kubectl and Python.

ReadWriteEdit
coreweave-security-basics View full skill →

Secure CoreWeave deployments with RBAC, network policies, and secrets management.

ReadWriteEditBash(kubectl:*)Grep
coreweave-upgrade-migration View full skill →

Upgrade CoreWeave deployments and migrate between GPU types.

ReadWriteEditBash(kubectl:*)Grep

How It Works

1. Install the Pack


/plugin install coreweave-pack@claude-code-plugins-plus

2. Configure kubectl

Download your kubeconfig from cloud.coreweave.com and set it up:


export KUBECONFIG=~/.kube/coreweave
kubectl get nodes

3. Deploy Your First GPU Workload


kubectl run gpu-test --image=nvidia/cuda:12.2.0-base-ubuntu22.04 \
  --restart=Never \
  --overrides='{"spec":{"containers":[{"name":"gpu-test","image":"nvidia/cuda:12.2.0-base-ubuntu22.04","command":["nvidia-smi"],"resources":{"limits":{"nvidia.com/gpu":"1"}}}]}}' \
  -- nvidia-smi

kubectl logs gpu-test
kubectl delete pod gpu-test

4. Deploy an Inference Service

Follow coreweave-core-workflow-a to deploy a KServe InferenceService with autoscaling.

Ready to use coreweave-pack?