opencrabs 0.3.2

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
fn main() {
    // Embed icon and metadata into Windows executables
    #[cfg(target_os = "windows")]
    {
        let mut res = winresource::WindowsResource::new();
        res.set_icon("src/assets/icon.ico");
        res.set("ProductName", "OpenCrabs");
        res.set("FileDescription", "OpenCrabs — AI Agent");
        res.compile().expect("Failed to compile Windows resources");
    }
}