ai-agent 0.88.0

Idiomatic agent sdk inspired by the claude code source leak
Documentation
1
2
3
4
5
6
7
8
9
pub fn register_deep_link_handler(_handler: impl Fn(&str)) {}

pub fn open_deep_link(url: &str) -> Result<(), String> {
    Err("Deep link not supported".to_string())
}

pub fn is_deep_link_supported() -> bool {
    false
}