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
use super::Command;

pub fn create_tasks_command() -> Command {
    Command::local("tasks", "List and manage tasks").argument_hint("[<task-id>]")
}

pub fn create_plan_command() -> Command {
    Command::prompt("plan", "Create a plan for the current task")
}

pub fn create_rewind_command() -> Command {
    Command::local("rewind", "Rewind the conversation to a specific point").argument_hint("<steps>")
}