Two Patterns for Preventing AI Agent Memory Rot: AutoDream and Skeptical Retrieval

OpenClaw's Approach to Memory Management
OpenClaw has released two MIT-licensed patterns to tackle the slow rot problem in file-based AI memory systems, where facts go stale without proper marking, causing agents to act on outdated context. While currently OpenClaw-specific, the concepts apply to any file-based memory system.
AutoDream: Nightly Memory Consolidation
AutoDream is a cron agent that runs at 3am to perform memory maintenance. It reads session transcripts, mines daily logs before they fade, updates structured memory files, and prunes stale entries. The key insight is that daily logs are the richest raw material but decay fastest, so the job extracts everything worth keeping before they go cold. Memory gets continuously rewritten rather than just appended.
Skeptical Retrieval: Decay-Weighted Memory Scoring
Skeptical Retrieval replaces standard semantic search's flat top-N retrieval with a composite score: semantic × recency_decay × recall_boost. Standard semantic search treats a 6-week-old fact the same as one from yesterday, while this approach applies different decay rates to different file types (stable facts at λ=0.02 vs operational todos at λ=0.08). Snippets recalled frequently get a logarithmic boost, and low-confidence results are suppressed rather than injected.
How They Work Together
The two patterns form a self-improving memory loop: AutoDream tracks which snippets were cited, recall counts feed into composite scoring, and AutoDream prunes snippets that never get recalled. Implementation starts with Phase 0 (reasoning discipline only) which costs nothing, followed by Phase 1 (recall tracking) which needs one cron update.
The developer notes that decay rate choices required iteration to get right and is open to discussion about them. Both patterns are available on GitHub:
- https://github.com/LeoStehlik/openclaw-skeptical-retrieval
- https://github.com/LeoStehlik/openclaw-autodream
📖 Read the full source: r/LocalLLaMA
👀 See Also

AGENTS-COLLECTION: 129 Claude Code Agents Organized in One Repository
A developer has compiled 129 Claude Code agents into a single repository in ~/.claude/agents/ format, ready for installation with a simple copy command. The collection includes the full agency-agents system with 68 personality-driven agents across multiple disciplines, plus additional agents for multi-agent team workflows.

Why a Single run() Tool with Unix Commands Beats Function Calling for AI Agents
A backend lead with two years of agent-building experience argues that a single run(command="...") tool with Unix-style CLI commands outperforms traditional function calling catalogs. The approach leverages LLMs' existing familiarity with shell commands from training data.

OpenUtter: Query Google Meet Transcripts Live via OpenClaw
OpenUtter is a skill that joins Google Meet as a guest via a headless browser, captures live captions, and streams them to your OpenClaw event bus. You can query the live transcript mid-call via Telegram, WhatsApp, Slack, or Discord.

Agent Times Skill for ClawHub Adds Real-Time News, Weather, and Token Price Queries
A new ClawHub skill called Agent Times enables AI agents to answer real-time queries about news, weather, and cryptocurrency prices. Installation is via npx clawhub install agenttimes, and it provides access to 228K+ articles from 3,576 feeds with sentiment scoring and entity extraction.