cost-check
Installation
SKILL.md
Cost Check
Detect the IaC stack in the current directory, run a compatible cost tool, and produce a cost report with flagged items.
Core principle: Orchestrate real cost tools — do not parse IaC files directly or estimate prices manually.
Step 1: Detect IaC stack
Scan the current directory for IaC project files:
ls Pulumi.yaml 2>/dev/null && echo "pulumi: detected"
ls *.tf 2>/dev/null && echo "terraform: detected"
Related skills