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

pub fn create_moved_to_plugin_command(
    name: &str,
    description: &str,
    progress_message: &str,
    plugin_name: &str,
    plugin_command: &str,
) -> Command {
    Command::prompt(name, description).argument_hint(progress_message)
}