argyph-core 1.0.1

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
15
16
17
#![forbid(unsafe_code)]

pub mod config;
pub mod error;
pub mod index;
pub mod supervisor;
pub mod tiers;
pub mod watcher;

pub use config::Config;
pub use error::{CoreError, Result};
pub use index::{
    GitInfo, Index, IndexStatus, LanguageSummary, RepoOverview, SearchFilter, SearchHit,
    SearchResult, SemanticHit, SemanticResult,
};
pub use supervisor::Supervisor;
pub use tiers::TierState;