fleetcom supervises your local development fleet: multiplexers, application servers, REPLs, builds, tests, and AI agent sessions.
Monitor every task's state and live output from one dashboard: test results, dev servers, and which agent is waiting on you.
Press Space for a quick peek at a task’s live screen without attaching to it.
Press Enter to take control of a task, then Ctrl-\ to return to the dashboard without interrupting it.
Organize related tasks into named groups, even when they run in different directories.
Start claude, codex, or grok normally. When you rerun the task or reload a saved session, fleetcom resumes the same conversation automatically.
Running several long-lived commands is pesky once they span terminal panes or need to survive a disconnect. fleetcom:
- Runs each command in its own PTY and groups tasks by state, working directory, or named group.
- Delegates tasks to a daemon, so a disconnecting client stops nothing.
- Saves and reloads task recipes: directories, commands, group assignments, and display names.
- Reruns a completed task in place, keeping its identity, group, and name.
- Preserves
claude,codex, andgrokconversations, so saved or rerun tasks resume instead of starting fresh. - Automatically snapshots the current task set for recovery.
The docs/ directory covers configuration, on-disk state, session files, resuming supported agent sessions, commands, and a complete first run.
Unix only: it relies on PTYs and process-group signals (killpg).
For normal use, install the published crate from crates.io:
cargo install fleetcomSource installation covers builds from a repository clone.
Connect to the daemon, autostarting it when necessary, and open the dashboard by invoking:
fleetcomThe invocation reference covers sessions, foreground mode, scrollback, and daemon shutdown.
The dashboard shows two short key hints; ? opens an expanded key reference:
❯ n run · @ dir · / find · s sort
↑↓ select · enter attach · space peek · ? controls
Ctrl-\backgrounds the task and returns to the dashboard.- Other supported input is forwarded to the task's PTY.
docs/commands.md covers every key and launch flag, including the routing mechanics.
Every task runs in its own pseudo-terminal, emulated with alacritty_terminal. The dashboard preview, peek overlay, and attached view all read the same emulated screen grid, so full-screen programs such as vim and htop retain one consistent terminal state across views. docs/how-it-works.md documents the terminal emulation, input routing, and activity grouping.
fleetcom targets concurrent build, test, watch, server, and interactive-agent processes. Each task is one command rather than a persistent shell session.
- Several long-lived commands need one place for observation, tagging, and attachment.
- Jobs must survive a terminal closing and remain available for reattachment.
- The same command set is launched often enough to justify a saved session.
- Agent sessions (
claude,codex,grok) must resume their conversations on rerun rather than start new ones.
- You primarily need persistent interactive shell workspaces; use
tmuxorzellijdirectly.fleetcomcan supervise a multiplexer, but it does not replace one. - You need a full process manager: the fleet’s lifetime is bounded by the daemon’s.
- The fleet dies with the daemon: the daemon process is the fleet's single point of failure.
- Commands run through the client's non-interactive shell (
$SHELL -c, or/bin/shwhenSHELLis unset), so functions and aliases defined in~/.zshrcare not available. - The daemon serves one client at a time.
Operational constraints documents the shutdown and signal mechanics.



