소스 정보
- 저장소
- OnlyTerp/hermes-optimization-guide
- 최근 소스 활동
- 2026년 8월 22일 10:50
- 감지된 SKILL.md 언어
- 영어
- 스타
- 615
- 포크
- 48
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/OnlyTerp/hermes-optimization-guide --skill cost-report명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
| name | cost-report |
| description | Weekly LLM cost breakdown by provider / gateway / skill, posted to private DM |
| when_to_use | ["Scheduled weekly","User asks \"how much am I spending?\"","After a noticeable cost spike"] |
| toolsets | ["terminal","file"] |
| parameters | {"window":{"type":"string","default":"7d"},"format":{"type":"string","enum":["markdown","json","csv"],"default":"markdown"}} |
| security | {"trust":"trusted","notes":"Read-only over local usage data. No untrusted input, no external writes.\n"} |
| model_hint | google/gemini-3.7-flash |
Generate a human-readable (or machine-readable) cost report from Hermes' own usage ledgers.
Surface the numbers Hermes already keeps. There is no hermes logs export usage stream (that subcommand never existed) — use the built-in
insights and logs views:
hermes insights --days ${WINDOW} # token + cost breakdown from session history
hermes logs --since ${WINDOW} --component agent # raw log lines for detail
Aggregate per-provider / per-skill splits. hermes insights rolls
usage up globally. For the per-provider / per-skill / per-gateway
tables below, pull from your tracing layer (self-hosted Langfuse via
the observability/langfuse plugin — Part 20) or from a JSONL usage
log you collect with the Part-20 log-tail pipeline. With such a JSONL
file, DuckDB inspects it quickly:
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;
"
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
gemini 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)
Mon ▂
Tue ▃
Wed ▅█ ← weekly-dep-audit ran
Thu ▃
Fri ▄
Sat ▂
Sun ▁
Total: $25.53
Flag anomalies. Use a 3x median-absolute-deviation rule on daily spend. Note any days or skills that exceed the threshold:
⚠ Wed spent $9.80, 4.5x typical. Driven by
weekly-dep-audit.
Recommend savings. Pattern-match the data:
hermes model → "Configure auxiliary models")/model switches aren't resetting the cache prefix (Part 20)auxiliary.<task> is not pinned to an expensive modelmodel_aliases + cron job model pins)Deliver. Post to the job's --deliver target (a private DM is the
classic choice). Attach the raw JSON if format is json.
Jobs live in ~/.hermes/cron/jobs.json, created via hermes cron create
(the old cron.yaml list format was removed):
hermes cron create "0 9 * * 1" \
"Run the cost-report skill: window=7d format=markdown" \
--skill cost-report --name weekly-cost-report --deliver telegram