codebase-graph 1.1.5

Native codebaseGraph CLI and MCP server for local code knowledge graphs.
1
2
3
4
5
6
7
8
9
10
11
12
13
mod command;
mod manifest;
mod output;
mod request;

pub(in crate::cli) use command::{
    materialize, materialize_candidate_paths, run_materialize, run_plan,
};
pub(in crate::cli) use output::{dry_run_materialization_payload, materialization_payload};
pub(in crate::cli) use request::{
    build_request, default_excluded_parts, read_codebase_graph_ignore,
    read_materialization_config_rules, MaterializeOptions,
};