What problem does it solve? Answering architecture questions in a CraftTS project normally requires reading files one by one. This Skill answers questions about routes, components, services, dependencies, impact, and architecture rules directly from the static dependency graph built by the CraftTS analysis. ## Core Features & Use Cases - Dependency lookup: Find where a route, component, service, or primitive lives and what it depends on using graph.search and graph.node. - Impact analysis: Determine what breaks when a node changes with graph.impact, and trace connections between two nodes with graph.path. - Architecture health: Detect risk hotspots, rule violations, and unmeasured metrics with graph.hotspots, graph.violations, and graph.report. - Use Case: Before refactoring a shared service, ask which pages depend on it; the Skill checks graph.status for staleness, rebuilds if needed, and returns the impacted routes with evidence locations. ## Quick Start Ask which routes and components would be affected if you change a specific CraftTS service in this project.