agentmux 0.8.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
use crate::envelope::ENVELOPE_SCHEMA_VERSION;

pub(super) const SCHEMA_VERSION: &str = ENVELOPE_SCHEMA_VERSION;
pub(super) const POLICIES_FILE: &str = "policies.toml";
pub(super) const POLICIES_FORMAT_VERSION: u32 = 1;
pub(super) const GLOBAL_SESSION_SUFFIX: &str = "@GLOBAL";
/// The relay-wide namespace. A sender or target in this namespace has no bundle;
/// it is the home namespace of every relay-wide (`@GLOBAL`) principal.
pub(super) const GLOBAL_NAMESPACE: &str = "GLOBAL";