azure-costs

Installation
SKILL.md

Azure Cost Management Skills

Cost Management Basics

# Get current month spend for a subscription
az consumption usage list \
  --start-date 2024-01-01 \
  --end-date 2024-01-31 \
  --query "[].{Service:instanceName, Cost:pretaxCost, Currency:currency}" \
  --output table

# Get budget list
az consumption budget list --output table
Installs
2
GitHub Stars
1
First Seen
May 12, 2026
azure-costs — tomz/agent-skills