bitrouter
v0.1.0Cost-optimize your agentic loops: route every model call through the cheapest viable path. Bundles the bitrouter setup skill and the origin MCP server for in-session model arbitrage.
Apache-2.0216updated 5 hours ago
Source
git clone https://github.com/bitrouter/bitrouterClone the source, then follow the repository's marketplace instructions for your runtime. The repository root is the plugin root.
Layout
├── .codex-plugin/plugin.json├── .claude-plugin/plugin.json├── skills/evaluating-bitrouter-routes/SKILL.md├── skills/run-bitrouter-benchmark/SKILL.md└── .mcp.json
Skills2
Use when evaluating BitRouter route decisions or Eval Exchange subjects with task-native verifiers, human reviewers, private enterprise evaluators, agentic judges, or genuinely uncategorized evaluator sources.
Use when planning, launching, resuming, auditing, or reproducing a BitRouter Terminal-Bench 2.1 benchmark with Harbor, Terminus 2, and AWS EC2, including short policy iterations, one-time controls, model comparisons, or public full runs.
MCP servers1
- command
- bitrouter
- args
- mcp serve
Manifests2
{
"name": "bitrouter",
"displayName": "BitRouter",
"version": "0.1.0",
"description": "Cost-optimize your agentic loops: route every model call through the cheapest viable path. Bundles the bitrouter setup skill and the origin MCP server for in-session model arbitrage.",
"homepage": "https://bitrouter.ai",
"repository": "https://github.com/bitrouter/bitrouter",
"license": "Apache-2.0",
"keywords": [
"llm",
"router",
"gateway",
"cost",
"openai",
"anthropic",
"mcp"
],
"skills": "./skills/bitrouter",
"mcpServers": "./.codex-plugin/mcp.json"
}{
"name": "bitrouter",
"displayName": "BitRouter",
"version": "0.1.0",
"description": "Cost-optimize your agentic loops: route every model call through the cheapest viable path. Bundles the bitrouter setup skill and the origin MCP server for in-session model arbitrage.",
"author": {
"name": "BitRouterAI"
},
"homepage": "https://bitrouter.ai",
"repository": "https://github.com/bitrouter/bitrouter",
"license": "Apache-2.0",
"keywords": [
"llm",
"router",
"gateway",
"cost",
"openai",
"anthropic",
"mcp"
],
"skills": [
"./skills/bitrouter"
],
"mcpServers": {
"bitrouter": {
"command": "bitrouter",
"args": [
"mcp",
"serve"
]
}
}
}