aws-cost-optimizer

Featured

Comprehensive AWS cost analysis and optimization recommendations using AWS CLI and Cost Explorer

AI & Automation 39,227 stars 6374 forks Updated today MIT

Install

View on GitHub

Quality Score: 99/100

Stars 20%
100
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# AWS Cost Optimizer Analyze AWS spending patterns, identify waste, and provide actionable cost reduction strategies. ## When to Use This Skill Use this skill when you need to analyze AWS spending, identify cost optimization opportunities, or reduce cloud waste. ## Core Capabilities **Cost Analysis** - Parse AWS Cost Explorer data for trends and anomalies - Break down costs by service, region, and resource tags - Identify month-over-month spending increases **Resource Optimization** - Detect idle EC2 instances (low CPU utilization) - Find unattached EBS volumes and old snapshots - Identify unused Elastic IPs - Locate underutilized RDS instances - Find old S3 objects eligible for lifecycle policies **Savings Recommendations** - Suggest Reserved Instance/Savings Plans opportunities - Recommend instance rightsizing based on CloudWatch metrics - Identify resources in expensive regions - Calculate potential savings with specific actions ## AWS CLI Commands ### Get Cost and Usage ```bash # Last 30 days cost by service aws ce get-cost-and-usage \ --time-period Start=$(date -d '30 days ago' +%Y-%m-%d),End=$(date +%Y-%m-%d) \ --granularity MONTHLY \ --metrics BlendedCost \ --group-by Type=DIMENSION,Key=SERVICE # Daily costs for current month aws ce get-cost-and-usage \ --time-period Start=$(date +%Y-%m-01),End=$(date +%Y-%m-%d) \ --granularity DAILY \ --metrics UnblendedCost ``` ### Find Unused Resources ```bash # Unattached EBS volumes aws ec2 describe-volume...

Details

Author
sickn33
Repository
sickn33/antigravity-awesome-skills
Created
4 months ago
Last Updated
today
Language
Python
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category