castai-pack
Claude Code skill pack for Cast AI (18 skills)
Installation
Open Claude Code and run this command:
/plugin install castai-pack@claude-code-plugins-plus
Use --global to install for all projects, or --project for current project only.
What It Does
> 18 production-grade Claude Code skills for Kubernetes cost optimization with CAST AI
Skills (18) plugin-local skills
Integrate CAST AI policy validation and cost checks into CI/CD pipelines.
Diagnose and fix CAST AI agent, API, and autoscaler errors.
Configure CAST AI autoscaler policies and node templates for cost optimization.
Configure CAST AI Workload Autoscaler for pod-level right-sizing and VPA.
Maximize Kubernetes cost savings with CAST AI spot strategies and right-sizing.
Collect CAST AI diagnostic bundle for support tickets and troubleshooting.
Deploy CAST AI across multi-cloud Kubernetes clusters with Terraform modules.
Query CAST AI cluster savings report and node inventory.
Install and configure CAST AI agent on a Kubernetes cluster with API key authentication.
Set up a local Kubernetes development loop with CAST AI cost monitoring.
Optimize CAST AI autoscaler performance, node provisioning speed, and API efficiency.
Production readiness checklist for CAST AI cluster onboarding.
Handle CAST AI API rate limits with backoff and request queuing.
CAST AI reference architecture for multi-cluster Kubernetes cost optimization.
Production-ready CAST AI REST API wrapper patterns in TypeScript and Python.
Secure CAST AI API keys, RBAC configuration, and Kvisor security agent.
Upgrade CAST AI Helm charts, Terraform provider, and agent components.
Configure CAST AI webhook notifications for cluster events and audit logs.
How It Works
1. Install the Pack
/plugin install castai-pack@claude-code-plugins-plus
2. Get Your API Key
Sign up at console.cast.ai, navigate to API > API Access Keys, and create a Full Access key.
3. Connect Your First Cluster
export CASTAI_API_KEY="your-key"
helm repo add castai-helm https://castai.github.io/helm-charts
helm repo update
helm upgrade --install castai-agent castai-helm/castai-agent \
-n castai-agent --create-namespace \
--set apiKey="${CASTAI_API_KEY}" \
--set provider="eks"
4. Check Your Savings
export CASTAI_CLUSTER_ID="your-cluster-id"
curl -s -H "X-API-Key: ${CASTAI_API_KEY}" \
"https://api.cast.ai/v1/kubernetes/clusters/${CASTAI_CLUSTER_ID}/savings" \
| jq '{monthly: .monthlySavings, percent: .savingsPercentage}'
5. Enable Autoscaling
Follow castai-core-workflow-a to configure autoscaler policies and start saving.