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
// Source: /data/home/swei/claudecode/openclaudecode/src/cli/exit.ts
use super::Command;

pub fn create_exit_command() -> Command {
    Command::local("exit", "Exit the current session").argument_hint("[--force]")
}

pub fn create_quit_command() -> Command {
    Command::local("quit", "Exit the current session").argument_hint("[--force]")
}