codebase-graph 1.1.5

Native codebaseGraph CLI and MCP server for local code knowledge graphs.
use super::*;
use super::{build::*, install::*, mcp::*, watch::*};
use notify::{Event, EventKind};
use serde_json::json;
use std::{
    collections::{BTreeMap, BTreeSet, VecDeque},
    env, fs,
    path::{Path, PathBuf},
    process::Command,
    sync::mpsc,
    time::{Duration, Instant},
};

mod dispatch_materialize;
mod fixtures;
mod graph;
mod install;
mod mcp;
mod watch;

use fixtures::*;