pub async fn execute(
args: &Value,
budget_tokens: usize,
) -> Result<String, String>Expand description
Execute a shell command and return its stdout/stderr combined as a String.
Unified Shell Adapter:
- Windows: Tries
pwshfirst, thenpowershell.exe, thencmd /C. - Unix: Tries
sh -c.