ai-agent 0.88.0

Idiomatic agent sdk inspired by the claude code source leak
Documentation
//! Memory file detection utilities

/// Detect session file type from path
#[allow(dead_code)]
pub fn detect_session_file_type(_path: &str) -> Option<String> {
    None
}

/// Detect session pattern type
#[allow(dead_code)]
pub fn detect_session_pattern_type(_path: &str) -> Option<String> {
    None
}

/// Check if path is an auto-managed memory file
#[allow(dead_code)]
pub fn is_auto_managed_memory_file(_path: &str) -> bool {
    false
}

/// Check if path is a memory directory
#[allow(dead_code)]
pub fn is_memory_directory(_path: &str) -> bool {
    false
}

/// Check if shell command is targeting memory
#[allow(dead_code)]
pub fn is_shell_command_targeting_memory(_cmd: &str) -> bool {
    false
}