swimmers 0.1.0

Axum server plus TUI for orchestrating Claude Code and Codex agents across tmux panes
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
mod swimmers_tui;

use clap::Parser;
use swimmers::cli::TuiCli;

fn main() -> Result<(), Box<dyn std::error::Error>> {
    // Parse for --help / --version. The TUI itself takes no other args
    // today; clap will exit early on --help/--version, otherwise we fall
    // through to the existing TUI run loop.
    let _ = TuiCli::parse();
    swimmers_tui::run()
}