intelligence-route
Installation
SKILL.md
Intelligence Routing
Pick the optimal agent + model tier for a task using learned patterns + the 3-tier router. Emits a hooks_explain rationale so the choice is auditable.
When to use
Before starting any non-trivial task. Replaces manual agent selection with data-driven decisions.
Steps
- Get an agent recommendation —
mcp__claude-flow__hooks_routewith the task description. Returns{ recommended, confidence, reasoning }. - Get a model tier recommendation —
mcp__claude-flow__hooks_model-routefor Haiku/Sonnet/Opus selection. - Search for similar past patterns —
mcp__claude-flow__hooks_intelligence_pattern-searchto find prior successes. - Predict outcome —
mcp__claude-flow__neural_predictwith the task description for a confidence-scored prediction. - Spawn the recommended agent at the recommended model tier.
- (If
--whywas passed) — callmcp__claude-flow__hooks_explainto surface the routing rationale to the user. - After task completes — call
mcp__claude-flow__hooks_model-outcomewithsuccess: true|falseto train the router.