What problem does it solve? Understanding an unfamiliar codebase is slow when you have to grep through files manually. This Skill uses the GitNexus index to answer questions like "How does authentication work?" or "What calls this function?" by surfacing execution flows, symbol relationships, and functional clusters directly. ## Core Features & Use Cases - Repository binding and freshness checks: Discovers indexed repositories via list_repos, handles multi-repo ambiguity, and warns when the index is stale. - Concept-to-flow search: The query tool maps a natural-language concept (e.g., "payment processing") to related execution flows and grouped symbols. - 360-degree symbol inspection: The context tool shows incoming calls, outgoing calls, and the processes a symbol participates in. - Use Case: A developer joins a new project and asks "How does payment processing work?" The Skill binds the repo, queries for the concept, traces CheckoutFlow and RefundFlow step by step, and reads the relevant source files to produce a grounded explanation. ## Quick Start Ask the assistant to explain how a specific feature works in your codebase, for example "How does authentication work in this project?"