What problem does it solve? Understanding an unfamiliar codebase is slow when you have to grep through files manually. This Skill answers questions like "How does authentication work?" or "What calls this function?" by querying a GitNexus code index for execution flows, symbol relationships, and functional clusters. ## Core Features & Use Cases - Execution Flow Discovery: Query the index for processes (e.g., CheckoutFlow, LoginFlow) related to a concept and read step-by-step execution traces. - Symbol Context: Get a 360-degree view of any symbol, including incoming calls, outgoing calls, and the processes it participates in. - Codebase Overview: Read repository context resources for stats, functional clusters with cohesion scores, and staleness warnings. - Use Case: You join a project and need to understand payment processing. Query for "payment processing", inspect the CheckoutFlow trace, then drill into processPayment to see its callers and callees before reading the source file. ## Quick Start Ask the assistant to explain how a specific feature works in this repository, such as "How does the authentication flow work?"