Estimated monthly waste
$1,670
$20,040 potential annual savings
Findings dashboard
Every crack includes cost, carbon, repair guidance, effort, risk, and expected before/after impact.
Estimated monthly waste
$1,670
$20,040 potential annual savings
Carbon reduction
92 kgCO2e
Estimated avoidable monthly impact
Image reduction
1800MB to 650MB
Smaller transfer and deployment footprint
Duplicate AI calls
38%
Avoidable calls with cache and routing
Top cracks by monthly cost and carbon impact.
Kintsugi Score
54 to 84
Estimated impact after gold repairs are applied.
Structured output from the Crack Finder, Cloud Waste, and Carbon Accountant agents.
Bloated Docker image
Container Waste
Use a multi-stage build, prune package caches, and ship only production artifacts.
Reduce image size from 1.8GB to roughly 650MB and shorten deploy pulls.
Unused dependencies in runtime package
Dependency Waste
Remove unused packages and consolidate overlapping date, schema, and HTTP client libraries.
Smaller installs, lower vulnerability surface, and faster cold starts.
Redundant CI/CD jobs repeat the same work
CI/CD Waste
Share dependency cache, split changed-package checks, and collapse duplicate transpilation steps.
Cut CI runtime from 24 minutes to 11 minutes for the main workflow.
Over-provisioned cloud service tier
Cloud Waste
Right-size ECS tasks to the observed p95 CPU and memory profile, then apply autoscaling guardrails.
Move from fixed c6i.2xlarge capacity to smaller autoscaled tasks while preserving headroom.
Idle scheduled workloads stay warm all day
Idle Compute
Convert daily batch workers to event-driven jobs with a shutdown policy outside processing windows.
Remove roughly 17 idle compute hours per day from non-customer-facing workers.
Excessive duplicate AI model calls
AI API Waste
Add prompt-hash caching, retry de-duplication, and lower-cost routing for deterministic summaries.
Avoid 38% of repeated model calls while preserving response quality thresholds.
Missing cache for high-volume API reads
Application Efficiency
Introduce a short-lived cache for repeated tenant dashboard reads and invalidate on writes.
Lower database load on repeated dashboard refreshes and reduce p95 latency.
Duplicate API endpoint and transform function
Code Duplication
Merge duplicate reporting endpoints behind a shared transform with compatibility tests.
Reduce maintenance drag and prevent two code paths from running equivalent enrichment work.
| Finding | Category | Severity | Cost waste | Carbon | Difficulty | Risk | Suggested repair |
|---|---|---|---|---|---|---|---|
Bloated Docker image Reduce image size from 1.8GB to roughly 650MB and shorten deploy pulls. | Container Waste | High | $320 | 21 kgCO2e | Medium | Low | Use a multi-stage build, prune package caches, and ship only production artifacts. |
Unused dependencies in runtime package Smaller installs, lower vulnerability surface, and faster cold starts. | Dependency Waste | Medium | $105 | 5 kgCO2e | Low | Low | Remove unused packages and consolidate overlapping date, schema, and HTTP client libraries. |
Redundant CI/CD jobs repeat the same work Cut CI runtime from 24 minutes to 11 minutes for the main workflow. | CI/CD Waste | High | $180 | 14 kgCO2e | Low | Low | Share dependency cache, split changed-package checks, and collapse duplicate transpilation steps. |
Over-provisioned cloud service tier Move from fixed c6i.2xlarge capacity to smaller autoscaled tasks while preserving headroom. | Cloud Waste | Critical | $410 | 28 kgCO2e | Medium | Medium | Right-size ECS tasks to the observed p95 CPU and memory profile, then apply autoscaling guardrails. |
Idle scheduled workloads stay warm all day Remove roughly 17 idle compute hours per day from non-customer-facing workers. | Idle Compute | High | $210 | 17 kgCO2e | Medium | Low | Convert daily batch workers to event-driven jobs with a shutdown policy outside processing windows. |
Excessive duplicate AI model calls Avoid 38% of repeated model calls while preserving response quality thresholds. | AI API Waste | High | $290 | 4 kgCO2e | Medium | Medium | Add prompt-hash caching, retry de-duplication, and lower-cost routing for deterministic summaries. |
Missing cache for high-volume API reads Lower database load on repeated dashboard refreshes and reduce p95 latency. | Application Efficiency | Medium | $95 | 2 kgCO2e | Medium | Medium | Introduce a short-lived cache for repeated tenant dashboard reads and invalidate on writes. |
Duplicate API endpoint and transform function Reduce maintenance drag and prevent two code paths from running equivalent enrichment work. | Code Duplication | Medium | $60 | 1 kgCO2e | Low | Medium | Merge duplicate reporting endpoints behind a shared transform with compatibility tests. |