What problem does it solve? Understanding an unfamiliar codebase is slow when you have to manually grep for symbols and piece together call chains. This Skill uses GitNexus's indexed code graph to answer questions like "How does authentication work?" or "What calls this function?" without reading every file. ## Core Features & Use Cases - Concept-to-Flow Search: Query a concept like "payment processing" and get back the relevant execution flows (CheckoutFlow, RefundFlow) with their symbols and file locations. - 360-Degree Symbol Context: Inspect any symbol to see its incoming calls, outgoing calls, and which execution processes it participates in. - Execution Trace Reading: Read step-by-step process traces and functional clusters with cohesion scores to understand architecture. - Use Case: You join a new project and need to understand the auth flow. Query GitNexus for "authentication", review the LoginFlow process, inspect key symbols like validateUser, then read only the relevant source files. ## Quick Start Ask the AI to explain how a specific feature works in this repository using the GitNexus index, for example "How does payment processing work?"