Search & recall
Hybrid semantic + keyword search, and the one-call answer path for code questions.
Search pipeline
Queries embed through an LRU-cached ONNX model. Tag pre-filtering narrows candidates, then HNSW ANN and FTS5 BM25 merge at 0.7× semantic + 0.3× keyword.
Which tool
recall(answer) bundles symbol body, siblings, imports, and provenance in one call — it tries a proven graph lookup first and falls back to hybrid search automatically when nothing can be proven. Reach for code(locate) or code(grep) only when you need targeted literal verification.
Exact skill name? recall({ item_type: 'skill' }) — O(1). Session start? recall with preview: true on user and project namespaces.
Explore search
recall(explore: true) returns primary hits plus adjacent memories via shared tags, temporal proximity, and semantic edges. Use for broad topic exploration — see MCP Tools.