argyph-graph 1.0.2

Local-first MCP server giving AI coding agents fast, structured, and semantic context over any codebase.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#![forbid(unsafe_code)]

pub mod builder;
pub mod edge;
pub mod error;
pub mod graph;
pub mod resolve;
pub mod selector;

pub use builder::{DefaultGraphBuilder, GraphBuilder};
pub use edge::{Confidence, Edge, EdgeKind};
pub use error::GraphError;
pub use graph::{Graph, SymbolOutline};
pub use selector::SymbolSelector;