Host-aware auto-routing skill library for IDEs and coding agents.
Project description
routesmith
Host-aware auto-routing for coding agents
routesmith automatically routes coding agent tasks to the best available model in your IDE — no manual model picking, no cross-provider hacks.
Give it a mixed prompt like "Plan this feature, implement it, add tests, write docs" and it decomposes, routes each step to the right capability class, and executes using your host's native model switching.
Why?
Most coding agents are stuck on one model. Mixed tasks (plan → code → test → document) benefit from different model strengths. But each IDE host (Claude Code, Codex, Copilot, Cursor, Aider) has different model families and switching capabilities.
routesmith solves this by being host-aware:
| Host | Models | Strategy |
|---|---|---|
| Claude Code | Claude Opus 4.7 / Sonnet 4.6 / Haiku 4.5 | Dynamic model switching |
| Codex | GPT-5.5 / GPT-5.4 / GPT-5.3-Codex | Dynamic model switching |
| Copilot | Claude 4.7 / GPT-5.5 / Gemini 3.1 Pro (plan-dependent) | Prompt optimization |
| Cursor | Claude 4.7 / GPT-5.5 / GPT-5.3-Codex / Gemini 3.1 Pro | Prompt optimization |
| Aider | Claude 4.7 / GPT-5.5 / Gemini 3.1 Pro | Dynamic model switching |
Quickstart
pip install routesmith
import routesmith
# Auto-detect host, decompose, route, execute
result = routesmith.run("Plan and implement a REST API with tests")
# Just see the plan without executing
plan = routesmith.explain_route("Refactor the database layer")
# Check what you're running on
host = routesmith.detect_host()
caps = routesmith.get_host_capabilities()
CLI
# Route a prompt
routesmith run "Plan this feature, implement it, add tests, and write docs"
# Preview the route plan
routesmith explain "Refactor auth module and add integration tests"
# Diagnostics
routesmith detect-host
routesmith capabilities
routesmith doctor
How It Works
routesmith is an advisory routing layer — it plans and recommends, it does not replace your host's execution engine.
┌─────────────────────────────────────────┐
│ Your Prompt │
├─────────────────────────────────────────┤
│ 1. Detect host (Claude Code? Copilot?) │
│ 2. Decompose into typed subtasks │
│ 3. Map tasks → capability classes │
│ 4. Resolve to host-native models │
│ 5. Switch models or optimize prompts │
│ 6. Report metrics & effectiveness │
└─────────────────────────────────────────┘
What it does
- Decomposes mixed prompts into discrete, typed subtasks
- Routes each subtask to the best capability class (
deep_reasoning,coding,balanced,fast) - Switches models when the host supports it (Claude Code, Codex, Aider)
- Falls back to prompt optimization when the host controls model selection
- Reports timing, token estimates, effectiveness scores
What it does NOT do
- Does not make LLM API calls — the host handles execution
- Does not bypass host constraints — works within your IDE's limits
- Does not fake model switches — tells you honestly what happened
Design Philosophy
Coding agents run inside a host that owns the LLM connection. routesmith sits alongside the host as a skill layer that makes smarter routing decisions. It's the routing brain, not the execution muscle.
Capability Classes
Instead of hardcoding model names, routesmith uses abstract capability classes:
| Class | Use Case | Example Models |
|---|---|---|
deep_reasoning |
Planning, architecture, review | Claude Opus 4.7, GPT-5.5 |
coding |
Implementation, testing, refactoring | Claude Sonnet 4.6, GPT-5.3-Codex |
balanced |
Documentation, general tasks | Claude Sonnet 4.6, GPT-5.4 |
fast |
Formatting, simple transforms | Claude Haiku 4.5, GPT-5.4-mini |
Each host adapter maps these to actual available models.
Task Types
routesmith classifies prompts into: planning, analysis, coding, testing, refactor, documentation, formatting, review
Dependencies are resolved automatically — tests wait for code, docs wait for implementation.
Configuration
Environment Variables
| Variable | Description | Default |
|---|---|---|
ROUTESMITH_DEFAULT_MODE |
Execution mode | auto |
ROUTESMITH_ALLOW_MODEL_SWITCH |
Allow model switching | true |
ROUTESMITH_FORCE_HOST |
Force a specific host | — |
ROUTESMITH_DEBUG |
Enable debug output | false |
Config File
Create .routesmith.toml in your project root:
[routesmith]
default_mode = "auto"
allow_model_switch = true
MCP / Stdio Server
routesmith exposes an MCP-compatible JSON-RPC 2.0 server for tool integration:
routesmith serve-stdio
This lets IDE extensions and agents call routesmith as a tool.
Install Configs for Hosts
Generate host-specific configuration files:
routesmith install claude # Writes CLAUDE.md
routesmith install codex # Writes AGENTS.md
routesmith install copilot # Writes .github/copilot-instructions.md
routesmith install cursor # Writes .cursorrules
routesmith install aider # Writes .aider.conf.yml
Auto Mode (Default)
Auto mode is the default. For a single mixed prompt, routesmith:
- Detects the host environment
- Classifies the prompt into task types
- Splits into ordered subtasks with dependency resolution
- Chooses the best host-compatible model per subtask
- Executes (or recommends) the route
- Returns metrics and advisory messages
Truthful Switching
- If the host supports dynamic switching → routesmith switches
- If the host does NOT support switching → routesmith uses prompt strategy
- The result always tells you exactly what happened — no black boxes
Contributing
Contributions are welcome! See CONTRIBUTING.md for guidelines.
# Development setup
git clone https://github.com/sidrat2612/routesmith.git
cd routesmith
python -m venv .venv && source .venv/bin/activate
pip install -e ".[dev]"
pytest
Roadmap
- Host detection and capability mapping
- Weighted task decomposition planner
- Dependency-aware execution loop
- Persistent route state
- MCP stdio server
- Structured observability
- Real-time model performance tracking
- Cost-aware routing
- Custom policy plugins
- Additional host adapters
License
MIT — use it anywhere.
Built for the multi-model future of coding agents.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file routesmith-0.1.1.tar.gz.
File metadata
- Download URL: routesmith-0.1.1.tar.gz
- Upload date:
- Size: 43.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7d1cad2a285ff0e498e9b034c7d0714f7117d7edf0a2e5335fdb430f9f5d8721
|
|
| MD5 |
0c03cc3a2e4f5ac1b2e721c149aaa4a1
|
|
| BLAKE2b-256 |
85a03d3bf3f99f006e85899f35936c857e91ff3dcc95ab092b6cac4ea31f47ca
|
Provenance
The following attestation bundles were made for routesmith-0.1.1.tar.gz:
Publisher:
workflow.yml on sidrat2612/routesmith
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
routesmith-0.1.1.tar.gz -
Subject digest:
7d1cad2a285ff0e498e9b034c7d0714f7117d7edf0a2e5335fdb430f9f5d8721 - Sigstore transparency entry: 1458824758
- Sigstore integration time:
-
Permalink:
sidrat2612/routesmith@28ee8c502ef4afdd60f2626da06a9e0e911d5090 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/sidrat2612
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
workflow.yml@28ee8c502ef4afdd60f2626da06a9e0e911d5090 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file routesmith-0.1.1-py3-none-any.whl.
File metadata
- Download URL: routesmith-0.1.1-py3-none-any.whl
- Upload date:
- Size: 50.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f44ecbc2e75bcd9a1cb3d04a97de6cdb36fd3f4fbfd6a4aced5149cbc13176f1
|
|
| MD5 |
622bad484b9e0f80b7ca7a6aacc79ae8
|
|
| BLAKE2b-256 |
3274681c29e339eb370ff6bb900fc2a1f69bad576fadc9153003b0b59035d63e
|
Provenance
The following attestation bundles were made for routesmith-0.1.1-py3-none-any.whl:
Publisher:
workflow.yml on sidrat2612/routesmith
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
routesmith-0.1.1-py3-none-any.whl -
Subject digest:
f44ecbc2e75bcd9a1cb3d04a97de6cdb36fd3f4fbfd6a4aced5149cbc13176f1 - Sigstore transparency entry: 1458825104
- Sigstore integration time:
-
Permalink:
sidrat2612/routesmith@28ee8c502ef4afdd60f2626da06a9e0e911d5090 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/sidrat2612
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
workflow.yml@28ee8c502ef4afdd60f2626da06a9e0e911d5090 -
Trigger Event:
workflow_dispatch
-
Statement type: