fix(openclaw): prevent extraction of standalone timestamps as memories#4550
Merged
whysosaket merged 1 commit intomainfrom Mar 26, 2026
Merged
fix(openclaw): prevent extraction of standalone timestamps as memories#4550whysosaket merged 1 commit intomainfrom
whysosaket merged 1 commit intomainfrom
Conversation
The extraction LLM was storing "User indicates current time is X" as
durable memories every time OpenClaw injected timestamp context into
messages. noah48 alone accumulated 10K+ timestamp memories.
Add explicit exclude rule: timestamps as standalone facts are never
worth storing, but timestamps anchoring real facts ("User installed
Ollama on 2026-03-21") should still be preserved.
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Codecov Report✅ All modified and coverable lines are covered by tests. 📢 Thoughts on this report? Let us know! |
whysosaket
approved these changes
Mar 26, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Problem
OpenClaw injects the current time into every message as context for the agent. The extraction LLM sees this and stores "User indicates current time is 3:25 PM" as a permanent memory. This happens every 10-30 minutes for active users.
Prod data evidence:
memory_id: 75162ece,447e817b,5b0dec36,e7397d95(all timestamp-only memories)Fix
One-line addition to the
Exclude (NEVER store)section ofDEFAULT_CUSTOM_INSTRUCTIONSinconfig.ts:Since the plugin sends
custom_instructionsin 99.7% of ADD requests, this applies to virtually all OpenClaw traffic without requiring any platform changes.Test plan
🤖 Generated with Claude Code