Install any skill in seconds. Free to start, no credit card required.
Get Started Free →Cloud cost optimization, token/API cost tracking, build time optimization, and FinOps patterns
.claude/skills/cost-optimization-patterns/SKILL.md| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-09 | ✗→✓ | ▲ Improved | — | — |
| case-21 | ✗→✓ | ▲ Improved | — | — |
| case-10 | ✗→✓ | ▲ Improved | — | — |
| case-11 | ✗→✓ | ▲ Improved | — | — |
| case-01 | ✓→✓ | = Same ✓ | — | — |
bash# AWS - Compute Optimizer önerileri aws compute-optimizer get-ec2-instance-recommendations # CPU/Memory utilization < 20% → downsize # CPU/Memory utilization > 80% → upsize veya auto-scale
| Strateji | Tasarruf | Risk | Use Case | |----------|---------|------|----------| | On-Demand | 0% | Düşük | Değişken workload | | Reserved (1yr) | %30-40 | Orta | Steady-state | | Reserved (3yr) | %50-60 | Yüksek | Uzun vadeli | | Spot/Preemptible | %60-90 | Yüksek | Batch, CI/CD | | Savings Plans | %30-50 | Düşük | Flexible commitment |
Lambda cost = (requests × $0.20/1M) + (GB-seconds × $0.0000166)
Optimizasyon:
1. Memory right-sizing (power tuning)
2. Provisioned concurrency (cold start vs cost tradeoff)
3. ARM architecture (%20 ucuz)
4. Batch processing (SQS batch size)typescript// Token maliyet takibi const MODEL_COSTS = { 'claude-opus-4-6': { input: 15.0, output: 75.0 }, // per 1M tokens 'claude-sonnet-4-6': { input: 3.0, output: 15.0 }, 'claude-haiku-4-5': { input: 0.80, output: 4.0 } } as const function estimateCost(model: string, inputTokens: number, outputTokens: number) { const costs = MODEL_COSTS[model] return (inputTokens * costs.input + outputTokens * costs.output) / 1_000_000 }
| Teknik | Tasarruf | Karmaşıklık | |--------|---------|-------------| | Dependency caching | %30-50 | Düşük | | Parallel test execution | %40-60 | Düşük | | Incremental builds | %50-70 | Orta | | Docker layer caching | %20-40 | Düşük | | Affected-only (monorepo) | %60-80 | Orta |
sql-- Pahalı query'leri bul SELECT query, calls, mean_exec_time, total_exec_time FROM pg_stat_statements ORDER BY total_exec_time DESC LIMIT 20; -- Unused index'leri bul (gereksiz storage + write overhead) SELECT indexrelname, idx_scan FROM pg_stat_user_indexes WHERE idx_scan = 0 AND indexrelname NOT LIKE '%pkey%';
| Case | Status | Duration (ms) | Turns | Tokens | Tool calls | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Without | With | Δ | Without | With | Δ | Without | With | Δ | Without | With | Δ | ||
case-16 | fail→fail | — | — | — | — | — | — | — | — | — | — | — | — |
case-12 | fail→fail | — | — | — | — | — | — | — | — | — | — | — | — |
case-18 | fail→fail | — | — | — | — | — | — | — | — | — | — | — | — |
case-07 | fail→fail | — | — | — | — | — | — | — | — | — | — | — | — |
case-13 | fail→fail | — | — | — | — | — | — | — | — | — | — | — | — |
case-03 | fail→fail | — | — | — | — | — | — | — | — | — | — | — | — |
case-05 | fail→fail | — | — | — | — | — | — | — | — | — | — | — | — |
case-09 | fail→pass | — | — | — | — | — | — | — | — | — | — | — | — |
case-08 | fail→fail | — | — | — | — | — | — | — | — | — | — | — | — |
case-20 | fail→fail | — | — | — | — | — | — | — | — | — | — | — | — |
case-02 | fail→fail | — | — | — | — | — | — | — | — | — | — | — | — |
case-01 | pass→pass | — | — | — | — | — | — | — | — | — | — | — | — |
case-14 | fail→fail | — | — | — | — | — | — | — | — | — | — | — | — |
case-21 | fail→pass | — | — | — | — | — | — | — | — | — | — | — | — |
case-15 | fail→fail | — | — | — | — | — | — | — | — | — | — | — | — |
case-10 | fail→pass | — | — | — | — | — | — | — | — | — | — | — | — |
case-04 | fail→fail | — | — | — | — | — | — | — | — | — | — | — | — |
case-06 | fail→fail | — | — | — | — | — | — | — | — | — | — | — | — |
case-11 | fail→pass | — | — | — | — | — | — | — | — | — | — | — | — |
case-17 | fail→fail | — | — | — | — | — | — | — | — | — | — | — | — |
case-19 | fail→fail | — | — | — | — | — | — | — | — | — | — | — | — |
case-22 | fail→fail | — | — | — | — | — | — | — | — | — | — | — | — |
case-23 | fail→fail | — | — | — | — | — | — | — | — | — | — | — | — |
DecimalAI ran this skill against gemini-3.6-flash twice over the same eval suite — once with the skill loaded and once without — and compared the two runs case by case. 23 cases were attempted. The headline lift of +17 percentage points is the difference between those two pass rates over the 23 comparable cases.
The per-case answers from this run were removed by the retention sweep, so the case table below shows the verdicts without the text either arm produced. The counts above were recorded at the time and are unaffected. Answers are now kept for 180 days.
Other measured skills in the registry, with their headline benchmark lift.