ai-agent 0.88.0

Idiomatic agent sdk inspired by the claude code source leak
Documentation
//! Force snip command
//! Translated from: ~/claudecode/openclaudecode/src/commands/force-snip.ts

use anyhow::Result;

pub fn execute_force_snip_command(_args: &str) -> Result<String> {
    Ok("Force snip: triggering context snipping.".to_string())
}

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn test_force_snip_command() {
        let result = execute_force_snip_command("").unwrap();
        assert!(result.contains("snip"));
    }
}