opencrabs 0.3.8

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

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

pub use args::*;