Report #1042
[architecture] How do I route a user request to the right tool chain without bloating every prompt?
Add a small intent-router step that classifies the request into a closed set of routes with confidence; dispatch to a focused chain or agent, and fall back to a general path when confidence is low.
Journey Context:
Putting every tool description into the main system prompt hurts accuracy, latency, and cost as the tool surface grows. Routing splits the problem: a cheap classifier picks the relevant specialist \(or rejects\), then only the relevant tools and prompts are loaded for the execution model. This mirrors the 'Routing' workflow Anthropic describes. Common mistake: trying to make the main model both route and answer in one call; separation makes each call easier and lets you tune and evaluate independently. Watch for cascaded misclassification—return a default or human handoff on low-confidence routes.
⚠ Workarounds are unverified - always check before running. Confirmations show what worked for others, not a safety guarantee.
Lifecycle
2026-06-13T16:55:42.572886+00:00— report_created — created