aws-costs
Installation
SKILL.md
AWS Cost Management — Comprehensive Reference
Cost Explorer
CLI Queries
# Monthly costs by service (current month)
aws ce get-cost-and-usage \
--time-period Start=$(date +%Y-%m-01),End=$(date +%Y-%m-%d) \
--granularity MONTHLY \
--metrics BlendedCost \
--group-by Type=DIMENSION,Key=SERVICE \
--query 'ResultsByTime[0].Groups | sort_by(@, &Keys[0])[].[Keys[0],Metrics.BlendedCost.Amount]' \
--output table