What problem does it solve? Understanding a large or unfamiliar codebase's architecture is slow when done by reading files one by one. This Skill indexes any git repository into a knowledge graph of symbols, call chains, and clusters, then serves an interactive web UI so you can visually explore the code structure and share it with others through a Cloudflare tunnel. ## Core Features & Use Cases - Codebase Knowledge Graph Indexing: Runs npx gitnexus analyze on any git repository to build a graph of symbols, call chains, and execution flows, with optional embeddings for semantic search. - Interactive Web UI with Proxy: Serves the production GitNexus web UI through a zero-dependency Node.js proxy that forwards /api/* requests to the GitNexus backend on a single port, avoiding CORS issues. - Remote Sharing via Cloudflare Tunnel: Exposes the explorer through a cloudflared quick tunnel so teammates can browse the graph from a public URL. - Use Case: You inherit a 2,000-file repository and need to understand its module dependencies before a refactor. Index it, start the proxy, and explore call chains and clusters visually in the browser, then share the tunnel URL with your team. ## Quick Start Ask the agent to index this repository with GitNexus and start the web UI so I can explore its knowledge graph in my browser.