Orkestra: Cost-Aware LLM Routing Layer for OpenClaw Reduces API Costs by 60-80%

What Orkestra Does
Orkestra is a cost-aware LLM routing layer built for OpenClaw that reduces API costs by 60-80%. It's a modular architecture that sits in front of model calls and decides which tier should handle each request based on semantic similarity.
How It Works
When a prompt comes in, it gets embedded and passed through a lightweight KNN classifier trained on previously labeled workloads. Based on semantic similarity, the router categorizes it as budget, balanced, or premium and forwards the call accordingly.
There's no prompt rewriting and no complex rule tree — just semantic classification at call time. The reduction in API costs comes primarily from preventing simpler prompts from defaulting to the most expensive models.
Integration with OpenClaw
Orkestra plugs in as an OpenClaw skill via a local proxy, so existing pipelines stay completely intact. The agent calls it through bash/curl to an OpenAI-compatible endpoint on 127.0.0.1:8765.
The response includes full cost transparency with the fields _orkestra.cost and _orkestra.savings_percent.
Supported Providers and Configuration
- Supported providers: Google (Gemini), Anthropic (Claude), OpenAI
- Routes across budget/balanced/premium tiers within each provider
- Supports multi-provider mode across all three providers
- Repository and OpenClaw integration available at: github.com/imperativelabs/orkestra
- See
integrations/openclaw/for the skill files, proxy, and config examples
📖 Read the full source: r/openclaw
👀 See Also

Garry Tan's gstack: An Open Source AI Agent Framework for Claude Code
Garry Tan's gstack is an open source software factory that turns Claude Code into a virtual engineering team with 13 specialist slash commands for planning, design, engineering, review, QA, and release management.

Hippo v0.21.0: Biologically-Inspired Memory for AI Agents with Multi-Tool Support
Hippo v0.21.0 introduces one-command setup for multiple AI coding tools including Claude Code, OpenCode, OpenClaw, Codex, Cursor, and Pi. The memory system features decay, retrieval strengthening, and consolidation with zero runtime dependencies.

Meta Releases Muse Code with Muse Spark 1.2 Model
Meta's new Muse Code terminal coding agent, powered by Muse Spark 1.2, offers async background agents, a replay-exact runtime, and long-horizon coding capabilities.

Open source PR review agent PrixAI detects all 10/10 planted bugs at 6x lower cost than CodeRabbit
A Reddit user built PrixAI, an open source PR review agent that uses local/cheap inference models to match CodeRabbit's features at 6x less cost, detecting all 10 intentionally planted issues in a test PR.