coreweave-pack
Claude Code skill pack for CoreWeave (23 skills)
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
Integrate CoreWeave deployments into CI/CD pipelines with GitHub Actions.
Diagnose and fix CoreWeave GPU scheduling, pod, and networking errors.
Deploy KServe InferenceService on CoreWeave with autoscaling and GPU scheduling.
Run distributed GPU training jobs on CoreWeave with multi-node PyTorch.
Optimize CoreWeave GPU cloud costs with right-sizing and scheduling.
Handle training data and model artifacts on CoreWeave persistent storage.
Collect CoreWeave cluster diagnostics for support tickets.
Deploy inference services on CoreWeave with Helm charts and Kustomize.
Configure RBAC and namespace isolation for CoreWeave multi-team GPU access.
Diagnose the most expensive silent failure on a CoreWeave multi-node GPU job: GPUDirect RDMA falling back from InfiniBand to TCP.
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.
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.
Deploy a GPU workload on CoreWeave with kubectl.
Incident response runbook for CoreWeave GPU workload failures.
Configure CoreWeave Kubernetes Service (CKS) access with kubeconfig and API tokens.
Set up local development workflow for CoreWeave GPU deployments.
Configure CoreWeave across development, staging, and production environments.
Set up GPU monitoring and observability for CoreWeave workloads.
Optimize CoreWeave GPU inference latency and throughput.
Production readiness checklist for CoreWeave GPU workloads.
Production-ready patterns for CoreWeave GPU workload management with kubectl and Python.
Secure CoreWeave deployments with RBAC, network policies, and secrets management.
Upgrade CoreWeave deployments and migrate between GPU types.
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.