From coreweave-pack
Automates CoreWeave Kubernetes deployments in GitHub Actions CI/CD: builds/pushes containers, updates inference services via kubectl, validates rollouts and GPU manifests.
How this skill is triggered — by the user, by Claude, or both
Slash command
/coreweave-pack:coreweave-ci-integrationThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
```yaml
name: CoreWeave Deploy
on:
push:
branches: [main]
paths: ["k8s/**", "Dockerfile"]
jobs:
build-deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build and push container
run: |
echo "${{ secrets.GHCR_TOKEN }}" | docker login ghcr.io -u ${{ github.actor }} --password-stdin
docker build -t ghcr.io/${{ github.repository }}/inference:${{ github.sha }} .
docker push ghcr.io/${{ github.repository }}/inference:${{ github.sha }}
- name: Deploy to CoreWeave
env:
KUBECONFIG_DATA: ${{ secrets.COREWEAVE_KUBECONFIG }}
run: |
echo "$KUBECONFIG_DATA" | base64 -d > /tmp/kubeconfig
export KUBECONFIG=/tmp/kubeconfig
kubectl set image deployment/inference \
inference=ghcr.io/${{ github.repository }}/inference:${{ github.sha }}
kubectl rollout status deployment/inference --timeout=300s
- name: Validate deployment
run: |
export KUBECONFIG=/tmp/kubeconfig
kubectl get pods -l app=inference
# Store secrets
gh secret set COREWEAVE_KUBECONFIG --body "$(base64 -w0 ~/.kube/coreweave)"
gh secret set GHCR_TOKEN --body "$GITHUB_TOKEN"
For deployment patterns, see coreweave-deploy-integration.
npx claudepluginhub jeremylongshore/claude-code-plugins-plus-skills --plugin coreweave-packSets up local dev loop for CoreWeave GPU deployments: build/push Docker images, dry-run kubectl YAML manifests, deploy to CKS cluster.
Designs and implements CI/CD pipelines, GitOps workflows, and zero-downtime deployments with rollback and observability.
Creates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.