1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
//! AgenticCodebase — Semantic code compiler for AI agents.
//!
//! Transforms source code into a navigable graph of concepts, relationships,
//! and patterns. Stores the entire semantic structure of a codebase in a
//! single memory-mappable `.acb` file.
//!
//! # Architecture
//!
//! - **types** — All data types. No logic. No I/O.
//! - **parse** — Language-specific parsing via tree-sitter.
//! - **semantic** — Cross-file resolution, FFI tracing, pattern detection.
//! - **format** — Binary `.acb` file reader/writer.
//! - **graph** — In-memory graph operations.
//! - **engine** — Compilation pipeline and query executor.
//! - **index** — Fast lookup indexes.
//! - **temporal** — Change history, stability, coupling, prophecy.
//! - **collective** — Collective intelligence and pattern sync.
//! - **grounding** — Anti-hallucination verification of code claims.
//! - **workspace** — Multi-context workspaces for cross-codebase queries.
//! - **ffi** — C-compatible FFI bindings.
//! - **config** — Configuration loading and path resolution.
//! - **cli** — Command-line interface.
//! - **mcp** — Model Context Protocol server interface.
// Re-export key types at crate root for convenience
pub use ;
pub use ;
pub use ;
pub use ;