Graphorin API reference v0.15.1
Graphorin API reference / @graphorin/memory / tools / BuildMemoryToolsOptions
Interface: BuildMemoryToolsOptions
Defined in: packages/memory/src/tools/index.ts:116
Stable
Options for buildMemoryTools.
Properties
| Property | Modifier | Type | Description | Defined in |
|---|---|---|---|---|
includeDeepRecall? | readonly | boolean | Append the gated deep_recall tool as a twelfth tool. The facade sets this only when iterativeRetrieval is configured, so the default tool surface stays at the canonical eleven. Default false. | packages/memory/src/tools/index.ts:132 |
includeRunbookSearch? | readonly | boolean | Append the gated runbook_search tool. The facade sets this only when createMemory({ runbookSearch: true }) opts in, so the default tool surface is unchanged. Default false. | packages/memory/src/tools/index.ts:138 |
profile? | readonly | MemoryToolProfile | Tool profile. 'full' (default) keeps the canonical stable-order set; 'interactive' builds ONLY the read tools (fact_search, recall_episodes, conversation_search, fact_history, plus the gated read appendices) - write tools do not exist in the returned array, so a front-line agent cannot mutate memory by construction; 'reviser' is the full read+write surface for the sleep-time curation agent. | packages/memory/src/tools/index.ts:126 |