From cost-monitor
Claude Code 利用コスト即時表示 (今日/週/月、model 別、cache hit 率)。Triggers: コスト見せて, 今日のコスト, いくら使った, 使用量, コスト確認, show cost, cost today, what's my usage, cost status
How this skill is triggered — by the user, by Claude, or both
Slash command
/cost-monitor:cost-statusThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
`cost-monitor` plugin の即時表示 skill。今日のコスト累計を1コマンドで返す。期間指定 (`week`/`month`) と model 別内訳もサポート。
cost-monitor plugin の即時表示 skill。今日のコスト累計を1コマンドで返す。期間指定 (week/month) と model 別内訳もサポート。
デフォルト (今日のコスト) — 引数なしで起動された場合:
bash "${CLAUDE_PLUGIN_ROOT}/scripts/dashboard-generator.sh" --period today --format markdown
期間指定 — ユーザーが week / month を要求した場合:
bash "${CLAUDE_PLUGIN_ROOT}/scripts/dashboard-generator.sh" --period week --format markdown
bash "${CLAUDE_PLUGIN_ROOT}/scripts/dashboard-generator.sh" --period month --format markdown
特定日付範囲 — --since / --until で範囲指定:
bash "${CLAUDE_PLUGIN_ROOT}/scripts/dashboard-generator.sh" --since 2026-05-01 --until 2026-05-08
エクスポート (受講者向け、サニタイズ済み) — 共有用に paths/tokens を redact:
bash "${CLAUDE_PLUGIN_ROOT}/scripts/dashboard-generator.sh" --period week --export ./share-dir
出力ファイルパスが stdout に表示される。
出力 markdown をそのままユーザーに表示する。--format html も可能 (HTML 単一ファイル出力)。
ccusage CLI が PATH に存在 → 自動連携 (ccusage daily --json)~/.claude/projects/**/*.jsonl 直読)既知 issue: ccusage v18.x は cache cost 計算に~60%の誤差 (upstream #899)。精密 cache 計測が必要なら
CCUSAGE_PATH=disabledで bundled parser に切替。
scripts/price-table.json (last update 2026-05、Anthropic 公開価格)PRICE_TABLE_PATH env で override 可能npx claudepluginhub arkatom/claude-plugins --plugin cost-monitorCreates structured, bite-sized implementation plans from specs or requirements before writing code. Useful for breaking down multi-step tasks into testable steps with file structure and task boundaries.