> coreweave-data-handling
Handle training data and model artifacts on CoreWeave persistent storage. Use when managing large datasets, configuring storage classes, or implementing data pipelines for GPU workloads. Trigger with phrases like "coreweave data", "coreweave storage", "coreweave pvc", "coreweave dataset management".
curl "https://skillshub.wtf/jeremylongshore/claude-code-plugins-plus-skills/coreweave-data-handling?format=md"CoreWeave Data Handling
Storage Classes
| Class | Type | Use Case |
|---|---|---|
shared-hdd-ord1 | HDD | Training data archival |
shared-ssd-ord1 | SSD | Model weights, active datasets |
block-nvme-ord1 | NVMe | High-performance training |
PVC Configuration
apiVersion: v1
kind: PersistentVolumeClaim
metadata:
name: model-storage
spec:
accessModes: ["ReadWriteMany"]
resources:
requests:
storage: 500Gi
storageClassName: shared-ssd-ord1
Data Loading Job
apiVersion: batch/v1
kind: Job
metadata:
name: download-model
spec:
template:
spec:
restartPolicy: Never
containers:
- name: downloader
image: python:3.11-slim
command: ["python3", "-c"]
args:
- |
from huggingface_hub import snapshot_download
snapshot_download("meta-llama/Llama-3.1-8B-Instruct", local_dir="/models/llama-8b")
volumeMounts:
- name: models
mountPath: /models
env:
- name: HF_TOKEN
valueFrom:
secretKeyRef:
name: hf-token
key: token
volumes:
- name: models
persistentVolumeClaim:
claimName: model-storage
Resources
Next Steps
For RBAC configuration, see coreweave-enterprise-rbac.
> related_skills --same-repo
> fathom-cost-tuning
Optimize Fathom API usage and plan selection. Trigger with phrases like "fathom cost", "fathom pricing", "fathom plan".
> fathom-core-workflow-b
Sync Fathom meeting data to CRM and build automated follow-up workflows. Use when integrating Fathom with Salesforce, HubSpot, or custom CRMs, or creating automated post-meeting email summaries. Trigger with phrases like "fathom crm sync", "fathom salesforce", "fathom follow-up", "fathom post-meeting workflow".
> fathom-core-workflow-a
Build a meeting analytics pipeline with Fathom transcripts and summaries. Use when extracting insights from meetings, building CRM sync, or creating automated meeting follow-up workflows. Trigger with phrases like "fathom analytics", "fathom meeting pipeline", "fathom transcript analysis", "fathom action items sync".
> fathom-common-errors
Diagnose and fix Fathom API errors including auth failures and missing data. Use when API calls fail, transcripts are empty, or webhooks are not firing. Trigger with phrases like "fathom error", "fathom not working", "fathom api failure", "fix fathom".