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
15
16
17
// Source: /data/home/swei/claudecode/openclaudecode/src/commands/brief.ts
use super::Command;

pub fn create_brief_command() -> Command {
    Command::local("brief", "Toggle brief-only mode")
}

#[derive(Debug, Clone, Default)]
pub struct BriefConfig {
    pub enable_slash_command: bool,
}

pub fn get_default_brief_config() -> BriefConfig {
    BriefConfig {
        enable_slash_command: false,
    }
}