opencrabs 0.3.45

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
12
13
//! CLI Module
//!
//! Command-line interface for OpenCrabs using Clap v4.

mod args;
pub(crate) mod commands;
pub(crate) mod crash_recovery;
mod cron;
pub(crate) mod daemon_health;
pub(crate) mod migrate;
mod ui;

pub use args::*;