opi-coding-agent 0.3.0

Interactive coding agent CLI with file editing and shell execution
Documentation
1
2
3
4
5
6
//! Tool safety policy for non-interactive mode (S8.4, S10).

/// Returns `true` if the tool is considered mutating (write, edit, bash).
pub fn is_mutating_tool(name: &str) -> bool {
    matches!(name, "write" | "edit" | "bash")
}