mecha-cli 0.1.7

The mecha CLI: an agent harness for local models.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! 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 review;
pub mod threads;
pub mod triggers;