ai-agent 0.13.4

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
15
16
//! Agents command

pub fn create_agents_command() -> crate::commands::Command {
    crate::commands::Command {
        command_type: crate::commands::CommandType::LocalJsx,
        name: "agents".to_string(),
        description: "Manage agent configurations".to_string(),
        argument_hint: None,
        load: Some(Box::new(|| {
            Box::pin(async {
                Ok(Box::new(crate::commands::agents::Agents::new())
                    as Box<dyn crate::commands::CommandHandler>)
            })
        })),
    }
}