carbon-estimator
Estimate the carbon footprint of an agentic AI system based on its LLM usage
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Estimate the carbon footprint of an agentic AI system based on its LLM usage
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Detect the 7 types of agentic bloat in a codebase or system design
Generate a lean cost analysis report with model right-sizing recommendations and savings estimates
Recommend the right model tier for each LLM task type
One-line description of what this skill does and when to invoke it
Estimate token usage for LLM API calls found in code
| name | carbon-estimator |
| description | Estimate the carbon footprint of an agentic AI system based on its LLM usage |
| user-invocable | true |
| allowed-tools | Read, Write |
| model | haiku |
Estimate the CO₂ emissions of an agentic system based on model usage, call volume, and deployment region.
From the user or from context, determine:
Use these energy-per-call estimates:
| Model Size | Energy per Call (kWh) |
|---|---|
| Small (Haiku, GPT-4o-mini, Flash) | 0.001 |
| Medium (Sonnet, GPT-4o, Pro) | 0.005 |
| Frontier (Opus, GPT-4, o1, Ultra) | 0.03 |
Total daily energy (kWh) =
(small_calls × 0.001) + (medium_calls × 0.005) + (frontier_calls × 0.03)
Use these regional carbon intensities (gCO₂/kWh):
| Region | gCO₂/kWh |
|---|---|
| Quebec / Norway / Iceland | 25 |
| France / Sweden | 70 |
| US West (Oregon) | 100 |
| Netherlands / UK | 200 |
| US Average | 380 |
| Germany | 350 |
| India | 700 |
| Poland / Coal regions | 800 |
Daily CO₂ (grams) = Total daily energy × Regional carbon intensity
Annual CO₂ (kg) = Daily CO₂ × 365 / 1000
Assume lean optimizations:
Recalculate with these optimizations applied.
Write to reports/carbon-estimate.md with:
Input: 50,000 calls/day, 70% medium, 30% frontier, deployed in US Average.
Output:
Current: 50K calls/day → 212.5 kWh/day → 80.75 kg CO₂/day → 29,474 kg/year
Equivalent: ~6.4 cars driven for a year
Optimized: 35K calls/day (caching) → 28 kWh/day (routing) → 0.7 kg CO₂/day (green region) → 256 kg/year
Equivalent: ~1 domestic flight
Reduction: 99.1%
Top recommendation: Move batch workloads to Quebec (25 gCO₂/kWh)