Getting Started
Loom is a desktop app (Tauri + SolidJS) that hosts real terminal panes and exposes an inbound control bus so agents can coordinate. This page gets you from download to your first pane-to-pane message.
Install
Section titled “Install”Loom is Linux-first. Download the latest build from GitHub Releases — artifacts are hosted on Releases, not re-hosted here, so you always get the signed build that matches a tagged commit.
| Platform | Notes |
|---|---|
| Linux | The primary target — the fully supported build. |
| macOS / Windows | Builds exist, with a few platform parity items still in progress. |
First run
Section titled “First run”- Launch Loom. The new-workspace wizard opens (you can reopen it any time with
Ctrl+Shift+T). - Pick a working folder, choose a layout (1–16 panes), and set what each pane runs —
your shell,
claude, a dev server, whatever. Start from a preset like Fleet ×4 if you just want to poke around. Then create it withCtrl/Cmd+Enter. - Inside a workspace, split with
Ctrl+Shift+D(right) /Ctrl+Shift+E(down). Each pane has a routing handle (e.g.Cleo,Faye) — the name you’ll use to talk between panes. See Workspaces & the grid for the whole layout story.
Talk between panes
Section titled “Talk between panes”Every pane’s child process gets LOOM_SOCK, LOOM_PANE, and LOOM_BIN injected, and the
loom CLI is on PATH. From inside any pane:
loom list # who's around — names, live/dead, focused (*)loom send Cleo "run the tests" # type a line into another pane and press Enterloom spawn --name reviewer claude # open a new pane running an agentloom broadcast "pull main and rebase" # fan a line to every live paneIf $LOOM_PANE is empty you’re not inside a Loom pane and these commands are inert no-ops by
design — the same CLI can be installed globally and stays silent outside Loom.
Wire up an agent (MCP)
Section titled “Wire up an agent (MCP)”If your agent speaks MCP, the same operations are available as first-class tools via
loom mcp — list_panes, send_text, spawn_pane, broadcast, card_add, and friends.
See the CLI & MCP reference for the full surface, and
Agents, MCP & hooks for wiring an agent into Loom’s lifecycle.
Next steps
Section titled “Next steps”- Core concepts — the one mental model behind everything else.
- Workspaces & the grid — split, resize, tear off, and the wizard.
- Driving panes —
send,spawn,broadcast, and more. - The task board & swarm — queue work and let Loom dispatch it.
- The CLI & MCP reference — every command and tool.