mecha-cli 0.1.11

The mecha CLI: an agent harness for local models.
//! The Slack front-end: everything that knows about both Slack and the agent.
//!
//! The split is deliberate and is `docs/SLACK-DESIGN.md` ยง1. `mecha-slack` is
//! the transport and cannot depend on `mecha-core`, so it cannot learn what a
//! run, a tool or an approval is. This module knows both sides, which is why it
//! lives here beside `tui/` rather than in that crate.

pub mod actions;
pub mod approve;
pub mod connector;
pub mod doctor;
pub mod frontdoor;
pub mod pump;
pub mod remote;
pub mod review;
pub mod send;
pub mod show;
pub mod threads;
pub mod triggers;