Git worktrees
Termio reads your repository’s worktrees straight from git and shows them as a nested branch under the project, so parallel agent work stays isolated.
When you have several agents working a repository at once, you don’t want them stepping on each other’s files. Git worktrees give each line of work its own checkout on its own branch — and Termio surfaces them natively.
How Termio sees worktrees
Termio derives worktrees directly from git (git worktree list), so any
worktree you create — from the command line or elsewhere — shows up in the
sidebar automatically. Each one appears as a nested folder under its project,
labeled with its branch, forming a three-level tree: project → worktree →
sessions.
The list stays in sync: Termio reconciles it when a project loads, when the app regains focus, and when the git directory changes.
Working in a worktree
Open a session inside a worktree and it starts in that worktree’s directory on
that worktree’s branch. Point one agent at your main checkout and another at a
feat/… worktree, and their edits never collide — each has its own working tree,
its own index, its own branch.
An empty worktree still appears in the tree. Open its context menu and choose New Terminal or New Agent Session to start there.

Reviewing the work
The inspector’s git pane is read-only by design: three tabs — Changes, Compare, and History — let you read the diff, see what the branch would merge, and browse commits per worktree. Committing, pushing, and opening pull requests happen in the terminal, where you (or the agent) already are — see the inspector guide.

Agent Terminal Protocol
ATP is how Termio hosts any agent CLI — one JSON manifest declaring how to launch it, how it reports status, and how to resume its exact conversation. The agent’s own TUI stays in a real terminal.
Session control & the CLI
Termio’s orchestration API — status hooks that let agents report what they’re doing, and the termio sessions CLI that lets you (or another agent) spawn, drive, and supervise sessions from the shell.