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
//! In-memory graph operations for the code graph.
//!
//! This module contains the core graph data structure, builder API,
//! and traversal algorithms. No file I/O or query planning.

pub mod builder;
pub mod code_graph;
pub mod traversal;

pub use builder::GraphBuilder;
pub use code_graph::CodeGraph;