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

use super::{LifecycleAction, lifecycle};

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