Skip to content

CLI Reference

This is the quick-lookup cheat-sheet for the leapmux command line. It covers the top-level command list, a synopsis and flag table for each daemon mode (solo, hub, worker, dev), the version command, the environment variables LeapMux reads, and a pointer to the two large command groups — admin and remote — which have their own dedicated chapters.

For task-oriented walkthroughs rather than reference tables, see Running LeapMux (run modes, ports, data dirs, Docker), Configuration (full config-key reference and storage backends), Admin CLI, and Remote Control CLI.

Top-level usage

leapmux is a single binary with seven commands:

Usage: leapmux <command> [flags]

Commands:
  solo      Run Hub + Worker locally for single-user use
  hub       Run the Hub service
  worker    Run a Worker connected to a Hub
  dev       Run Hub + Worker for development
  admin     Manage LeapMux resources
  remote    Drive LeapMux remotely (CLI / spawned agent)
  version   Print version and exit

Common options:
  -h, --help     Print help and exit
  -version       Print version and exit
  --version      Print version and exit
CommandWhat it doesReference
soloHub + Worker in one process, loopback only, no loginRunning LeapMux
hubHub service only; Workers connect separatelyRunning LeapMux
workerWorker only; connects out to a HubManaging Workers
devHub + Worker in one process with real auth (development)Running LeapMux
adminManage Hub data directly against the databaseAdmin CLI
remoteDrive a running Hub over RPC (scripts / spawned agents)Remote Control CLI
versionPrint the build version and exitbelow

Notes on dispatch:

  • The default TCP port for every mode is 4327.
  • -h, -help, --help, and help are all recognized as help tokens (help prints to stdout, exit 0).
  • -version, --version, and the version command all print the same version string.
  • Daemon flags must follow the command keyword — leapmux solo -listen ..., not leapmux -listen ... solo. An unknown leading -flag errors with <flag> is not a top-level flag.
  • Help tokens are recognized at every level; unexpected positional args are rejected with unexpected argument: "<arg>" (use --help for usage).

Tip: Flags accept both single- and double-hyphen forms (-listen and --listen are equivalent). This chapter uses the single-hyphen form, matching the binary’s help output.

solo

Run a Hub and a Worker in one process on loopback, with no login (every request is auto-authenticated as the admin). See Running LeapMux for details.

leapmux solo [flags]
# then open http://127.0.0.1:4327
FlagDefaultMeaning
-listen127.0.0.1:4327TCP listen address
-data-dir. (resolves to ~/.config/leapmux/solo)Data directory (split into <data-dir>/hub and <data-dir>/worker)
-dev-frontendemptyFrontend dev-server URL for the local reverse proxy
-storage-sqlite-max-conns4SQLite max open connections
-max-message-size0 (= 16 MiB)Max reassembled channel message size in bytes
-max-incomplete-chunked0 (= 4)Max in-flight chunked sequences per channel
-api-timeout-seconds10General API timeout
-agent-startup-timeout-seconds300Agent startup timeout
-worktree-create-timeout-seconds60Worktree creation timeout
-encryption-modepost-quantumclassic or post-quantum (for the bundled Worker)
-log-levelinfodebug, info, warn, error
-config~/.config/leapmux/solo/solo.yamlConfig file path
-versionPrint version and exit

Note: -public-url is not available in solo mode; public_url set by any means is rejected with public_url is not supported in solo mode. Binding solo to a non-loopback address logs a warning because every request is auto-authenticated as the admin — use hub or dev for network-exposed deployments.

hub

Run only the Hub: authentication, workspace management, Worker registration, and the encrypted relay. Binds all interfaces by default and requires a real login. See Running LeapMux and Configuration for the complete key reference.

leapmux hub [flags]

This table lists the most common flags. The full set — including all PostgreSQL/MySQL/CockroachDB/YugabyteDB/TiDB pool-tuning flags — is in Configuration.

Server options

