From coreweave-pack
Sets up CoreWeave Kubernetes for dev, staging, and prod with Kustomize GPU patches, namespace separation, and per-env quotas/scaling.
npx claudepluginhub jeremylongshore/claude-code-plugins-plus-skills --plugin coreweave-packThis skill is limited to using the following tools:
| Environment | GPU Type | Scale-to-Zero | Replicas |
Configures kubectl access to CoreWeave Kubernetes clusters using kubeconfig and API tokens, verifies GPU nodes, and deploys test GPU pods.
Guides Next.js Cache Components and Partial Prerendering (PPR): 'use cache' directives, cacheLife(), cacheTag(), revalidateTag() for caching, invalidation, static/dynamic optimization. Auto-activates on cacheComponents: true.
Guides building MCP servers enabling LLMs to interact with external services via tools. Covers best practices, TypeScript/Node (MCP SDK), Python (FastMCP).
Share bugs, ideas, or general feedback.
| Environment | GPU Type | Scale-to-Zero | Replicas |
|---|---|---|---|
| Dev | L40 | Yes | 0-1 |
| Staging | A100 40GB | Yes | 0-2 |
| Production | A100 80GB | No | 2-10 |
# k8s/overlays/dev/gpu-patch.yaml
- op: replace
path: /spec/template/spec/affinity/nodeAffinity/requiredDuringSchedulingIgnoredDuringExecution/nodeSelectorTerms/0/matchExpressions/0/values
value: ["L40"]
# k8s/overlays/prod/gpu-patch.yaml
value: ["A100_PCIE_80GB"]
# Deploy per environment
kubectl apply -k k8s/overlays/dev/
kubectl apply -k k8s/overlays/prod/
For observability, see coreweave-observability.