castai-pack Verified Silver

Verified Silver · 79/100 saas-packs v1.0.0 by Jeremy Longshore

Claude Code skill pack for Cast AI (18 skills)

18 Skills
MIT License
Free Pricing

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 SKILL.md View full skill →

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

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

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

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

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

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

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

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

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

ReadWriteEditBash(curl:*)Grep
castai-debug-bundle SKILL.md 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 SKILL.md View full skill →

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

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

'Query CAST AI cluster savings report and node inventory.

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

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

ReadWriteEditGrep
castai-sdk-patterns SKILL.md View full skill →

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

ReadWriteEdit
castai-security-basics SKILL.md View full skill →

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

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

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

ReadWriteEditBash(helm:*)Bash(terraform:*)Bash(kubectl:*)
castai-webhooks-events SKILL.md 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?