FlagDefaultMeaning
-listen:4327TCP listen address (e.g. :4327 or 127.0.0.1:4327)
-local-listenplatform defaultLocal IPC URL (unix:<path> or npipe:<name>); default unix:<data-dir>/hub.sock on Unix
-public-urlemptyPublic base URL behind a reverse proxy (e.g. https://hub.example.com)
-data-dir. (resolves to ~/.config/leapmux/hub)Data directory
-dev-frontendemptyFrontend dev-server URL for the reverse proxy
-log-levelinfodebug, info, warn, error

Auth options

FlagDefaultMeaning
-signup-enabledfalseEnable user sign-up
-email-verification-requiredfalseRequire email verification on sign-up (needs -smtp-host)

SMTP options

FlagDefaultMeaning
-smtp-hostemptySMTP server host
-smtp-port587SMTP server port
-smtp-usernameemptySMTP username
-smtp-passwordemptySMTP password
-smtp-from-addressemptyFrom address (required when -smtp-host is set)
-smtp-tls-modestarttlsstarttls, implicit, or none

Timeout and limit options

FlagDefaultMeaning
-max-message-size0 (= 16 MiB)Max reassembled channel message size in bytes
-max-incomplete-chunked0 (= 4)Max in-flight chunked sequences per channel
-api-timeout-seconds10General API timeout
-agent-startup-timeout-seconds300Agent startup timeout
-worktree-create-timeout-seconds60Worktree creation timeout

Storage options

FlagDefaultMeaning
-storage-typeempty (= sqlite)sqlite, postgres, mysql, cockroachdb, yugabytedb, or tidb
-storage-sqlite-pathempty (= <data-dir>/hub.db)SQLite database file path
-storage-sqlite-max-conns4SQLite max open connections
-storage-sqlite-cache-size0Page cache: positive = pages, negative = KiB (e.g. -65536 = 64 MiB)
-storage-sqlite-mmap-size0Memory-mapped I/O size in bytes (0 = disabled)
-storage-postgres-dsnemptyPostgreSQL connection string (required when storage.type is postgres)
-storage-mysql-dsnemptyMySQL connection string (required when storage.type is mysql)

The Postgres family (-storage-postgres-*, -storage-cockroachdb-*, -storage-yugabytedb-*) defaults to max-conns 25, min-conns 5, conn-max-lifetime-seconds 3600, max-conn-idle-time-seconds 300, health-check-period-seconds 30. The MySQL family (-storage-mysql-*, -storage-tidb-*) defaults to max-conns 25, max-idle-conns 5, conn-max-lifetime-seconds 3600, conn-max-idle-time-seconds 300. CockroachDB/YugabyteDB use the Postgres driver; TiDB uses the MySQL driver. See Configuration for every storage flag and DSN format.

Common options

FlagDefaultMeaning
-config~/.config/leapmux/hub/hub.yamlConfig file path
-versionPrint version and exit

Note: Two hub config keys have no CLI flag and are set only via YAML or env var: secure_cookies (LEAPMUX_HUB_SECURE_COOKIES) and encryption_key_path (LEAPMUX_HUB_ENCRYPTION_KEY_PATH, default <data-dir>/encryption.key). See Configuration and Encryption & Data.

worker

Run a Worker that connects out to a Hub. Workers do not serve an inbound HTTP port; they register with the Hub using a key minted in the Hub UI. See Managing Workers.

# First run — register with a key from the hub UI:
leapmux worker -hub https://hub.example.com -registration-key <key>

# Subsequent runs — credentials are saved, no key needed:
leapmux worker -hub https://hub.example.com

Worker options

FlagDefaultMeaning
-hubhttp://127.0.0.1:4327Hub URL (http[s]://..., unix:<socket>, or npipe:<name>)
-registration-keyemptyRegistration key from the Hub UI (required on first run; never persisted)
-nameempty (= hostname)Worker display name
-data-dir. (resolves to ~/.config/leapmux/worker)Data directory (holds state.json, worker.db)
-encryption-modepost-quantumclassic or post-quantum
-use-login-shelltrueWrap the agent invocation in the user’s login shell
-log-levelinfodebug, info, warn, error

Timeout and limit options

FlagDefaultMeaning
-max-message-size0 (= 16 MiB)Max reassembled channel message size in bytes
-max-incomplete-chunked0 (= 4)Max in-flight chunked sequences per channel
-agent-startup-timeout-seconds300Agent startup timeout
-api-timeout-seconds10JSON-RPC request timeout

SQLite database options

FlagDefaultMeaning
-db-max-conns4Max open database connections
-db-cache-size0Page cache: positive = pages, negative = KiB (e.g. -65536 = 64 MiB)
-db-mmap-size0Memory-mapped I/O size in bytes (0 = disabled)

Common options

FlagDefaultMeaning
-config~/.config/leapmux/worker/worker.yamlConfig file path
-versionPrint version and exit

Note: An unregistered Worker with no saved credentials errors with worker is unregistered: pass --registration-key <key> from the hub UI. Passing -registration-key again to an already-registered Worker errors with worker is already registered; remove --registration-key or wipe local state to re-register, which protects you from burning a one-time key.

worker cross-worker-pins

A local-only utility for inspecting the Worker’s TOFU pin store. It runs entirely against local files — no Worker process starts. See Security & Threat Model for what these pins protect.

leapmux worker cross-worker-pins list|show|remove [--target-worker-id=<id>] [--data-dir=<dir>]
SubcommandRequiresAction
listPrint all pins as JSON
show--target-worker-idPrint one pin (errors no pin recorded for target_worker_id=<id> if absent)
remove--target-worker-idRemove the pin; prints {"removed_target_worker_id": <id>}

When --data-dir is omitted, the data directory is resolved through the standard Worker config loader, so it matches what leapmux worker would use: default ~/.config/leapmux/worker, overridable with LEAPMUX_WORKER_DATA_DIR (or a data_dir entry in worker.yaml).

Note: The binary’s own help text for this flag mentions LEAPMUX_DATA_DIR, but that variable is not read by the leapmux binary itself (only by the Docker entrypoint script), so it has no effect on this subcommand’s data-dir resolution. Use LEAPMUX_WORKER_DATA_DIR (or --data-dir) here.

dev

Run a Hub and a Worker in one process with real password authentication — the same program as solo but with login enabled, binding all interfaces, and the first admin bootstrapped through the /setup flow. See Running LeapMux.

leapmux dev [flags]

Dev mode uses the same flag set as solo, with one addition:

FlagDefaultMeaning
-public-urlemptyPublic base URL when behind a reverse proxy

The other differences from solo: the default -listen is :4327 (all interfaces), the config/data location is ~/.config/leapmux/dev/, and the bundled Worker’s auto-registration is deferred until the first admin completes /setup.

version

Print the build version and exit. The output is a single line with fields joined by ·:

$ leapmux version
0.0.1-dev · 9c81b87 · feature/foo · Thu, 4/23/2026, 11:45:00 PM KST

Fields are conditional: the version value is always present (falls back to dev), the commit hash and build time appear when set, and the branch is shown only when it is not main. The top-level -version / --version flags print the same string.

admin (command-group outline)

leapmux admin manages a Hub’s persistent data directly against its database and on-disk encryption key — no running Hub or network call required. It is a tree of command groups. For full per-command flags and behavior, see Admin CLI.

leapmux admin <group> <command> [flags]
GroupCommands
orglist
userlist, get, create, update, delete, reset-password, grant-admin, revoke-admin, list-sessions
sessionlist, revoke, revoke-user, purge-expired
workerlist, get, deregister; subgroup reg-key: list, revoke, purge-expired
oauth-provideradd, list, remove, enable, disable
encryption-keyrotate, remove, reencrypt, rotate-pepper
dbpath, migrate, version
api-tokenlist, issue, revoke
delegation-tokenlist, revoke

Most admin commands accept --data-dir and --config to locate the database and encryption key; output is indented JSON or a tabular listing. Commands that take --password prompt interactively when the flag is omitted (and require --password when stdin is not a terminal). See Admin CLI, Authentication Providers, and Encryption & Data.

remote (command-group outline)

leapmux remote drives a running Hub over RPC — it does not touch the database. It is used both by external scripts (which authorize with leapmux remote auth login) and by agents/terminals that LeapMux spawns (which inherit LEAPMUX_REMOTE_* env vars). Every command emits a JSON envelope — {"data": ...} on success, {"error": {"code", "message"}} on failure (both on stdout) — with a non-zero exit on failure. For full per-command flags, entity-ID resolution, and output shapes, see Remote Control CLI.

leapmux remote <group> <command> [flags]
leapmux remote auth login --hub https://hub.example.com   # authorize first
GroupCommands
(top level)whoami, version
authlogin, logout, list, status
workspacelist, get, create, rename, delete
tablist, get, open, close, rename, move
workerlist, get; subgroup pins: list, show, remove
agentsend, interrupt, get, providers, messages, set, send-control-response
tilelist, split, close, make-grid, remove-grid, set-ratios, set-grid-ratios
layoutget, set
filelist, read, stat
gitstatus, branches, worktrees, read
terminalsend, get, shells
eventswatch

Note: Agents are opened, closed, listed, and renamed through the tab group (tab open --type agent, tab close, …) — there is no agent open/agent close/agent list. The agent group is for agent-specific operations only.

Environment variables

LeapMux reads configuration and credentials from these environment variables.

Daemon configuration (hub / solo / dev and worker)

Hub-family modes (hub, solo, dev) read variables prefixed LEAPMUX_HUB_; the Worker reads LEAPMUX_WORKER_. The variable name after the prefix is lowercased to form the config key — for example LEAPMUX_HUB_LISTEN sets listen, LEAPMUX_WORKER_HUB sets hub.

VariableSetsExample
LEAPMUX_HUB_LISTENhub listen:4327
LEAPMUX_HUB_LOCAL_LISTENhub local_listenunix:/run/leapmux/hub.sock
LEAPMUX_HUB_PUBLIC_URLhub public_urlhttps://hub.example.com
LEAPMUX_HUB_DATA_DIRhub data_dir/var/lib/leapmux/hub
LEAPMUX_HUB_LOG_LEVELhub log_levelinfo
LEAPMUX_HUB_SIGNUP_ENABLEDhub signup_enabledtrue
LEAPMUX_HUB_SECURE_COOKIEShub secure_cookies (no CLI flag)true
LEAPMUX_HUB_ENCRYPTION_KEY_PATHhub encryption_key_path (no CLI flag)/etc/leapmux/encryption.key
LEAPMUX_WORKER_HUBworker hubhttps://hub.example.com
LEAPMUX_WORKER_NAMEworker namebuild-box-1
LEAPMUX_WORKER_DATA_DIRworker data_dir/var/lib/leapmux/worker
LEAPMUX_WORKER_ENCRYPTION_MODEworker encryption_modepost-quantum
LEAPMUX_WORKER_LOG_LEVELworker log_levelinfo

The prefix strip lowercases the remainder but does not translate _ into ., so nested storage keys such as storage.type and storage.postgres.dsn cannot be set cleanly via env vars — use the YAML config file or the dedicated -storage-* flags instead. See Configuration for the full list and precedence rules (defaults < config file < env vars < explicitly-set CLI flags).

Remote CLI (leapmux remote)

VariableUsed byMeaning
LEAPMUX_HUBremote (and auth login --hub fallback)Hub URL when --hub is not passed
LEAPMUX_REMOTE_CONFIG_DIRremoteOverride the credential/pin directory (default ~/.config/leapmux/remote)
LEAPMUX_REMOTE_SOCKspawned agentsLocal IPC socket URL (selects local-IPC transport)
LEAPMUX_REMOTE_TOKENspawned agentsPer-process bearer token for the local IPC socket
LEAPMUX_REMOTE_USER_IDspawned agentsAuthenticated user ID (entity default)
LEAPMUX_REMOTE_WORKER_IDspawned agentsHost worker ID (default for --worker-id)
LEAPMUX_REMOTE_ORG_IDspawned agentsOrg ID (default for --org-id)
LEAPMUX_REMOTE_TAB_IDspawned agentsSpawning tab’s ID (default for --tab-id)
LEAPMUX_REMOTE_TAB_TYPEspawned agentsagent, terminal, or file
LEAPMUX_REMOTE_WORKING_DIRspawned agentsWorking directory at spawn
LEAPMUX_REMOTE_AGENT_PROVIDERspawned agentsAgent provider (agents only)

The LEAPMUX_REMOTE_* variables (the _SOCK / _TOKEN / _*_ID / _TAB_* family) are injected automatically by the Worker into the agents and terminals it spawns; you do not set them by hand. See Remote Control CLI for how they drive entity-ID resolution.

Config and data locations

Each mode reads an optional YAML config named after the mode, and stores data, under its own directory. A missing config file is silently skipped.

ModeConfig fileDefault data dir
solo~/.config/leapmux/solo/solo.yaml~/.config/leapmux/solo
hub~/.config/leapmux/hub/hub.yaml~/.config/leapmux/hub
worker~/.config/leapmux/worker/worker.yaml~/.config/leapmux/worker
dev~/.config/leapmux/dev/dev.yaml~/.config/leapmux/dev
remote~/.config/leapmux/remote/<hub-host>.json (credentials, mode 0600)

In solo and dev, the data directory is split into <data-dir>/hub and <data-dir>/worker subdirectories. See Running LeapMux and Configuration for the full layout and resolution rules.

Last updated on