v1.1 is here · new

One window. Every branch. Every agent.

The terminal where Claude, Gemini and Codex run in parallel, and your whole team works together.

Native worktrees GitHub + GitLab Every AI in parallel macOS · Windows · Linux
Quick start N
See all features
v1.1 shipped
Free during launch
Local-first · No telemetry
›› bypass permissions on
click a snippet · ⌘B broadcast · 4/16 panes

Four agents · one window · zero context switching

Works with the tools you already use

Claude
Gemini
Codex
Copilot
OpenCode
Terminal
Custom CLIs
MULTI-AI

Seven AIs. One window.
Zero conflicts.

Claude, Gemini, Codex, Copilot and more, each in its own pane with its own process and HOME directory. Switch agents mid-session without losing context.

claude · pane 1
claude >
Team Activity
live
A
alex.k pushed 3 commits · feat/auth
D
devon.p opened PR #42: add rate limiting
ci CI passed on feat/auth · 2m 14s
TEAMS

Your team's activity.
Right where you code.

Real-time chat with GitHub events. Share any terminal with an 8-char code. Shared snippets and MCP configs. Daily standup built in.

GIT

Native worktrees. PRs.
AI review. All in one place.

Spawn a fully isolated worktree per task, with its own deps and dev server. View, create and merge PRs with AI code review. Works with GitHub and GitLab.

src/lib/auth.ts
AI Review
12
12
export async function authenticate(req: Request) {
13
const token = req.headers.get('x-token');
14
if (!token) return null;
13
+
const header = req.headers.get('authorization');
14
+
if (!header?.startsWith('Bearer ')) return null;
15
+
const token = header.slice(7);
15
16
const user = await verifyJWT(token);
16
17
return user ?? null;
17
18
}
AI
Claude · line 14

Consider validating the JWT signature algorithm explicitly to avoid alg: none attacks.

D
devon.p · line 15

Nice. RFC 6750 compliant. Mind adding a test for malformed headers?

WORKFLOW

Your whole workflow.
One window.

A real Chromium browser cell next to your agent. Voice input via local Whisper. ⌘K Spotlight jumps anywhere. MCP servers managed visually.

Browser Cell
Voice Input
⌘K Spotlight
MCP Panel
Your AI workspace is waiting

Stop juggling tabs.
Start shipping.

Free during launch. No credit card. Works with the tools you already have, and the ones you didn't know you needed.

v1.2.0 stable
Local-first · No telemetry
macOS 13+ · Windows 10+ · Linux