Skip to main content

ai_agent/commands/
proactive.rs

1//! Proactive command
2//! Translated from: ~/claudecode/openclaudecode/src/commands/proactive.ts
3
4use anyhow::Result;
5
6pub fn execute_proactive_command(_args: &str) -> Result<String> {
7    Ok("Proactive suggestions: managing suggestions.".to_string())
8}
9
10#[cfg(test)]
11mod tests {
12    use super::*;
13
14    #[test]
15    fn test_proactive_command() {
16        let result = execute_proactive_command("").unwrap();
17        assert!(result.contains("Proactive"));
18    }
19}