cost-report

Solid

Weekly LLM cost breakdown by provider / gateway / skill, posted to private DM

AI & Automation 5 stars 0 forks Updated yesterday MIT

Install

View on GitHub

Quality Score: 83/100

Stars 20%
26
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
80
License 10%
100
Description 5%
100

Skill Content

# cost-report — LLM Cost Breakdown Generate a human-readable (or machine-readable) cost report from Hermes' usage logs. ## Procedure 1. **Export logs.** Run: ```bash hermes logs export --since ${WINDOW} --format jsonl --output /tmp/hermes-logs.jsonl ``` 2. **Parse and aggregate.** Using DuckDB (preferred) or `jq` + `awk`: ```bash duckdb -c " CREATE TABLE logs AS SELECT * FROM read_json_auto('/tmp/hermes-logs.jsonl'); -- By provider SELECT provider, SUM(cost_usd) AS cost, SUM(tokens_in) AS tok_in, SUM(tokens_out) AS tok_out, COUNT(*) AS calls FROM logs GROUP BY 1 ORDER BY 2 DESC; " ``` 3. **Produce four tables:** **A. By provider** ``` Provider Cost($) Tokens-in Tokens-out Calls anthropic 18.44 2.1M 380K 412 openai 6.20 1.2M 220K 187 cerebras 0.45 890K 140K 523 ``` **B. By gateway** ``` Gateway Cost($) % of total telegram 14.22 56% cli 8.10 32% discord 2.77 11% cron 0.50 2% ``` **C. By active skill** ``` Skill Cost($) Calls Avg-cost claude-code 9.40 22 $0.43 lightrag-query 4.11 189 $0.02 pr-review 3.20 8 $0.40 weekly-dep-audit 1.25 1 $1.25 ``` **D. Daily trend** (simple ASCII sparkline) ```...

Details

Author
Guilhermepelido
Repository
Guilhermepelido/hermes-optimization-guide
Created
2 months ago
Last Updated
yesterday
Language
Shell
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category

AI & Automation Solid

cost-reflect

The 'why is my bill high' skill: audits where spend goes across token categories (cache_read, cache_write, output, input) and per-session attribution. Invoke for questions like 'cost breakdown', 'which sessions are expensive', 'what's driving spend', or 'cold start costs'. Not for week-over-week trend lines (use hermit-evolution) or simple total-spend summaries.

68 Updated today
gtapps
AI & Automation Listed

agentcents

LLM cost consulting — estimate what any LLM API call or agent workflow will cost across candidate models (Claude, GPT, Gemini, local Ollama), recommend the cheapest model that clears the task's capability bar, and render the comparison as a Mermaid diagram. Use this skill whenever the user asks what a prompt / agent run / workflow will cost, which model is cheaper or "good enough", how to cut LLM API spend, whether local models would save money, or anything about model pricing, token costs, LLM budgets, or cost-based model routing — even if they don't name a tool. Also use it whenever the user mentions agentcents, has the agentcents proxy installed, or asks about their own LLM spend, budgets, or cost calibration.

0 Updated 3 days ago
labham-llc
AI & Automation Listed

estimate-llm-cost

Use this to estimate what an LLM call or feature will cost, and to compare models on price, before or after shipping. Trigger on "how much will this cost", "estimate my OpenAI/Anthropic bill", "is a cheaper model worth it", "cost of this prompt", "project my LLM spend". Ships a runnable, tested calculator so the numbers are real, not hand-waved.

26 Updated yesterday
ContextJet-ai