ccat 0.1.1

CLAUDE.md Context Analyzer - A comprehensive tool for analyzing and managing Claude Code memory files
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
pub mod diff;
pub mod json;
pub mod text;
pub mod tree;

use crate::core::MemoryFile;
use anyhow::Result;

pub trait Formatter {
    fn format(&self, files: &[MemoryFile]) -> Result<()>;
}

pub use diff::DiffFormatter;
pub use json::JsonFormatter;
pub use text::TextFormatter;
pub use tree::TreeFormatter;