What problem does it solve? Debugging unfamiliar or large codebases often means guessing where an error originates and manually tracing call chains. This Skill uses the GitNexus code graph to locate error sources, trace callers and callees, and follow execution flows to a root cause. ## Core Features & Use Cases - Index Freshness Verification: Compares the indexed commit against HEAD before querying, preventing traces based on stale code that no longer exists. - Symptom-to-Suspect Tracing: Uses gitnexus_query to find code related to an error message, then gitnexus_context to inspect callers, callees, and process steps. - Custom Call Chain Queries: Supports Cypher queries for multi-hop call chain traces when standard tools are insufficient. - Use Case: When a payment endpoint returns 500 intermittently, query for the error handling flow, inspect the suspect function's outgoing calls, and discover an external API call missing a timeout. ## Quick Start Ask the AI to debug why a specific endpoint or function is failing and trace the error to its root cause using the GitNexus code graph.