opencrabs 0.3.34

The autonomous, self-improving AI agent. Single Rust binary. Every channel. Install with: cargo install opencrabs
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Skills dialog — app-side state, input, actions.
//!
//! Pairs with `src/tui/render/skills_dialog/`. Single responsibility
//! per file: state lives in `state.rs`, key handling in `input.rs`,
//! side-effecting actions (open / execute) in `actions.rs`.

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

pub use state::{SkillsDialogState, matching};