원클릭으로
model-usage
Track and summarize per-model usage costs for AI models. Useful for monitoring spending across Claude, GPT, and other providers.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Track and summarize per-model usage costs for AI models. Useful for monitoring spending across Claude, GPT, and other providers.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Run Codex CLI, Claude Code, OpenCode, or Pi Coding Agent via background process for programmatic control.
Generate comprehensive tests for code - unit tests, edge cases, error conditions. Targets 70%+ coverage using Vitest.
Interact with GitHub using the gh CLI. Use gh issue, gh pr, gh run, and gh api for issues, PRs, CI runs, and advanced queries.
Search and analyze your own session logs (older/parent conversations) using jq.
| name | model-usage |
| description | Track and summarize per-model usage costs for AI models. Useful for monitoring spending across Claude, GPT, and other providers. |
| metadata | {"emoji":"📊","category":"monitoring","tags":["cost","usage","analytics"],"requires":[{"name":"codexbar"}]} |
Track per-model usage and costs from CodexBar's local cost logs.
Get per-model usage cost from CodexBar's local cost logs. Supports "current model" (most recent daily entry) or "all models" summaries for Codex or Claude.
# Current model usage
python scripts/model_usage.py --provider codex --mode current
# All models
python scripts/model_usage.py --provider codex --mode all
# Claude usage as JSON
python scripts/model_usage.py --provider claude --mode all --format json --pretty
modelBreakdowns.modelsUsed when breakdowns are missing.--model <name> when you need a specific model.Default: runs codexbar cost --format json --provider <codex|claude>.
File or stdin:
codexbar cost --provider codex --format json > /tmp/cost.json
python scripts/model_usage.py --input /tmp/cost.json --mode all
cat /tmp/cost.json | python scripts/model_usage.py --input - --mode current
--format json --pretty).For EndiorBot, track model costs to:
# Daily cost summary
python scripts/model_usage.py --provider claude --mode all --period day
# Weekly summary
python scripts/model_usage.py --provider claude --mode all --period week