gitnexus-explorer

Index codebases into knowledge graphs and serve an interactive web UI via Cloudflare tunnel.

Updated Apr 18, 2026
One-click install
npx skills add https://github.com/azaanaliraza/operarius --skill gitnexus-explorer-azaanaliraza
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: gitnexus-explorer
Source: https://github.com/azaanaliraza/operarius/tree/main/src-tauri/bin/hermes/optional-skills/research/gitnexus-explorer
Command: npx skills add https://github.com/azaanaliraza/operarius --skill gitnexus-explorer-azaanaliraza

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) components.

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 execution flows, then serves an interactive web UI that can be shared with others through a Cloudflare tunnel. ## Core Features & Use Cases - Codebase Indexing: Runs GitNexus analysis on any git repository to build a knowledge graph of symbols, clusters, and call chains, with optional embeddings for semantic search. - Interactive Web UI: Serves a production-built visualization through a zero-dependency Node.js proxy that combines the static UI and backend API on one port without CORS issues. - Remote Sharing: Tunnels the local UI through cloudflared so teammates can explore the graph from a public URL. - Use Case: You inherit a 3,000-file repository and need to brief a new teammate. Index it with GitNexus, start the proxy and tunnel, and share the URL so they can visually explore the architecture. ## Quick Start Index this repository with GitNexus and start the web UI with a Cloudflare tunnel so I can explore its knowledge graph remotely.

Frequently Asked Questions about gitnexus-explorer

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I visualize a codebase as a knowledge graph?▼

Run npx gitnexus analyze inside a git repository to build the index, then start npx gitnexus serve and the included Node.js proxy to open the interactive web UI showing symbols, clusters, and call chains.

How to share a local code visualization with remote teammates?▼

Start a Cloudflare quick tunnel with cloudflared pointing at the local proxy port. The printed trycloudflare.com URL gives anyone browser access to the graph without configuring servers or firewalls.

What are the size limits for GitNexus web visualization?▼

The web UI loads the entire graph into browser memory, so repos under about 5,000 files work well. Repos with 30k+ nodes will be sluggish or crash the tab, though the CLI and MCP tools work at any scale.

Why does cloudflared return 404 for my quick tunnel?▼

An existing named tunnel config at ~/.cloudflared/config.yml has a catch-all ingress rule that intercepts quick tunnel requests. Pass --config /dev/null to cloudflared to bypass the existing configuration.

Does GitNexus indexing require embeddings for search?▼

Embeddings are optional. The --embeddings flag enables semantic search and natural language queries but takes minutes on large repos; skip it for fast structural exploration of symbols and call chains.