opencrabs 0.3.79

The autonomous, self-improving AI agent. Single Rust binary. Every channel. Recommended: the 40MB prebuilt binary for macOS, Linux and Windows: https://github.com/adolfousier/opencrabs/releases
1
2
3
4
5
6
7
8
9
10
11
12
//! Mission Control — app-side state, input, actions.
//!
//! Pairs with `src/brain/mission_control/` (data services) and
//! `src/tui/render/mission_control/` (renderers). Single responsibility
//! per file: state lives in `state.rs`, key handling in `input.rs`,
//! side-effecting actions in `actions.rs`.

pub mod actions;
pub mod input;
pub mod state;

pub use state::{McPanel, McState};