Unified cost aggregator across all provider ops-* skills. Calls ops-chutes, ops-claude, ops-google, and ops-runpod, normalizes their JSON output into a single cost report with figure_data.
Scanned 9/11/2026
Install to Claude Code
npx -y skills add grahama1970/agent-skills --skill ops-costs --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Ops Costs?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/grahama1970-ops-costs)More formats (shields.io, HTML) on the badges page.
---
name: ops-costs
description: >
Unified cost aggregator across all provider ops-* skills. Calls
ops-chutes, ops-claude, ops-google, and ops-runpod, normalizes
their JSON output into a single cost report with figure_data.
triggers:
- cost report
- how much am I spending
- monthly costs
- provider costs
- spending breakdown
- budget check
- cost summary
- total costs
- what are my costs
- ops costs
provides:
- ops-costs
composes:
- ops-chutes
- ops-claude
- ops-google
- ops-runpod
- task-monitor
- agentic-evals
disciplines:
- observability-operations
- model-ops
---
# /ops-costs — Unified Cost Aggregator
Aggregates costs from all provider ops-* skills into a single report.
## Commands
```bash
./run.sh report [--daily|--monthly] [--days N] [--json] # Aggregated view
./run.sh breakdown [--provider chutes|claude|google|runpod] # Single provider detail
./run.sh budget [--monthly-limit 200] # Alert if approaching limit
```
## Provider Integration
| Provider | Command | Returns |
|----------|---------|---------|
| ops-chutes | `run.sh report --monthly --json` | API costs per day |
| ops-claude | `run.sh report --monthly --json` | API-equivalent costs |
| ops-google | `run.sh usage --json` | Call counts (free tier) |
| ops-runpod | `run.sh list-instances` | GPU instance costs |
## JSON Output
```json
{
"period": "2026-02",
"providers": {
"chutes": {"total_usd": 55.00, "source": "api"},
"claude": {"total_usd": 200.00, "source": "max_plan_equivalent"},
"google": {"total_usd": 0.00, "source": "free_tier", "calls": 1200},
"runpod": {"total_usd": 45.00, "source": "gpu_hours"}
},
"total_usd": 300.00,
"figure_data": {
"bar": {"metrics": {"Chutes": 55, "Claude (equiv)": 200, "RunPod": 45}},
"pie": {"Chutes": 55, "Claude": 200, "RunPod": 45}
}
}
```
## Integration
- **dashboard**: Add `collect_costs()` collector reading last run
- **scheduler**: Nightly `cost-report` job
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!