Active Memory
Active memory is an optional plugin-owned blocking memory sub-agent that runs before the main reply for eligible conversational sessions. It exists because most memory systems are capable but reactive. They rely on the main agent to decide when to search memory, or on the user to say things like “remember this” or “search memory.” By then, the moment where memory would have made the reply feel natural has already passed. Active memory gives the system one bounded chance to surface relevant memory before the main reply is generated.Paste This Into Your Agent
Paste this into your agent if you want it to enable Active Memory with a self-contained, safe-default setup:main agent, keeps it limited to direct-message
style sessions by default, lets it inherit the current session model first, and
still allows the built-in remote fallback if no explicit or inherited model is
available.
After that, restart the gateway:
Turn active memory on
The safest setup is:- enable the plugin
- target one conversational agent
- keep logging on only while tuning
openclaw.json:
plugins.entries.active-memory.enabled: trueturns the plugin onconfig.agents: ["main"]opts only themainagent into active memoryconfig.allowedChatTypes: ["direct"]keeps active memory on for direct-message style sessions only by default- if
config.modelis unset, active memory inherits the current session model first config.modelFallbackPolicy: "default-remote"keeps the built-in remote fallback as the default when no explicit or inherited model is availableconfig.promptStyle: "balanced"uses the default general-purpose prompt style forrecentmode- active memory still runs only on eligible interactive persistent chat sessions
How to see it
Active memory injects hidden system context for the model. It does not expose raw<active_memory_plugin>...</active_memory_plugin> tags to the client.
Session toggle
Use the plugin command when you want to pause or resume active memory for the current chat session without editing config:plugins.entries.active-memory.enabled, agent targeting, or other global
configuration.
If you want the command to write config and pause or resume active memory for
all sessions, use the explicit global form:
plugins.entries.active-memory.config.enabled. It leaves
plugins.entries.active-memory.enabled on so the command remains available to
turn active memory back on later.
If you want to see what active memory is doing in a live session, turn verbose
mode on for that session:
- an active memory status line such as
Active Memory: ok 842ms recent 34 chars - a readable debug summary such as
Active Memory Debug: Lemon pepper wings with blue cheese.
When it runs
Active memory uses two gates:- Config opt-in
The plugin must be enabled, and the current agent id must appear in
plugins.entries.active-memory.config.agents. - Strict runtime eligibility Even when enabled and targeted, active memory only runs for eligible interactive persistent chat sessions.
Session types
config.allowedChatTypes controls which kinds of conversations may run Active
Memory at all.
The default is:
Where it runs
Active memory is a conversational enrichment feature, not a platform-wide inference feature.| Surface | Runs active memory? |
|---|---|
| Control UI / web chat persistent sessions | Yes, if the plugin is enabled and the agent is targeted |
| Other interactive channel sessions on the same persistent chat path | Yes, if the plugin is enabled and the agent is targeted |
| Headless one-shot runs | No |
| Heartbeat/background runs | No |
Generic internal agent-command paths | No |
| Sub-agent/internal helper execution | No |
Why use it
Use active memory when:- the session is persistent and user-facing
- the agent has meaningful long-term memory to search
- continuity and personalization matter more than raw prompt determinism
- stable preferences
- recurring habits
- long-term user context that should surface naturally
- automation
- internal workers
- one-shot API tasks
- places where hidden personalization would be surprising
How it works
The runtime shape is: The blocking memory sub-agent can use only:memory_searchmemory_get
NONE.
Query modes
config.queryMode controls how much conversation the blocking memory sub-agent sees.
Prompt styles
config.promptStyle controls how eager or strict the blocking memory sub-agent is
when deciding whether to return memory.
Available styles:
balanced: general-purpose default forrecentmodestrict: least eager; best when you want very little bleed from nearby contextcontextual: most continuity-friendly; best when conversation history should matter morerecall-heavy: more willing to surface memory on softer but still plausible matchesprecision-heavy: aggressively prefersNONEunless the match is obviouspreference-only: optimized for favorites, habits, routines, taste, and recurring personal facts
config.promptStyle is unset:
config.promptStyle explicitly, that override wins.
Example:
Model fallback policy
Ifconfig.model is unset, Active Memory tries to resolve a model in this order:
config.modelFallbackPolicy controls the last step.
Default:
resolved-only if you want Active Memory to skip recall instead of falling
back to the built-in remote default when no explicit or inherited model is
available.
Advanced escape hatches
These options are intentionally not part of the recommended setup.config.thinking can override the blocking memory sub-agent thinking level:
config.promptAppend adds extra operator instructions after the default Active
Memory prompt and before the conversation context:
config.promptOverride replaces the default Active Memory prompt. OpenClaw
still appends the conversation context afterward:
NONE
or compact user-fact context for the main model.
message
Only the latest user message is sent.
- you want the fastest behavior
- you want the strongest bias toward stable preference recall
- follow-up turns do not need conversational context
- start around
3000to5000ms
recent
The latest user message plus a small recent conversational tail is sent.
- you want a better balance of speed and conversational grounding
- follow-up questions often depend on the last few turns
- start around
15000ms
full
The full conversation is sent to the blocking memory sub-agent.
- the strongest recall quality matters more than latency
- the conversation contains important setup far back in the thread
- increase it substantially compared with
messageorrecent - start around
15000ms or higher depending on thread size
Transcript persistence
Active memory blocking memory sub-agent runs create a realsession.jsonl
transcript during the blocking memory sub-agent call.
By default, that transcript is temporary:
- it is written to a temp directory
- it is used only for the blocking memory sub-agent run
- it is deleted immediately after the run finishes
config.transcriptDir.
Use this carefully:
- blocking memory sub-agent transcripts can accumulate quickly on busy sessions
fullquery mode can duplicate a lot of conversation context- these transcripts contain hidden prompt context and recalled memories
Configuration
All active memory configuration lives under:| Key | Type | Meaning |
|---|---|---|
enabled | boolean | Enables the plugin itself |
config.agents | string[] | Agent ids that may use active memory |
config.model | string | Optional blocking memory sub-agent model ref; when unset, active memory uses the current session model |
config.queryMode | "message" | "recent" | "full" | Controls how much conversation the blocking memory sub-agent sees |
config.promptStyle | "balanced" | "strict" | "contextual" | "recall-heavy" | "precision-heavy" | "preference-only" | Controls how eager or strict the blocking memory sub-agent is when deciding whether to return memory |
config.thinking | "off" | "minimal" | "low" | "medium" | "high" | "xhigh" | "adaptive" | Advanced thinking override for the blocking memory sub-agent; default off for speed |
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 memory sub-agent |
config.maxSummaryChars | number | Maximum total characters allowed in the active-memory summary |
config.logging | boolean | Emits active memory logs while tuning |
config.persistTranscripts | boolean | Keeps blocking memory sub-agent transcripts on disk instead of deleting temp files |
config.transcriptDir | string | Relative blocking memory sub-agent transcript directory under the agent sessions folder |
| Key | Type | Meaning |
|---|---|---|
config.maxSummaryChars | number | Maximum total characters allowed in the active-memory summary |
config.recentUserTurns | number | Prior user turns to include when queryMode is recent |
config.recentAssistantTurns | number | Prior assistant turns to include when queryMode is recent |
config.recentUserChars | number | Max chars per recent user turn |
config.recentAssistantChars | number | Max chars per recent assistant turn |
config.cacheTtlMs | number | Cache reuse for repeated identical queries |
Recommended setup
Start withrecent.
/verbose on in the
session instead of looking for a separate active-memory debug command.
Then move to:
messageif you want lower latencyfullif you decide extra context is worth the slower blocking memory sub-agent
Debugging
If active memory is not showing up where you expect:- Confirm the plugin is enabled under
plugins.entries.active-memory.enabled. - Confirm the current agent id is listed in
config.agents. - Confirm you are testing through an interactive persistent chat session.
- Turn on
config.logging: trueand watch the gateway logs. - Verify memory search itself works with
openclaw memory status --deep.
maxSummaryChars
- lower
queryMode - lower
timeoutMs - reduce recent turn counts
- reduce per-turn char caps