plugins marketplace
← All plugins

bitrouter

v0.1.0

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.

CodexClaude Code2 skills1 MCP serverstdio

Apache-2.0216updated 5 hours ago

Source

git clone https://github.com/bitrouter/bitrouter

Clone the source, then follow the repository's marketplace instructions for your runtime. The repository root is the plugin root.

Layout

bitrouter/
├── .codex-plugin/plugin.json
├── .claude-plugin/plugin.json
├── skills/evaluating-bitrouter-routes/SKILL.md
├── skills/run-bitrouter-benchmark/SKILL.md
└── .mcp.json

Skills2

evaluating-bitrouter-routesskills/evaluating-bitrouter-routes/SKILL.md

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.

run-bitrouter-benchmarkskills/run-bitrouter-benchmark/SKILL.md

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

bitrouterstdio
command
bitrouter
args
mcp serve

Manifests2

.codex-plugin/plugin.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.",
  "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"
}
.claude-plugin/plugin.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"
      ]
    }
  }
}