oy-cli 0.13.6

Focused OpenCode agent with repeatable audits, code reviews, and one-finding fixes
Documentation
1
2
3
4
5
6
fn main() {
    let target = std::env::var("CARGO_CFG_TARGET_OS").unwrap_or_default();
    if !matches!(target.as_str(), "linux" | "macos") {
        panic!("oy-cli supports Linux and macOS only; Windows users should run oy-cli in WSL2");
    }
}