lore-cli 0.1.13

Capture AI coding sessions and link them to git commits
Documentation
//! Kilo Code session parser.
//!
//! Parses session data from the Kilo Code VS Code extension (a fork of Roo Code).
//! Sessions are stored in VS Code's globalStorage directory under the extension ID.
//!
//! This watcher uses the generic VS Code extension infrastructure since Kilo Code
//! follows the standard task-based conversation storage format.

use super::vscode_extension::{VsCodeExtensionConfig, VsCodeExtensionWatcher};

/// Configuration for the Kilo Code VS Code extension watcher.
pub const CONFIG: VsCodeExtensionConfig = VsCodeExtensionConfig {
    name: "kilo-code",
    description: "Kilo Code VS Code extension sessions",
    extension_id: "kilocode.Kilo-Code",
};

/// Creates a new Kilo Code watcher.
pub fn new_watcher() -> VsCodeExtensionWatcher {
    VsCodeExtensionWatcher::new(CONFIG)
}

#[cfg(test)]
mod tests {
    use super::*;
    use crate::capture::watchers::Watcher;

    #[test]
    fn test_watcher_info() {
        let watcher = new_watcher();
        let info = watcher.info();

        assert_eq!(info.name, "kilo-code");
        assert!(info.description.contains("Kilo Code"));
    }

    #[test]
    fn test_watcher_extension_id() {
        assert_eq!(CONFIG.extension_id, "kilocode.Kilo-Code");
    }
}