Skip to main content

ai_agent/utils/
shell.rs

1//! Shell utilities and shell provider abstractions.
2
3pub mod bash_provider;
4pub mod powershell_provider;
5pub mod shell_provider;
6pub mod shell_tool_utils;
7
8pub use bash_provider::BashShellProvider;
9pub use powershell_provider::{PowerShellProvider, build_powershell_args};
10pub use shell_provider::{ShellError, ShellExecCommand};
11pub use shell_tool_utils::{SHELL_TYPES, ShellType};