What problem does it solve?
It helps you turn a codebase into a navigable knowledge graph so you can visually understand architecture, symbol relationships, and execution flow without manually reading thousands of files.
Core Features & Use Cases
- Codebase indexing into a knowledge graph: Indexes a target repository using GitNexus and stores the results in the repo’s
.gitnexus/ directory.
- Interactive web visualization: Serves an in-browser UI to explore symbols, call chains, clusters, and dependency/execution structures.
- Remote sharing via Cloudflare tunnel: Enables access beyond localhost using a production build plus a lightweight Node proxy to avoid host/CORS issues.
- Optional semantic search: Supports embeddings for natural-language queries over the indexed content (slower on large repos).
Quick Start
Clone the GitNexus web UI, index your target repository with npx gitnexus analyze --skip-agents-md, then start the API backend with npx gitnexus serve and launch the bundled static+API proxy using node scripts/proxy.mjs to open the explorer in your browser.