All 98 Dependencies
Every package GitNexus depends on, ranked by repo health score.
GitNexus is a code intelligence engine that builds a comprehensive knowledge graph of any repository — mapping every dependency, call chain, symbol cluster, and execution flow — then exposes it through MCP tools so AI agents like Claude Code, Cursor, and Codex never miss architectural context again. Unlike simple code search or description-based wikis, GitNexus tracks actual relationships between symbols, making it possible to ask 'what breaks if I change this function?' and get a precise blast-radius answer.
The system operates in two complementary modes: a CLI and MCP server that indexes repos locally for persistent, private, full-scale analysis; and a no-install web UI at gitnexus.vercel.app where any repo can be dropped in (GitHub, GitLab, Azure DevOps, or a ZIP) and explored interactively in the browser. Both share the same LadybugDB graph backend — the web UI auto-detects a running local server and can browse CLI-indexed repos without re-uploading.
At the core, a 14-phase deterministic ingestion pipeline (scan → structure → parse → crossFile → scopeResolution → MRO → communities → processes) builds the knowledge graph using Tree-sitter native bindings to parse 15+ languages with full AST fidelity. The pipeline supports incremental re-indexing via content hashing, so only changed files are reprocessed on subsequent runs. Hybrid BM25 + semantic vector search (via local ONNX embeddings with HuggingFace Transformers) powers the query layer.
The MCP server exposes 16+ tools including `query`, `context`, `impact`, `detect_changes`, `trace`, `rename`, `route_map`, `shape_check`, and `pdg_query` — covering the full range from discovery to blast-radius analysis to taint tracking. Editor integrations include Claude Code (PreToolUse/PostToolUse hooks that automatically enrich agent searches with graph context), Cursor, Antigravity, Codex, Windsurf, and OpenCode.