tmai 2.0.0

Tactful Multi Agent Interface — binary bundle installer (use `cargo binstall tmai`)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Stub entry point compiled by `cargo install tmai`.
//!
//! The real `tmai-ratatui` TUI ships alongside `tmai` in the bundle tarball on
//! <https://github.com/trust-delta/tmai/releases>.

fn main() {
    eprintln!(
        "tmai-ratatui: the crates.io entry is a stub.\n\
         \n\
         Install the real binary via:\n  \
             cargo binstall tmai\n  \
         or:\n  \
             curl -fsSL https://raw.githubusercontent.com/trust-delta/tmai/main/install.sh | bash"
    );
    std::process::exit(1);
}