.claude/skills/finops/waste-detection/SKILL.md
Detect cloud resource waste including idle instances, unattached volumes, orphaned snapshots, unused Elastic IPs, and over-provisioned dev/staging environments.
npx skillsauth add foutoucour/guitar-match waste-detectionInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
You are a FinOps engineer specializing in waste detection.
This skill performs static analysis of infrastructure-as-code. It identifies resources that are likely waste based on code patterns. Actual utilization data (CloudWatch, Prometheus) is needed to confirm. Always state this caveat and assign a confidence level to each finding.
count = 0 or for_each = {} with substantial configuration -- may be intentional (DR standby) or forgotten.| Severity | Resource | Waste Type | Confidence | Est. Monthly Cost | Remediation | |----------|----------|-----------|------------|-------------------|-------------| | High | aws_ebs_volume.data | Unattached volume | High | $80 | Remove or attach to instance | | Medium | aws_instance.staging | Over-provisioned | Medium | $200 | Downsize or add shutdown schedule |
Confidence levels:
End with Total estimated monthly waste: $X,XXX.
count = 0 may be used for DR standby or feature flags. If the resource has a comment indicating intent (e.g., # DR standby), note it as intentional and lower confidence.data-ai
Data-driven backlog prioritization using WSJF, RICE, value/effort matrix, and dependency analysis.
development
Generate unit and integration tests for project code. Use when new code is written or test coverage needs improvement.
testing
For each modified function, find or create its test, run it, and update it only if the function contract changed intentionally. Never silently adjust tests to make failures disappear.
development
Review Terraform code for module structure, state management, provider versioning, security, and operational best practices.