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
Requesting a new release to ship fixes that have been merged to main for 2+ months but are unavailable to users on the latest published release (v1.1.0-beta.10, 2026-03-23).
Users running the latest release are still hitting all three issues.
Real-world impact
We deployed memory-lancedb-pro as the memory backend for a production agent. Within the first night:
8 memories captured by smart-extractor about the deployment event
All 8 blocked by the governance filter (meta.state !== "confirmed" → return false)
0 injected into agent context → the agent had complete amnesia about the deployment it was supposed to monitor
Additionally, the P1 recall query issue (#579) caused vector searches to embed the system prompt prefix (e.g. the agent identity/role description) instead of the user's actual question, degrading retrieval quality on every query.
P2 suggestion: default coherence
Even after #354 ships, there's a design gap: the pending/confirmed governance model (#312) was designed for a manual review workflow, but smart-extractor is an automated pipeline. With autoCapture: true + autoRecall: true (the recommended config), the system should be coherent out-of-the-box:
If a manual review gate is desired, there should be a config option (e.g. initialState: "pending" | "confirmed") rather than silently deadlocking the automated path
For future consideration: an automatic promotion mechanism (e.g. confidence-based or access-frequency-based) could bridge the two models
What we did
We've applied local patches matching #354 + #579 to keep our deployment running. Happy to test any release candidate. 🙏
Summary
Requesting a new release to ship fixes that have been merged to
mainfor 2+ months but are unavailable to users on the latest published release (v1.1.0-beta.10, 2026-03-23).The gap
state: "confirmed"instead of"pending"event.promptautoRecallMaxQueryLengthconfigurable (hardcoded → config)Users running the latest release are still hitting all three issues.
Real-world impact
We deployed memory-lancedb-pro as the memory backend for a production agent. Within the first night:
meta.state !== "confirmed"→ return false)Additionally, the P1 recall query issue (#579) caused vector searches to embed the system prompt prefix (e.g. the agent identity/role description) instead of the user's actual question, degrading retrieval quality on every query.
P2 suggestion: default coherence
Even after #354 ships, there's a design gap: the
pending/confirmedgovernance model (#312) was designed for a manual review workflow, butsmart-extractoris an automated pipeline. WithautoCapture: true+autoRecall: true(the recommended config), the system should be coherent out-of-the-box:confirmedby default (fix: auto-captured memories write confirmed state to unblock autoRecall #354 fixes this ✅)initialState: "pending" | "confirmed") rather than silently deadlocking the automated pathWhat we did
We've applied local patches matching #354 + #579 to keep our deployment running. Happy to test any release candidate. 🙏
References
pendingstate, blocked from auto-recall by governance filter #350 — original bug report (auto-captured memories stuck in pending)pendingdefault was introduced)bad_recall_countfeedback loop (fixed by fix(auto-recall): Tier 1 memory counter fix (ms-based suppression + lazy-heal) #712)