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
10
11
12
13
14
#![allow(dead_code)]

use std::collections::HashMap;

pub fn get_text_object_range(_text: &str, _obj_type: char, _scope: &str) -> Option<(usize, usize)> {
    None
}

pub fn is_text_object_key(key: char) -> bool {
    matches!(
        key,
        'w' | 'W' | '"' | '\'' | '`' | '(' | ')' | '[' | ']' | '{' | '}' | '<' | '>'
    )
}