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
//! Shell utilities and shell provider abstractions.

pub mod bash_provider;
pub mod powershell_provider;
pub mod shell_provider;
pub mod shell_tool_utils;

pub use bash_provider::BashShellProvider;
pub use powershell_provider::{PowerShellProvider, build_powershell_args};
pub use shell_provider::{ShellError, ShellExecCommand};
pub use shell_tool_utils::{SHELL_TYPES, ShellType};