castai-pack

v1.4.0 by Jeremy Longshore

Claude Code skill pack for Cast AI (18 skills)

18 Skills
MIT License

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)

castai-ci-integration View full skill →

'Integrate CAST AI policy validation and cost checks into CI/CD pipelines.

ReadWriteEditBash(gh:*)
castai-common-errors View full skill →

'Diagnose and fix CAST AI agent, API, and autoscaler errors.

ReadBash(kubectl:*)Bash(curl:*)Grep
castai-core-workflow-a View full skill →

'Configure CAST AI autoscaler policies and node templates for cost optimization.

ReadWriteEditBash(curl:*)Bash(kubectl:*)Grep
castai-core-workflow-b View full skill →

'Configure CAST AI Workload Autoscaler for pod-level right-sizing and.

ReadWriteEditBash(curl:*)Bash(kubectl:*)Grep
castai-cost-tuning View full skill →

'Maximize Kubernetes cost savings with CAST AI spot strategies and right-sizing.

ReadWriteEditBash(curl:*)Grep
castai-debug-bundle View full skill →

'Collect CAST AI diagnostic bundle for support tickets and troubleshooting.

ReadBash(kubectl:*)Bash(curl:*)Bash(tar:*)Bash(helm:*)Grep
castai-deploy-integration View full skill →

'Deploy CAST AI across multi-cloud Kubernetes clusters with Terraform.

ReadWriteEditBash(terraform:*)Bash(helm:*)Bash(kubectl:*)
castai-hello-world View full skill →

'Query CAST AI cluster savings report and node inventory.

ReadWriteEditBash(curl:*)Bash(kubectl:*)
castai-reference-architecture View full skill →

'CAST AI reference architecture for multi-cluster Kubernetes cost optimization.

ReadWriteEditGrep
castai-sdk-patterns View full skill →

'Production-ready CAST AI REST API wrapper patterns in TypeScript and.

ReadWriteEdit
castai-security-basics View full skill →

'Secure CAST AI API keys, RBAC configuration, and Kvisor security agent.

ReadWriteEditBash(kubectl:*)Bash(helm:*)Grep
castai-upgrade-migration View full skill →

'Upgrade CAST AI Helm charts, Terraform provider, and agent components.

ReadWriteEditBash(helm:*)Bash(terraform:*)Bash(kubectl:*)
castai-webhooks-events View full skill →

'Configure CAST AI webhook notifications for cluster events and audit.

ReadWriteEditBash(curl:*)

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.

Ready to use castai-pack?