'Production readiness checklist for CoreWeave GPU workloads.
Scanned 5/30/2026
Install to Claude Code
npx -y skills add jeremylongshore/claude-code-plugins-plus-skills --skill coreweave-prod-checklist --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Coreweave Prod Checklist?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/jeremylongshore-coreweave-prod-checklist)More formats (shields.io, HTML) on the badges page.
---
name: coreweave-prod-checklist
description: 'Production readiness checklist for CoreWeave GPU workloads.
Use when launching inference services, preparing GPU training for production,
or validating deployment configurations.
Trigger with phrases like "coreweave production", "coreweave go-live",
"coreweave checklist", "coreweave launch".
'
allowed-tools: Read, Bash(kubectl:*), Grep
version: 1.0.0
license: MIT
author: Jeremy Longshore <jeremy@intentsolutions.io>
tags:
- saas
- gpu-cloud
- kubernetes
- inference
- coreweave
compatibility: Designed for Claude Code
---
# CoreWeave Production Checklist
## Inference Services
- [ ] GPU type and count validated for model size
- [ ] Autoscaling configured (KServe or HPA)
- [ ] Health and readiness probes set
- [ ] Resource requests AND limits specified
- [ ] Node affinity targeting correct GPU class
- [ ] `minReplicas >= 1` for production (no cold starts)
## Storage
- [ ] Model weights in PVC (not downloaded at startup)
- [ ] Checkpoints saved to persistent storage
- [ ] Storage class appropriate (SSD for inference, HDD for archival)
## Security
- [ ] Secrets for model tokens and registry access
- [ ] Network policies applied
- [ ] Container images from trusted registries
## Monitoring
- [ ] GPU utilization metrics collected
- [ ] Inference latency and throughput tracked
- [ ] Alert on pod restarts and OOM events
- [ ] Log aggregation configured
## Rollback
```bash
kubectl rollout undo deployment/my-inference
kubectl rollout status deployment/my-inference
```
## Resources
- [CoreWeave CKS](https://docs.coreweave.com/docs/products/cks)
## Next Steps
For upgrades, see `coreweave-upgrade-migration`.
Is this your skill, or is something wrong with this listing? . Author removals are honored within 72 hours.
No comments yet. Be the first to comment!