ワンクリックで
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: