You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The active-memory plugin times out on every turn (even with timeoutMs: 30000), which cascades into dreaming's deep phase never promoting any candidates. All 716 recall entries have recallCount: 0, signalCount: 1, and maxScore: 0.58 — all below the deep gates (minRecallCount: 3, minScore: 0.8).
I believe this is the root cause of the silent dreaming failure, and it's a chain reaction:
active-memory times out
→ memory search never completes
→ recallCount stays at 0
→ signalCount (recallCount + dailyCount + groundedCount) = 1
→ below minRecallCount: 3
→ 0 candidates ranked → 0 promoted
Environment
OpenClaw: 2026.5.16-beta.2 (also reproduced on beta.3)
Should we disable active-memory and rely on manual memory_search tool calls instead? The plugin seems unreliable with slow/reasoning models.
Is there a recommended provider/model for active-memory recall that avoids these issues? We have DeepSeek V4 Pro and GPT-5.5 available as alternatives to MiMo.
Workaround tried
Increased timeoutMs to 30000 — no effect
Verified NVIDIA embedding API is healthy (~1.9s) — not the bottleneck
The issue is in the plugin's execution path, not the embedding provider
Impact
Dreaming deep phase has never promoted anything across multiple weeks
716 recall entries all stuck at recallCount: 0
The memory system appears to be running but is silently failing to consolidate
Summary
The
active-memoryplugin times out on every turn (even withtimeoutMs: 30000), which cascades into dreaming's deep phase never promoting any candidates. All 716 recall entries haverecallCount: 0,signalCount: 1, andmaxScore: 0.58— all below the deep gates (minRecallCount: 3,minScore: 0.8).I believe this is the root cause of the silent dreaming failure, and it's a chain reaction:
Environment
2026.5.16-beta.2(also reproduced onbeta.3)xue(single agent, direct chat only)xiaomi-coding/mimo-v2.5(MiMo reasoning model)nvidia/llama-nemotron-embed-1b-v2viaintegrate.api.nvidia.com/v1active-memory timeout behavior
Log output
What I've tried
timeoutMsIncreasing
timeoutMshas no effect — the plugin still times out.Related issues
mainlane as the parent turn, causing it to wait behind the current turn → deadlock → timeout. This is likely our case.before_prompt_build, independent oftimeoutMs. This would explain why eventimeoutMs: 30000doesn't help.Dreaming state
Memory status (
openclaw memory status --deep)short-term-recall.json analysis
Every entry fails all three deep gates:
signalCount (1) < minRecallCount (3)❌maxScore (0.58) < minScore (0.8)❌queryHashes (1) < minUniqueQueries (3)❌Deep sleep output (every night)
Questions
Is active-memory recall subagent can deadlock on the main lane inside before_prompt_build #79026 (lane deadlock) the root cause of our timeout? The MiMo reasoning model is slow, and the recall subagent might be deadlocking on the main lane.
Is Feature: expose before_prompt_build modifying-hook timeout as config #74908 (hardcoded 15s hook timeout) still present in beta.2/beta.3? If so, even increasing
timeoutMswon't help.Should we disable active-memory and rely on manual
memory_searchtool calls instead? The plugin seems unreliable with slow/reasoning models.Is there a recommended provider/model for active-memory recall that avoids these issues? We have DeepSeek V4 Pro and GPT-5.5 available as alternatives to MiMo.
Workaround tried
timeoutMsto 30000 — no effectImpact
recallCount: 0