agentic-codebase 0.3.0

Semantic code compiler for AI agents - transforms codebases into navigable concept graphs
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Binary file I/O for the `.acb` format.
//!
//! This module handles reading and writing `.acb` files, including
//! LZ4-compressed string pools and memory-mapped file access.

pub mod compression;
pub mod mmap;
pub mod reader;
pub mod writer;

pub use reader::AcbReader;
pub use writer::AcbWriter;