KG Traverse Perform pathfinder graph traversal starting from a seed entity. Expands outward through causal edges, scores paths by relevance, and prunes low-similarity branches. When to use When you need to explore the knowledge graph starting from a specific entity -- finding what depends on it, what it depends on, or discovering indirect relationships. Useful for impact analysis, dependency chains, and understanding code structure. Steps 1. Seed -- call to look up the target entity by name 2. Expand -- call to find all edges connected to the seed entity, then recursively expand outward to th…