//! Proactive command
//! Translated from: ~/claudecode/openclaudecode/src/commands/proactive.ts
use anyhow::Result;
pub fn execute_proactive_command(_args: &str) -> Result<String> {
Ok("Proactive suggestions: managing suggestions.".to_string())
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn test_proactive_command() {
let result = execute_proactive_command("").unwrap();
assert!(result.contains("Proactive"));
}
}