ワンクリックで
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