home / skills / scientiacapital / skills / cost-metering-skill
This skill tracks Claude API costs across sessions, alerts budgets, and optimizes model routing for cost efficiency.
npx playbooks add skill scientiacapital/skills --skill cost-metering-skillReview the files below or copy the command above to add this skill to your agents.
---
name: "cost-metering"
description: "Track and manage API costs across sessions. Budget alerts, model routing for cost optimization, spend reports. Use when: cost check, budget status, how much spent, optimize costs, cost tracking."
---
<objective>
Track Claude API costs across sessions with budget alerts, model routing optimization, and spend reporting. Integrates with workflow-orchestrator's cost gate for automated budget enforcement.
</objective>
<quick_start>
**Check current spend:**
```bash
cat ~/.claude/daily-cost.json 2>/dev/null || echo "No tracking yet"
```
**Initialize tracking:**
```bash
mkdir -p ~/.claude
echo '{"date":"'$(date +%Y-%m-%d)'","spent":0,"budget_monthly":100,"budget_daily":5}' > ~/.claude/daily-cost.json
```
</quick_start>
<success_criteria>
- Daily cost tracking initialized at `~/.claude/daily-cost.json`
- Budget alerts fire at 50% (info), 80% (warn), and 95% (block) thresholds
- Model routing applied: Haiku for search/classify, Sonnet for code, DeepSeek for bulk
- Cost-per-feature metric available via portfolio-artifact integration
- Monthly spend stays within configured budget ($100/mo default)
</success_criteria>
<triggers>
- "cost check", "budget status", "how much spent"
- "optimize costs", "cost tracking", "budget alert"
- "model routing", "cheaper model", "cost report"
</triggers>
---
## Model Rates (Current)
| Model | Input/1M tokens | Output/1M tokens | Typical Use |
|-------|----------------|-------------------|-------------|
| Claude Opus 4 | $15.00 | $75.00 | Architecture, complex reasoning |
| Claude Sonnet 4.5 | $3.00 | $15.00 | Code generation, standard tasks |
| Claude Haiku 4.5 | $0.25 | $1.25 | Search, classification, simple |
| DeepSeek V3 | $0.27 | $1.10 | Bulk processing |
| GROQ Llama 3.3 70B | $0.59 | $0.79 | Fast inference |
| Voyage Embeddings | $0.10 | ā | Embeddings |
---
## Budget Configuration
### ~/.claude/daily-cost.json
```json
{
"date": "2026-02-07",
"spent": 2.40,
"budget_monthly": 100,
"budget_daily": 5,
"alerts": {
"info": 0.5,
"warn": 0.8,
"block": 0.95
}
}
```
### Alert Thresholds
| Threshold | % Budget | Action |
|-----------|----------|--------|
| **Info** | 50% | Display: "50% of monthly budget used" |
| **Warn** | 80% | Yellow alert: "ā ļø 80% budget ā consider model downgrade" |
| **Block** | 95% | Red alert: "š 95% budget ā require explicit override to continue" |
---
## Cost Optimization Strategies
### 1. Model Routing (biggest impact)
| Task | Expensive | Optimized | Savings |
|------|-----------|-----------|---------|
| File search | Sonnet ($3/1M) | Haiku ($0.25/1M) | 92% |
| Code review | Sonnet ($3/1M) | Haiku ($0.25/1M) | 92% |
| Classification | Sonnet ($3/1M) | Haiku ($0.25/1M) | 92% |
| Bulk processing | Sonnet ($3/1M) | DeepSeek ($0.27/1M) | 91% |
**Rule:** If the task doesn't generate code, use Haiku. If it doesn't need Claude, use DeepSeek.
### 2. Context Management
- Keep SKILL.md files under 200 lines (progressive disclosure)
- Load reference files only when needed
- Use `Explore` agent with `haiku` model for codebase search
- Avoid reading entire files ā use Grep to find specific lines
### 3. Task Batching
- Group related searches into one Explore agent call
- Use parallel subagents (haiku) instead of serial sonnet calls
- Combine file reads when possible
---
## Tracking Commands
### Daily Spend Check
```bash
cat ~/.claude/daily-cost.json | jq '{date, spent, remaining: (.budget_daily - .spent), pct: ((.spent / .budget_monthly) * 100 | floor)}'
```
### Weekly Report
```bash
# Aggregate daily logs
cat ~/.claude/cost-log.jsonl | jq -s 'group_by(.phase) | map({phase: .[0].phase, total: (map(.est_cost) | add), count: length})'
```
### Monthly Summary
```bash
cat ~/.claude/cost-log.jsonl | jq -s '{
total: (map(.est_cost) | add),
by_model: (group_by(.model) | map({model: .[0].model, cost: (map(.est_cost) | add)})),
by_phase: (group_by(.phase) | map({phase: .[0].phase, cost: (map(.est_cost) | add)}))
}'
```
---
## Integration Points
| System | How |
|--------|-----|
| workflow-orchestrator | Cost gate checks budget before workflows |
| subagent-teams | Model selection uses cost tiers |
| agent-capability-matrix | Includes model recommendations |
| portfolio-artifact | Reports cost-per-feature metrics |
| End Day protocol | Logs daily costs, updates MTD |
| TaskCreate/TaskUpdate | Zero API cost ā local UI tool for progress tracking |
| TeamCreate/SendMessage | Zero API cost ā local coordination (but spawned agents incur model costs) |
---
## Storage
```
~/.claude/
āāā daily-cost.json # Current day's budget + spend
āāā cost-log.jsonl # Append-only operation log
āāā portfolio/
āāā daily-metrics.jsonl # Includes cost-per-feature
```
**Deep dive:** See `reference/cost-tracking-guide.md`, `reference/budget-templates.md`
This skill tracks and manages Claude API costs across sessions, providing budget alerts, model routing for cost optimization, and spend reports. It stores daily spend locally, enforces threshold-based alerts, and integrates with workflow gates to prevent budget overruns. The default configuration aims to keep monthly spend within a simple budget while exposing metrics for cost-per-feature analysis.
The skill records estimated API cost events to a local append-only log and a daily summary file (~/.claude/daily-cost.json). It evaluates spend against configured thresholds (info/warn/block) and triggers alerts or workflow gates when thresholds are reached. Model routing rules map tasks to cheaper models (Haiku/DeepSeek) to reduce per-task cost and the skill produces daily, weekly, and monthly summaries for reporting and portfolio integration.
How are alerts configured and where are they stored?
Alerts are configured in ~/.claude/daily-cost.json with info/warn/block thresholds expressed as fractions of the monthly budget; the same file holds daily spent and budget values.
What model routing rules does the skill apply by default?
By default: Haiku for search/classification/simple tasks, Sonnet for code tasks, and DeepSeek for bulk processing. Rules can be adjusted to match your workload and cost targets.