enabled | boolean | Enables the plugin itself |
config.mode | "escalate" | "always" | "off" | Controls when the blocking deep-recall sub-agent runs; default "escalate" |
config.agents | string[] | Agent ids that may use active memory |
config.model | string | Optional blocking sub-agent model ref; when unset, inherits the current session model |
config.allowedChatTypes | ("direct" | "group" | "channel" | "explicit")[] | Session types that may run active memory; defaults to ["direct"] |
config.allowedChatIds | string[] | Optional per-conversation allowlist applied after allowedChatTypes; non-empty lists fail closed |
config.deniedChatIds | string[] | Optional per-conversation denylist that overrides allowed session types and allowed ids |
config.queryMode | "message" | "recent" | "full" | Controls how much conversation the blocking sub-agent sees |
config.promptStyle | "balanced" | "strict" | "contextual" | "recall-heavy" | "precision-heavy" | "preference-only" | Controls how eager or strict the blocking sub-agent is when deciding whether to return memory |
config.toolsAllow | string[] | Concrete memory tool names the blocking sub-agent may call; defaults to ["memory_search", "memory_get"], or ["memory_recall"] when plugins.slots.memory is memory-lancedb; wildcards, group:* entries, and core agent tools are ignored |
config.thinking | "off" | "minimal" | "low" | "medium" | "high" | "xhigh" | "adaptive" | "max" | Advanced thinking override for the blocking sub-agent; default off for speed |
config.fastMode | boolean | "auto" | Optional fast-mode override for the blocking sub-agent; unset inherits normal agent, session, and model defaults |
config.promptOverride | string | Advanced full prompt replacement; not recommended for normal use |
config.promptAppend | string | Advanced extra instructions appended to the default or overridden prompt |
config.timeoutMs | number | Hard timeout for the blocking sub-agent (range 250-120000 ms; default 15000) |
config.setupGraceTimeoutMs | number | Advanced extra setup budget before the recall timeout expires; range 0-30000 ms, default 0. See Cold-start grace for v2026.4.x upgrade guidance |
config.maxSummaryChars | number | Maximum characters in the active-memory summary (range 40-1000; default 220) |
config.logging | boolean | Emits active memory logs while tuning |
config.persistTranscripts | boolean | Exports blocking sub-agent transcripts as JSONL artifacts before removing their temporary SQLite session rows |
config.transcriptDir | string | Relative artifact directory under the plugin-owned per-agent transcript directory (default "active-memory") |
config.modelFallback | string | Optional model used only as the last step in the model fallback chain |