What problem does it solve? Navigating an unfamiliar codebase is slow when you must read files one by one. This Skill answers questions about a codebase by searching a pre-built knowledge graph, so you get targeted answers about files, functions, classes, and their relationships without loading the entire repository into context. ## Core Features & Use Cases - Graph-Based Code Search: Queries the knowledge graph at .understand-anything/knowledge-graph.json for nodes (files, functions, classes, modules, concepts) matching your question by name, summary, or tags. - Dependency Tracing: Follows edges such as imports, calls, contains, and depends_on to show the 1-hop subgraph around any matched component, revealing upstream callers and downstream dependencies. - Architectural Context: Reads layer definitions to explain which architectural layers the relevant code belongs to and why. - Use Case: Ask "Where is authentication handled and what depends on it?" and receive an answer citing specific files, functions, and their import/call relationships, plus the architectural layer involved. ## Quick Start Ask a question about the codebase, such as "How does the contact form submission flow work?", and the Skill will search the knowledge graph and answer with specific file and function references.