What problem does it solve? Answering structural questions about a large codebase (where symbols live, how modules depend on each other, which files are import hubs) normally requires slow manual searching; this Skill builds a local AST knowledge graph so agents can query code structure directly. ## Core Features & Use Cases - Knowledge graph refresh: Indexes the repository with Graphify (33 languages, tree-sitter AST) or one of five fallback engines, storing all cache outside the worktree. - Natural language and path queries: Ask questions like "where are auth middlewares defined" or trace a dependency path between two symbols, returning canonical file paths with line ranges. - Stats snapshot: Reports scanned files, language breakdown, and top import hubs for onboarding and code review workflows. - Use Case: Before writing a spec for a refund feature, run a query to find existing refund validation logic and the call path from the router to the Stripe API, avoiding duplicate implementation. ## Quick Start Ask the agent to run /che-graph refresh on this repository and then query where the authentication middleware is defined.