agentmux 0.2.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
use crate::runtime::error::RuntimeError;

use super::{LifecycleAction, lifecycle};

pub(super) fn run_agentmux_up(arguments: &[String]) -> Result<(), RuntimeError> {
    if arguments
        .iter()
        .any(|value| value == "--help" || value == "-h")
    {
        lifecycle::print_up_help();
        return Ok(());
    }
    lifecycle::run_bundle_lifecycle(LifecycleAction::Up, arguments)
}