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
use argyph_parse::SymbolId;
use camino::Utf8PathBuf;

#[derive(Debug, Clone, PartialEq, Eq, Hash)]
pub enum SymbolSelector {
    ById(SymbolId),
    ByName { file: Utf8PathBuf, name: String },
    Qualified(String),
}