agentmux 0.1.0

Multi-agent coordination runtime with inter-agent messaging across CLI, MCP, tmux, and ACP.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Shared primitives for agentmux executables.

pub mod commands;
pub mod configuration;
pub mod envelope;
pub mod mcp;
pub mod relay;
pub mod runtime;
pub mod tui;

/// Returns a human-readable startup line for a binary.
pub fn startup_line(binary: &str) -> String {
    format!(
        "{binary} starting ({name} v{version})",
        name = env!("CARGO_PKG_NAME"),
        version = env!("CARGO_PKG_VERSION"),
    )
}