recall
Search your codebase knowledge graph for prior art, known failures, and related context using embedding search and graph traversal before making decisions.
Instructions
Broad "what do we know about X" — combines embedding search with graph traversal.
Use this at session start or before making decisions to check for prior art, known failures, and existing context.
Depth controls how far to traverse from matched nodes:
1: direct matches only (fast)
2: matches + their neighbors (default, good balance)
3: two hops out (broader context, slower)
Example: recall(query="federation architecture", depth=2)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| query | Yes | What to recall — natural language query | |
| depth | No | Traversal depth from matched nodes: 1-3 (default: 1) |