mimir_traverse
Traverse entity link graphs from a given starting point to explore dependencies, decision trees, and relationship graphs. Returns a chain of linked entities up to a configurable depth.
Instructions
Walk the entity link graph starting from a given entity up to a configurable depth. Returns a chain of linked entities — useful for exploring dependencies, decision trees, and relationship graphs built via mimir_link.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| key | Yes | Starting entity key | |
| category | Yes | Starting entity category | |
| max_depth | No | Maximum traversal depth from the starting entity | |
| max_nodes | No | Maximum total nodes to traverse before stopping |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| entity | Yes | Root entity with its links | |
| traversed | Yes | Linked entities traversed from root |