symgraph 2026.6.14

Semantic code intelligence library and MCP server - build knowledge graphs of codebases
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! CLI command implementations
//!
//! Handles all command-line interface operations:
//! - index: Index a codebase
//! - status: Show index statistics  
//! - search: Search for symbols
//! - context: Build AI context for tasks

mod commands;
mod db_utils;
pub mod tools;

pub use commands::*;
pub use db_utils::*;