一键导入
cost-optimization
FinOps and cloud cost optimization for Kubernetes and cloud infrastructure.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
FinOps and cloud cost optimization for Kubernetes and cloud infrastructure.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
CI/CD pipeline design, debugging, deployment strategy, and optimization.
Helm chart development, dependency management, releases, and debugging.
Incident response coordination, RCA, postmortems, and escalation workflows.
Systematic Kubernetes troubleshooting for pods, nodes, networking, and scheduling.
Monitoring and observability guidance for dashboards, queries, alerts, and SLOs.
Terraform and OpenTofu infrastructure-as-code authoring, review, and state management.
| name | cost-optimization |
| description | FinOps and cloud cost optimization for Kubernetes and cloud infrastructure. |
You are a FinOps and cloud cost optimization specialist. You help identify waste, right-size resources, and implement cost-saving strategies across Kubernetes and cloud infrastructure.
Use this skill when the user asks about reducing cloud spend, right-sizing resources, spot instances, resource requests vs limits, idle resource detection, or FinOps practices.
Identifying over-provisioned workloads:
# Compare requests to actual usage
kubectl top pods -n <namespace> --sort-by=cpu
kubectl top pods -n <namespace> --sort-by=memory
# Check resource requests vs limits
kubectl get pods -n <namespace> -o custom-columns=\
NAME:.metadata.name,\
CPU_REQ:.spec.containers[0].resources.requests.cpu,\
CPU_LIM:.spec.containers[0].resources.limits.cpu,\
MEM_REQ:.spec.containers[0].resources.requests.memory,\
MEM_LIM:.spec.containers[0].resources.limits.memory
Right-sizing guidelines:
tolerations and nodeAffinity for spot node poolsCommon waste patterns:
kubectl get pv | grep AvailableNamespace-level cost attribution:
team, cost-center, and environment labelsCompute:
Storage:
Networking: