mundi-orch-multi-llm-route
Installation
SKILL.md
Mundi Orch — Multi-LLM Router
Overview
Different LLMs have different strengths. Claude is best at code, reasoning, and tool use. Gemini is strongest on long-context (1M+), vision, and research breadth. GPT is competitive on creative, some math, and has Codex for pure coding. This router classifies a task and dispatches to the best provider per benchmark + cost.
This is the automated version of what you'd do manually when you think "this is a code problem → Claude" or "this is a 500-page document → Gemini."
When to use
- Inside an orchestrator that makes many LLM calls and wants per-call optimization
- When budget matters across a run (expensive tasks → cheap provider when appropriate)
- Building a "best default" for an agentic system that might tackle varied tasks
- Reducing provider-lock-in
Do NOT use when:
- One-off manual call — just pick the LLM yourself
- Task is clearly homogeneous (all code → Claude; all long docs → Gemini) — skip the router overhead
- Cost doesn't matter (single-user, small volume) — default to Claude