coreweave-local-dev-loop

Featured

Set up local development workflow for CoreWeave GPU deployments. Use when building containers locally, testing YAML manifests, or iterating on model serving configurations before deploying. Trigger with phrases like "coreweave dev setup", "coreweave local testing", "develop for coreweave", "coreweave container build".

AI & Automation 2,266 stars 315 forks Updated today MIT

Install

View on GitHub

Quality Score: 99/100

Stars 20%
100
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# CoreWeave Local Dev Loop ## Overview Local development workflow for CoreWeave: build containers, test YAML manifests with dry-run, push to registry, and deploy to CoreWeave CKS. ## Prerequisites - Completed `coreweave-install-auth` setup - Docker installed locally - Container registry access (Docker Hub, GHCR, or CoreWeave registry) ## Instructions ### Step 1: Project Structure ``` my-inference-service/ ├── Dockerfile ├── src/ │ ├── server.py # Inference server code │ └── model_config.py # Model configuration ├── k8s/ │ ├── deployment.yaml # GPU deployment manifest │ ├── service.yaml # Service and ingress │ └── hpa.yaml # Horizontal pod autoscaler ├── scripts/ │ ├── build.sh # Build and push container │ └── deploy.sh # Deploy to CoreWeave ├── .env.local └── Makefile ``` ### Step 2: Build and Push Container ```bash # Build locally docker build -t my-inference:latest . # Tag for registry docker tag my-inference:latest ghcr.io/myorg/my-inference:v1.0.0 # Push docker push ghcr.io/myorg/my-inference:v1.0.0 ``` ### Step 3: Validate Manifests Before Deploy ```bash # Dry-run against CoreWeave cluster kubectl apply -f k8s/deployment.yaml --dry-run=server # Diff against current state kubectl diff -f k8s/deployment.yaml # Check resource requests match available GPU types kubectl get nodes -l gpu.nvidia.com/class=A100_PCIE_80GB --no-headers | wc -l ``` ### Step 4: Deploy and Watch ```bash kubectl apply -f ...

Details

Author
jeremylongshore
Repository
jeremylongshore/claude-code-plugins-plus-skills
Created
7 months ago
Last Updated
today
Language
Python
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category

AI & Automation Featured

coreweave-deploy-integration

Deploy inference services on CoreWeave with Helm charts and Kustomize. Use when deploying multi-model inference, managing GPU deployments at scale, or templating CoreWeave manifests. Trigger with phrases like "deploy coreweave", "coreweave helm", "coreweave kustomize", "coreweave deployment patterns".

2,266 Updated today
jeremylongshore
DevOps & Infrastructure Featured

coreweave-ci-integration

Integrate CoreWeave deployments into CI/CD pipelines with GitHub Actions. Use when automating container builds, deploying inference services from CI, or validating GPU manifests in pull requests. Trigger with phrases like "coreweave CI", "coreweave github actions", "coreweave pipeline", "automate coreweave deploy".

2,266 Updated today
jeremylongshore
AI & Automation Featured

coreweave-install-auth

Configure CoreWeave Kubernetes Service (CKS) access with kubeconfig and API tokens. Use when setting up kubectl access to CoreWeave, configuring CKS clusters, or authenticating with CoreWeave cloud services. Trigger with phrases like "install coreweave", "setup coreweave", "coreweave kubeconfig", "coreweave auth", "connect to coreweave".

2,266 Updated today
jeremylongshore
AI & Automation Featured

coreweave-hello-world

Deploy a GPU workload on CoreWeave with kubectl. Use when running your first GPU job, testing inference, or verifying CoreWeave cluster access. Trigger with phrases like "coreweave hello world", "coreweave first deploy", "coreweave gpu test", "run on coreweave".

2,266 Updated today
jeremylongshore
AI & Automation Solid

coreweave-prod-checklist

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".

2,266 Updated today
jeremylongshore