← スキル一覧に戻る

cost-optimization
by timequity
Claude Code plugins for developers
⭐ 2🍴 0📅 2026年1月24日
SKILL.md
name: cost-optimization description: Cloud cost management, rightsizing, and FinOps practices.
Cost Optimization
FinOps Principles
- Visibility - Know what you spend
- Optimization - Reduce waste
- Governance - Control growth
Quick Wins
| Action | Savings |
|---|---|
| Reserved instances | 30-70% |
| Spot instances | 60-90% |
| Rightsizing | 20-40% |
| Unused resources | 100% |
| Storage tiering | 50-80% |
Rightsizing
# AWS: Find underutilized instances
aws cloudwatch get-metric-statistics \
--namespace AWS/EC2 \
--metric-name CPUUtilization \
--dimensions Name=InstanceId,Value=i-xxx \
--start-time 2024-01-01T00:00:00Z \
--end-time 2024-01-31T00:00:00Z \
--period 86400 \
--statistics Average
If CPU < 20% avg: Downsize or use smaller instance.
Reserved vs Spot
| Workload | Recommendation |
|---|---|
| Steady baseline | Reserved (1-3 year) |
| Variable load | On-demand + Spot |
| Batch processing | Spot |
| Stateless services | Spot with fallback |
Storage Optimization
# S3 Lifecycle
resource "aws_s3_bucket_lifecycle_configuration" "main" {
bucket = aws_s3_bucket.main.id
rule {
id = "archive"
status = "Enabled"
transition {
days = 30
storage_class = "STANDARD_IA"
}
transition {
days = 90
storage_class = "GLACIER"
}
}
}
Monitoring Costs
- AWS Cost Explorer
- GCP Billing Reports
- Azure Cost Management
- Third-party: CloudHealth, Spot.io
Tagging Strategy
tags = {
Environment = "production"
Team = "platform"
Service = "api"
CostCenter = "engineering"
}
スコア
総合スコア
40/100
リポジトリの品質指標に基づく評価
✓SKILL.md
SKILL.mdファイルが含まれている
+20
○LICENSE
ライセンスが設定されている
0/10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
レビュー
💬
レビュー機能は近日公開予定です