Replies: 17 comments 1 reply
-
Additional context: the economic case for multi-model orchestrationOne more reason this matters beyond pure capability — AI model subsidies are shrinking. Right now, $200/month subscriptions give you inference worth $500-$1,000+ (source). That won't last. As subsidies reduce, you can't rely on one model anymore — the economics force multi-model routing:
Using Opus for everything at This is why orchestration needs to be model-aware — the coordinator should route work to the cheapest model that can handle it. Orca already knows which agent is in which terminal. Adding cost-aware routing would be a differentiator no other open-source tool has. Key insight from Artificial Analysis: DeepSeek V4 achieves ~90% of GPT-5.4 performance at 1/50th the input cost. GLM-5.1 is #1 on SWE-Bench Pro while costing 1/5th of Opus. The frontier is no longer just about the best model — it's about the best model per dollar per task type. |
Beta Was this translation helpful? Give feedback.
-
The CLI primitives are already thereJust tested this — # Resolve terminals by name
CLAUDE=$(orca terminal list --json | jq -r '.result.terminals[] | select(.title == "CLAUDE") | .handle' | head -1)
OPENCODE=$(orca terminal list --json | jq -r '.result.terminals[] | select(.title == "OPENCODE") | .handle' | head -1)
CODEX=$(orca terminal list --json | jq -r '.result.terminals[] | select(.title == "CODEX") | .handle' | head -1)
# 1. Architect builds
orca terminal send --terminal $CLAUDE --text "implement dark mode per spec" --enter
orca terminal wait --terminal $CLAUDE --for exit --timeout-ms 3600000
# 2. Hand off to reviewer
orca terminal send --terminal $CODEX --text "review the changes in branch feat/dark-mode" --enter
orca terminal wait --terminal $CODEX --for exit
# 3. Scout researches in parallel (no wait needed)
orca terminal send --terminal $OPENCODE --text "find all existing theme tokens in the codebase" --enterNo Multica, no tmux scripts, no external daemon. The loop runs on top of Orca's own runtime. What's actually missing is the GUIThe CLI works. What doesn't exist yet is a visual representation of the handoff flow — something like: A panel in Orca that shows:
This is a thin UI layer on top of For comparison, this is exactly what Augment Intent does — but it's closed-source and opaque. An open version with Orca's terminal transparency would be significantly more useful. |
Beta Was this translation helpful? Give feedback.
-
|
Sorry for the AI slop but it would be amazing if we thought on a better GUI/Flow/System for that |
Beta Was this translation helpful? Give feedback.
This comment was marked as spam.
This comment was marked as spam.
This comment was marked as spam.
This comment was marked as spam.
-
|
I'm curious if it makes sense to start with a simpler setup, for instance, each step just hands off the task at hand + a change summary to the next agent. Without sophisticated notifications and shared memory, just filesystem and logs. |
Beta Was this translation helpful? Give feedback.
This comment was marked as spam.
This comment was marked as spam.
This comment was marked as spam.
This comment was marked as spam.
This comment was marked as spam.
This comment was marked as spam.
This comment was marked as spam.
This comment was marked as spam.
This comment was marked as spam.
This comment was marked as spam.
This comment was marked as spam.
This comment was marked as spam.
This comment was marked as spam.
This comment was marked as spam.
This comment was marked as spam.
This comment was marked as spam.
This comment was marked as spam.
This comment was marked as spam.
-
|
We've added experimental orchestration capabilities to our Orca CLI, feel free to install the skill and try it out! (in Settings -> Experimental -> Agent Orchestration) https://github.com/stablyai/orca/blob/main/skills/orchestration/SKILL.md |
Beta Was this translation helpful? Give feedback.
-
|
I think https://bernstein.run/blog/orchestrator-vs-desktop-ade does a another great angle of orchestration benefit. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
The idea
Orca already runs Claude Code, Codex, and OpenCode side by side in terminals with git worktree isolation. What if it could coordinate work between them automatically?
The pattern — pioneered by Augment Intent (closed-source, Mac-only) — works like this:
No open-source desktop coding environment does this natively today. Orca is uniquely positioned because it already has the foundations:
.claude/config for agents, skills, commandsWhat exists today (external tools)
I've been researching the multi-agent orchestration landscape:
See also: Awesome Agent Orchestrators
What Orca could build
A lightweight orchestration layer that sits above the existing terminal infrastructure:
Phase 1: Inter-agent messaging
Phase 2: Task decomposition
Phase 3: Automated handoff
Phase 4: Living specs
Why Orca specifically?
Orca is the only open-source desktop environment that:
The missing piece is the glue — the coordinator that makes the agents collaborate instead of just coexisting.
Cost-efficient model routing
From benchmarking research (Artificial Analysis Coding Index), the optimal setup routes different models to different roles:
This hierarchical approach achieves ~97% of full-frontier accuracy at ~61% of the cost (source).
Discussion questions
Happy to contribute to implementation — I've been working on the agent infrastructure PRs and have a working Multica setup across 9 repos that could inform the design.
References: Augment Intent · Multica · Overstory · Gas Town · Awesome Agent Orchestrators · Addy Osmani — The Code Agent Orchestra
Beta Was this translation helpful? Give feedback.
All reactions