Cloud cost tag coverage auditor
Skill sisodiabhumca/agent-skills/skills/cloud-cost-tag-coverage-auditor
Production-Ready Agent Skills : product analytics, growth experiments, CRM, research synthesis, postmortems, data contracts, SaaS spend, compliance, architecture maps, and LLM eval and many more.
npx -y skills add sisodiabhumca/agent-skills --skill cloud-cost-tag-coverage-auditorAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Audit cloud resource export data for missing or invalid cost allocation tags and output a vendor-neutral remediation plan.
SKILL.md
1.4 KB, as published. Nobody here has run it
When to invoke
- You need cost allocation hygiene across teams/environments.
- You have a resource export (CSV) and want to quantify tag coverage.
- You want a prioritized remediation plan (which owners/projects to fix first).
Inputs needed
- A CSV with a row per resource, containing:
resource_idservicecost_monthly- tag columns, e.g.
tag_owner,tag_cost_center,tag_env
- A JSON policy file listing required tags and allowed values (optional).
Workflow
- Load CSV and infer tag columns (prefix
tag_). - Validate required tags:
- present and non-empty
- optional allowed-values checks from policy
- Compute:
- overall tag coverage rate
- cost-weighted coverage rate
- top missing tags by cost impact
- Build a remediation plan:
- prioritize by cost impact
- group by service and owner tag (if available)
- Emit JSON report.
Output format
JSON to stdout:
coverage: overall and cost-weightedmissing_by_tag: counts and cost impacttop_resources_to_fixremediation_plan
Guardrails
- Vendor-neutral: works with generic CSV exports and tag conventions.
- Do not assume a specific cloud provider.
Reference code
cloud_cost_tag_coverage_auditor.py