cost-booster-route
Installation
SKILL.md
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