← ClaudeAtlas

aio-gitnexuslisted

Install, configure, and manage the GitNexus code intelligence engine — index codebase, setup MCP, check status, troubleshoot, and document local git-hook auto-refresh for master-only workflows.
aiocean/claude-plugins · ★ 3 · AI & Automation · score 65
Install: claude install-skill aiocean/claude-plugins
# GitNexus Manager ## Environment - node: !`node --version 2>/dev/null || echo "NOT INSTALLED (requires >= 18)"` - npx: !`which npx 2>/dev/null || echo "NOT INSTALLED"` - gitnexus: !`npx gitnexus --version 2>/dev/null || echo "NOT INSTALLED (will be fetched via npx)"` - .mcp.json: !`[ -f ".mcp.json" ] && echo "present" || echo "NOT FOUND"` Manages the GitNexus zero-server code intelligence engine — install, setup MCP, run analysis, check status, troubleshoot, and document local git-hook refresh workflows. GitNexus turns any codebase into a knowledge graph (nodes, edges, clusters, flows) with hybrid search (BM25 + semantic). Zero infrastructure — no databases, no Docker, no API keys required. ## Commands ### Check Status ```bash # Check if GitNexus is installed npx gitnexus --version 2>/dev/null && echo "installed" || echo "not installed" # Check index status for current repo npx gitnexus status # List all indexed repos npx gitnexus list ``` ### Install GitNexus ```bash # Option 1: Use via npx (no install needed — recommended) npx gitnexus analyze # Option 2: Install globally npm install -g gitnexus # Verify gitnexus --version ``` **Requirements:** Node.js >= 18 ### Setup MCP Server (Claude Code) Run the automated setup which auto-detects editors: ```bash npx gitnexus setup ``` Or manually add to Claude Code: ```bash claude mcp add gitnexus -- npx -y gitnexus@latest mcp ``` This exposes 7 MCP tools: | Tool | Purpose | |------|---------| | `list_repos` | Dis