Terminal

The terminal is Omnigent's default interface: keyboard-first, with streaming output and real-time tool execution. If you already live in a terminal, this is the fastest way to work with your agent.

Every interface (terminal, web UI, mobile, and desktop) connects to the same persistent, shareable session, so you can start work in one place and keep going anywhere.

Omnigent terminal session

Start a session

The terminal interface requires tmux, so install it first if you don't have it:

# macOS
brew install tmux

# Debian / Ubuntu
apt install tmux

Then launch an agent:

omni claude                          # Claude Code
omni codex                           # Codex
omni goose                           # Goose (native TUI)
omni hermes                          # Hermes (native TUI)
omni run agent.yaml                  # custom omnigent
omni run ./my-agent/                 # directory with config.yaml

omni claude, omni codex, omni goose, and omni hermes launch a built-in coding agent with Omnigent's UI. No YAML needed. See the Coding Agent tutorial and the full harness list in Harnesses.

omni run starts a custom omnigent from a YAML config. See Custom Agents for how to write one.

CLI overrides

Override executor values at runtime without editing the YAML:

omni run agent.yaml --harness codex --model gpt-4.1-mini

The --harness and --model flags map directly to the executor block. This lets you reuse the same config across different LLM backends.

From here, the agent streams its output as it thinks and acts. Tool calls run in real time, so you watch file writes, shell commands, and API calls land as they happen. The session also stays in sync with the Web UI both ways: run the agent in your terminal and glance at the browser whenever you want file diffs or inline comments.

Sessions and conversations

A session is a conversation. Every message, tool call, and file change lives in one continuous thread. Sessions are the core unit of work in Omnigent, and three properties make them useful:

When to use the terminal

The terminal shines when you want to stay close to the command line: