* fix(tasks): rename NewWorkspacePage to TaskPage and unblock Close on collapsed sidebar Rename the full-page work-item view to TaskPage (file, component, store actions, and the `activeView` literal) so the name matches the surface the user sees. Also fix a regression where the page's Close button was unreachable in workspace view with the sidebar collapsed — the floating titlebar-left strip (traffic lights + sidebar toggle + agent badge) overlapped the Close button, leaving the user stuck. Mirror the TabGroupPanel fix by reserving `var(--collapsed-sidebar-header-width)` of left padding on the Close row, which App.tsx already keeps in sync with the live measured width of that floating header. * fix(tasks): give TaskPage its own 42px titlebar and drop Close below it Rather than cramming the Close button into the same horizontal band that App.tsx uses for the floating traffic-lights/sidebar-toggle strip, give TaskPage its own 42px "Tasks" titlebar (matching the sidebar header and tab rows) and move the Close (X) button into a dedicated row below it. The titlebar is drag-region so the window stays movable from this band. Skipped in non-workspace mode where App.tsx already owns the full-width titlebar, to avoid a duplicate band. * fix(tasks): keep sidebar-expand toggle visible over TaskPage titlebar When the left sidebar is collapsed, App.tsx floats the titlebar-left strip (traffic lights, sidebar-expand toggle, agent badge) over the top-left of the page at z-10. TaskPage's own 42px strip sat at the same stacking level and painted later in DOM, so its solid background hid the expand toggle. Split the strip: keep the reserved region transparent so the floating controls show through, and only paint bg/border on the remainder. The floating titlebar-left already carries the matching bg + border-bottom, so the two segments still read as one continuous band. * fix(tasks): let clicks reach sidebar toggle under TaskPage titlebar The reserved spacer in TaskPage's titlebar strip sits on top of App.tsx's floating titlebar-left (which hosts the sidebar-expand toggle and agent badge). Two things were swallowing clicks meant for the toggle: 1. The outer strip carried WebkitAppRegion='drag', so Electron treated the whole 42px row as window-drag — even the transparent reserved region. 2. The transparent div itself absorbed pointer events before they reached the underlying toggle. Scope the drag region to just the painted "Tasks" segment, and mark the reserved spacer pointer-events-none with an explicit no-drag override. * fix(tasks): stop TaskPage wrapper from blocking sidebar-expand toggle The TaskPage's inner column had z-10, the same z-index as App.tsx's floating titlebar-left cluster (traffic lights, sidebar toggle, agent badge) that hovers in the top-left when the sidebar is collapsed. Tie on z-index + later in DOM meant TaskPage painted over titlebar-left, so clicks on the reserved spacer region fell through pointer-events-none into the wrapper behind the spacer rather than reaching the toggle. Dropping z-10 from the inner column lets titlebar-left paint above the page content and receive clicks cleanly, without changing the visual layout.
Orca
The AI Orchestrator for 100x builders.
Run Claude Code, Codex, or OpenCode side-by-side across repos — each in its own worktree, tracked in one place.
Available for macOS, Windows, and Linux.
Supported Agents
Orca supports any CLI agent (not just this list).
Claude Code
Codex
Gemini
Pi
Hermes Agent
OpenCode
Goose
Amp
Auggie
Charm
Cline
Codebuff
Continue
Cursor
Droid
GitHub Copilot
Kilocode
Kimi
Kiro
Mistral Vibe
Qwen Code
Rovo Dev
Features
- No login required — Bring your own Claude Code or Codex subscription.
- Worktree-native — Every feature gets its own worktree. No stashing, no branch juggling. Spin up and switch instantly.
- Multi-agent terminals — Run multiple AI agents side-by-side in tabs and panes. See which ones are active at a glance.
- Built-in source control — Review AI-generated diffs, make quick edits, and commit without leaving Orca.
- GitHub integration — PRs, issues, and Actions checks linked to each worktree automatically.
- Notifications — Know when an agent finishes or needs attention. Mark threads unread to come back later.
Install
- Download from onOrca.dev
- Or download the latest binaries via the GitHub Releases page.
[New] Hot Swap Codex Accounts
Multiple Codex accounts? Switch in one click.
If you run multiple Codex accounts to get the best token deal, Orca lets you hot-swap between them instantly — no re-login, no config files. Just pick an account and keep building.
[New] Per Worktree Browser & Design Mode
See your app. Click any element. Drop it into the chat.
Orca ships with a built-in browser right inside your worktree. Preview your app as you build, then switch to Design Mode — click any UI element and it lands directly in your AI chat as context. No screenshots, no copy-pasting selectors. Just point at what you want to change and tell the agent what to do.
[New] Introducing the Orca CLI
Agent orchestration from your terminal.
Let your AI agent control your IDE. Use AI to add repos to your IDE, spin up worktrees, and update the current worktree's comment with meaningful progress checkpoints directly from the terminal. Ships with the Orca IDE (install under Settings).
npx skills add https://github.com/stablyai/orca --skill orca-cli
Community & Support
- Discord: Join the community on Discord.
- Twitter / X: Follow @orca_build for updates and announcements.
- Feedback & Ideas: We ship fast. Missing something? Request a new feature.
- Show Support: Star this repo to follow along with our daily ships.
Developing
Want to contribute or run locally? See our CONTRIBUTING.md guide.


