opencrabs 0.5.0

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
//! No-op stand-ins compiled when the `rtk` feature is off, so callers keep
//! one code path: nothing is available, nothing is rewritten.

pub async fn is_rtk_available() -> bool {
    false
}

pub async fn rewrite_command(_command: &str) -> Option<String> {
    None
}

pub fn warm_up() {}