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"
Installs
49
GitHub Stars
3
First Seen
Apr 22, 2026
cost-check — rshade/agent-skills