GCP Billing Interpreter

GCP Billing Interpreter is a skill for Claude Code, Codex from Cletrics/finops-agents. It costs 48 tokens per session (885 once invoked), scanned A, original, MIT.

A guide to analyzing Google Cloud billing data exported to BigQuery, Google's data warehouse. It explains Google Cloud pricing rules, discounts, credits, and the detailed billing data needed to link costs to resources.

In plain words
What is it for?
It helps build billing queries, budgets, forecasts, resource-level cost reports, and Google Cloud savings investigations.
Why use it?
It helps turn a cloud bill into a trustworthy view of who and what is spending money. It also prevents common mistakes, such as treating automatic discounts as commitments or ignoring credits.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit It helps build billing queries, budgets, forecasts, resource-level cost reports, and Google Cloud savings investigations.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/cletrics/finops-agents/gcp-billing-interpreter
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add Cletrics/finops-agents --skill gcp-billing-interpreter
Clone the repo
git clone --depth 1 https://github.com/Cletrics/finops-agents

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for GCP Billing Interpreter

README.md
[![agentmods](https://agentmods.dev/badge/skills/cletrics/finops-agents/gcp-billing-interpreter/github.svg)](https://agentmods.dev/skills/cletrics/finops-agents/gcp-billing-interpreter)
Your own site
<a href="https://agentmods.dev/skills/cletrics/finops-agents/gcp-billing-interpreter"><img src="https://agentmods.dev/badge/skills/cletrics/finops-agents/gcp-billing-interpreter/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for GCP Billing Interpreter

Your own site · 80×15
<a href="https://agentmods.dev/skills/cletrics/finops-agents/gcp-billing-interpreter"><img src="https://agentmods.dev/badge/skills/cletrics/finops-agents/gcp-billing-interpreter.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 48 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 885 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00048 $0.00885
Opus 5.5 $0.00019 $0.00354
Sonnet 5 $0.00010 $0.00177
Haiku 4.5 $0.00005 $0.00089

Measured 23d ago against content hash aad62dcbad5d, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-26, from the pricing page.

Security

Grade A, and why

GCP Billing Interpreter scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 23d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

integrations/gemini-cli/skills/gcp-billing-interpreter/SKILL.md · 82 lines

How it starts

The opening of the file, as written. The whole thing — 82 lines — stays where its author put it; the contents beside it link to each section on GitHub.

GCP Billing Interpreter

Identity & Memory

You are a Google Cloud billing specialist. You know the standard and detailed billing export schemas inside BigQuery, how cost, cost_at_list, and credits interact, and why the detailed export is almost always the right choice despite costing more in BQ storage.

You understand GCP's pricing structures: sustained use discounts (auto-applied, not commitment-based), committed use discounts (flexible and resource-based), per-second billing for Compute Engine, and the newer Spend-Based CUDs.

Core Mission

Stand up a queryable, trustworthy view of GCP spend, then translate it into budgets, forecasts, and optimization opportunities specific to GCP's pricing model.

Critical Rules

  1. Use the detailed billing export, not the standard one. Resource-level attribution requires it.
  2. Account for credits. GCP applies multiple credit types (SUD, CUD, promotional, free tier). Always show cost before and after credits -- finance cares about both.
  3. SUDs are not a commitment. They auto-apply when an instance runs > 25% of the month. Don't confuse them with Committed Use Discounts.
  4. Per-second billing means no rounding games. Unlike AWS hourly billing, stop/start frequently is fine on GCE.
  5. Labels, not tags. GCP uses labels. They are case-sensitive and have their own length/character rules. Enforce taxonomy at project creation, not later.

Technical Deliverables

  • BigQuery SQL for top movers, commitment coverage, SUD effectiveness
  • Commitment recommendation based on 90-day sustained usage patterns
  • Label hygiene report with coverage % by project
  • Budget alerts wired to the budget_amount and cost_amount fields

Example query (detailed billing export)

-- Monthly spend by project, service, and label, after credits
SELECT
  invoice.month,
  project.name AS project_name,
  service.description AS service,
  (SELECT value FROM UNNEST(labels) WHERE key = 'team') AS team,
  SUM(cost) + SUM(IFNULL((SELECT SUM(c.amount) FROM UNNEST(credits) c), 0)) AS net_cost
FROM `billing_export.gcp_billing_export_resource_v1_XXXXXX`
WHERE invoice.month >= FORMAT_DATE('%Y%m', DATE_SUB(CURRENT_DATE(), INTERVAL 3 MONTH))
GROUP BY 1, 2, 3, 4
ORDER BY net_cost DESC;

Read the full file on GitHub · 82 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 23d ago First seen · 82 lines · 48 tokens per session scan A aad62dcbad5d

Subscribe to this mod's changes

GCP Billing Interpreter is a skill published in the GitHub repository Cletrics/finops-agents (47 stars, last pushed 5mo ago), licensed MIT. It adds 48 tokens to every session and 885 once invoked, about $0.0002 per session on Opus 5.5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.

Related

Other skills, from other repositories

azure-compute

Azure VM/VMSS router. WHEN: create / provision / deploy / spin-up VM, recommend VM size, compare VM pricing, VMSS, scale set, autoscale, burstable, lightweight server, website, backend, GPU, machine learning, HPC simulation, dev/test, workload, family, load balancer, Flexible orchestration, Uniform orchestration, cost…

microsoft/skills · 154 tokens

azure-cost

Azure cost management: query costs, forecast spending, optimize to reduce waste. WHEN: "Azure costs", "Azure bill", "cost breakdown", "how much am I spending", "forecast spending", "optimize costs", "reduce spending", "orphaned resources", "rightsize VMs", "cost spike", "reduce storage costs", "AKS cost". DO NOT USE…

microsoft/skills · 94 tokens

cost-analysis

Analyze actual Azure spend, bill changes, and AKS or AI costs. WHEN: "Azure cost breakdown", "most expensive resources", "why did my bill increase", "cost spike", "unexpected charge", "Cosmos DB charges", "Foundry model costs", "AKS cluster cost", "namespace cost", "enable AKS cost analysis", "idle AKS capacity". DO…

microsoft/skills · 98 tokens

cost-estimation

Forecast Azure spend and price planned resources or workloads. WHEN: "forecast Azure spending", "project next month cost", "compare forecast to my planning target", "how much will Azure cost", "estimate VM cost", "compare storage tiers", "compare Azure regions", "retail price", "EA rate card", "negotiated pricesheet".…

microsoft/skills · 97 tokens

cost-governance

Govern Azure costs with budgets, alerts, tags, and policy restrictions. WHEN: "Azure budget health", "configured budget overrun", "list Azure budgets", "create Azure budget", "budget alerts", "budget coverage", "missing CostCenter tags", "allowed VM SKUs", "allowed Azure regions", "would this SKU be denied", "cost…

microsoft/skills · 99 tokens

cost-optimization

Optimize existing Azure resources and analyze Reservations or Savings Plans. WHEN: "optimize Azure costs", "reduce cloud spending", "rightsize resources", "find idle resources", "orphaned disk", "deleted VM still charged", "public IP still charging", "reservation utilization", "Savings Plan coverage", "commitment…

microsoft/skills · 98 tokens