💼 Cost Booster Route
エージェントブースターの利用状況に応じてタスクを振り分け、ティア1バイパスの利用率をコストゼロで報告するSkill。
📺 まず動画で見る(YouTube)
▶ 【自動化】AIガチ勢の最新活用術6選がこれ1本で丸分かり!【ClaudeCode・AIエージェント・AI経営・Skills・MCP】 ↗
※ jpskill.com 編集部が参考用に選んだ動画です。動画の内容と Skill の挙動は厳密には一致しないことがあります。
📜 元の英語説明(参考)
Route tasks through hooks_route, partition by Agent Booster availability, and report Tier 1 bypass utilization with $0 cost
🇯🇵 日本人クリエイター向け解説
エージェントブースターの利用状況に応じてタスクを振り分け、ティア1バイパスの利用率をコストゼロで報告するSkill。
※ jpskill.com 編集部が日本のビジネス現場向けに補足した解説です。Skill本体の挙動とは独立した参考情報です。
下記のコマンドをコピーしてターミナル(Mac/Linux)または PowerShell(Windows)に貼り付けてください。 ダウンロード → 解凍 → 配置まで全自動。
mkdir -p ~/.claude/skills && cd ~/.claude/skills && curl -L -o cost-booster-route.zip https://jpskill.com/download/2223.zip && unzip -o cost-booster-route.zip && rm cost-booster-route.zip
$d = "$env:USERPROFILE\.claude\skills"; ni -Force -ItemType Directory $d | Out-Null; iwr https://jpskill.com/download/2223.zip -OutFile "$d\cost-booster-route.zip"; Expand-Archive "$d\cost-booster-route.zip" -DestinationPath $d -Force; ri "$d\cost-booster-route.zip"
完了後、Claude Code を再起動 → 普通に「動画プロンプト作って」のように話しかけるだけで自動発動します。
💾 手動でダウンロードしたい(コマンドが難しい人向け)
- 1. 下の青いボタンを押して
cost-booster-route.zipをダウンロード - 2. ZIPファイルをダブルクリックで解凍 →
cost-booster-routeフォルダができる - 3. そのフォルダを
C:\Users\あなたの名前\.claude\skills\(Win)または~/.claude/skills/(Mac)へ移動 - 4. Claude Code を再起動
⚠️ ダウンロード・利用は自己責任でお願いします。当サイトは内容・動作・安全性について責任を負いません。
🎯 このSkillでできること
下記の説明文を読むと、このSkillがあなたに何をしてくれるかが分かります。Claudeにこの分野の依頼をすると、自動で発動します。
📦 インストール方法 (3ステップ)
- 1. 上の「ダウンロード」ボタンを押して .skill ファイルを取得
- 2. ファイル名の拡張子を .skill から .zip に変えて展開(macは自動展開可)
- 3. 展開してできたフォルダを、ホームフォルダの
.claude/skills/に置く- · macOS / Linux:
~/.claude/skills/ - · Windows:
%USERPROFILE%\.claude\skills\
- · macOS / Linux:
Claude Code を再起動すれば完了。「このSkillを使って…」と話しかけなくても、関連する依頼で自動的に呼び出されます。
詳しい使い方ガイドを見る →- 最終更新
- 2026-05-17
- 取得日時
- 2026-05-17
- 同梱ファイル
- 1
💬 こう話しかけるだけ — サンプルプロンプト
- › Cost Booster Route で、私のビジネスを分析して改善案を3つ提案して
- › Cost Booster Route を使って、来週の会議用の資料を作って
- › Cost Booster Route で、現状の課題を整理してアクションプランに落として
これをClaude Code に貼るだけで、このSkillが自動発動します。
📖 Skill本文(日本語訳)
※ 原文(英語/中国語)を Gemini で日本語化したものです。Claude 自身は原文を読みます。誤訳がある場合は原文をご確認ください。
コストブースター経路
mcp__claude-flow__hooks_route をラップし、3層ルーターがエージェントブースター(Tier 1)の対象として分類したタスクの数を報告します。Tier 1 のバイパスは WASM 変換として実行され、LLM 呼び出しはなく、構造的に $0 のコストです。
使用するタイミング
類似のタスクのバッチ処理の前、または cost-report が Sonnet/Opus の費用を、var-to-const、add-types、add-error-handling、async-await、add-logging、remove-console のような単純な変換に見える説明に費やしていることを示している場合。
手順
-
タスクの収集 — 単一の引数、または
memory_searchを介したcost-trackingからの最近のエントリ。バッチは50に制限します。 -
各タスクのルーティング — 説明とともに
hooks_routeを呼び出し、完全な応答文字列をキャプチャします。 -
パーティション分割 — 応答にリテラル
[AGENT_BOOSTER_AVAILABLE]が含まれているかどうか(Tier 1)と、含まれていないかどうか(Tier 2/3)でグループ化します。存在する場合は[TASK_MODEL_RECOMMENDATION] Use model="X"を抽出します。 -
費用の計算 — Tier 1 パーティション: $0。Tier 2/3 パーティション: REFERENCE.md の価格設定 × 推奨モデルによるタスクごとの上限。
-
報告
=== Booster bypass report === Tasks analyzed: 50 Tier 1 (booster): 18 (36%) — $0.00 Tier 2/3 (LLM): 32 (64%) — $X.XX (upper-bound) Booster intents: var-to-const (8), add-types (5), remove-console (5) -
永続化 —
memory_store --namespace cost-tracking --key "booster-route-$(date +%Y%m%d-%H%M%S)" --value '{"tier1": N, "tier2_or_3": M, ...}'を実行し、cost-reportがティア信号を認識するようにします。
注意事項 — アップストリームで主張されているが、まだ検証されていません
[AGENT_BOOSTER_AVAILABLE]は、アップストリームルーターがrouteResult.agentBoosterIntent.type(v3/@claude-flow/cli/src/mcp-tools/hooks-tools.ts:1228) を設定した場合にのみ発火します。公開されている CLI の semantic-VectorDb パスは常に分類器をトリガーするわけではありません。パーティションは Tier 1 の適格性の下限として扱ってください。- CLAUDE.md のルートでは、
<1msのレイテンシーと LLM より352× 速いと主張されています。<1msと$0は構造的なものですが、352×はアップストリームで主張されているが、ここではまだ検証されていません。ルーターが実際に返すものを報告してください。 - アップストリームの主張と測定値の完全な表については、
docs/benchmarks/0002-baseline.mdを参照してください。
相互参照
ADR-0002 決定 #1 · ruflo-intelligence ADR-0001 §"Neutral" (cost-optimize ステップ 8 を介してルーティング結果のループを閉じます) · CLAUDE.md ルート §"3-Tier Model Routing (ADR-026)"。
📜 原文 SKILL.md(Claudeが読む英語/中国語)を展開
Cost Booster Route
Wraps mcp__claude-flow__hooks_route and reports how many tasks the 3-tier router classified as Agent Booster (Tier 1) eligible. Tier 1 bypasses run as WASM transforms — no LLM call, structurally $0 cost.
When to use
Before a batch of similar tasks, or when cost-report shows Sonnet/Opus spend on descriptions that look like simple transforms (var-to-const, add-types, add-error-handling, async-await, add-logging, remove-console).
Steps
-
Collect tasks — single arg or recent entries from
cost-trackingviamemory_search. Cap batch at 50. -
Route each — call
hooks_routewith the description; capture the full response string. -
Partition — group by whether the response contains the literal
[AGENT_BOOSTER_AVAILABLE](Tier 1) vs. not (Tier 2/3). Extract[TASK_MODEL_RECOMMENDATION] Use model="X"when present. -
Compute spend — Tier 1 partition: $0. Tier 2/3 partition: per-task upper-bound from REFERENCE.md pricing × recommended model.
-
Report
=== Booster bypass report === Tasks analyzed: 50 Tier 1 (booster): 18 (36%) — $0.00 Tier 2/3 (LLM): 32 (64%) — $X.XX (upper-bound) Booster intents: var-to-const (8), add-types (5), remove-console (5) -
Persist —
memory_store --namespace cost-tracking --key "booster-route-$(date +%Y%m%d-%H%M%S)" --value '{"tier1": N, "tier2_or_3": M, ...}'socost-reportpicks up the tier signal.
Caveats — claimed upstream, not yet verified
[AGENT_BOOSTER_AVAILABLE]fires only when the upstream router populatesrouteResult.agentBoosterIntent.type(v3/@claude-flow/cli/src/mcp-tools/hooks-tools.ts:1228). The published CLI's semantic-VectorDb path does not always trigger the classifier — treat the partition as a lower bound on Tier 1 eligibility.- CLAUDE.md root claims
<1mslatency and352× fasterthan LLM.<1msand$0are structural;352×is claimed upstream, not yet verified here. Report what the router actually returns. - See
docs/benchmarks/0002-baseline.mdfor the full upstream-claims-vs-measured table.
Cross-references
ADR-0002 Decision #1 · ruflo-intelligence ADR-0001 §"Neutral" (closes the routing-outcomes loop via cost-optimize step 8) · CLAUDE.md root §"3-Tier Model Routing (ADR-026)".