//! Shared library for teamctl.
//!
//! Exposes the YAML schema types for the compose tree, the validator that
//! enforces project-isolation + ACL invariants, the artifact renderer that
//! turns compose into env files and MCP configs, the `Supervisor` trait
//! (with a portable `TmuxSupervisor` back-end), and the SQLite mailbox
//! schema used by `team-mcp`.
/// Semantic version of the teamctl workspace.
pub const VERSION: &str = env!;
/// MCP protocol version teamctl speaks. Pinned per release.
pub const MCP_PROTOCOL_VERSION: &str = "2024-11-05";