MemAware Benchmark Tests AI Memory Beyond Keyword Search

✍️ OpenClawRadar📅 Published: March 27, 2026🔗 Source
MemAware Benchmark Tests AI Memory Beyond Keyword Search
Ad

MemAware is an open-source benchmark designed to test whether AI assistants with memory can surface relevant context from past conversations when current queries don't explicitly hint at that information.

How the Benchmark Works

The benchmark contains 900 questions across three difficulty levels. It tests scenarios where relevant context exists in memory but the current question doesn't contain keywords that would trigger a search match. For example: you told your AI assistant about your 45-minute commute months ago, then later ask "What time should I set my alarm for my 8:30 AM meeting?" The assistant should factor in your commute, but searching "alarm 8:30 meeting" won't find conversations about commuting.

Ad

Key Findings

  • Search barely helps: BM25 search scored 2.8% vs 0.8% with no memory — a tiny improvement that costs 5x the tokens.
  • Vector search fails on hard questions: It helps when keywords overlap (6%) but drops to 0.7% on cross-domain connections — the same as no memory. Example hard question: "How should I bid at the charity auction?" should recall a past $800 handbag purchase as a spending baseline, but embedding similarity can't connect these concepts.
  • Searching when you shouldn't is expensive: The "always search" pattern reads ~4.7K tokens of results per question regardless of whether they help. Most of the time, the results are irrelevant noise.

The Core Problem

Current AI memory implementations are essentially just search systems. True memory awareness — knowing what information is stored and proactively surfacing relevant context — is a different problem that search alone can't solve.

The benchmark is available for testing different approaches at: https://github.com/kevin-hs-sohn/memaware

📖 Read the full source: r/ClaudeAI

Ad

👀 See Also

Werld: Open-Ended Artificial Life Simulation with Evolving Neural Networks
Tools

Werld: Open-Ended Artificial Life Simulation with Evolving Neural Networks

Werld is a real-time artificial life simulation where agents with NEAT neural networks evolve their own neural architecture, sensory processing, and behaviors without hardcoded rules or reward functions. The simulation starts with 30 agents on a Watts-Strogatz small-world graph with 64 sensory channels, 7 continuous motor functions, and 29 heritable genome traits.

OpenClawRadar
Squeez tool compresses bash output 90%+ to extend Claude Code context window
Tools

Squeez tool compresses bash output 90%+ to extend Claude Code context window

Squeez is a hook that automatically compresses raw bash output like ps aux, docker logs, and git log before it reaches Claude Code. It reduces token usage by 92.8% on average across 19 common commands, helping sessions last longer.

OpenClawRadar
Practical Findings from 11 Multi-Agent Software Builds Without Programmatic Scaffolding
Tools

Practical Findings from 11 Multi-Agent Software Builds Without Programmatic Scaffolding

Analysis of 11 autonomous multi-agent builds shows scope enforcement works mechanically (20/20 success) not via prompts (0/20), orchestration costs are dominated by memory re-ingestion (~95% of input spend), and worker model capability creates 9.8x throughput gaps.

OpenClawRadar
Fehu: CLI Double-Entry Bookkeeping with Claude AI MCP Integration
Tools

Fehu: CLI Double-Entry Bookkeeping with Claude AI MCP Integration

Fehu is a lightweight CLI personal accounting tool that connects to Claude AI via MCP, allowing natural language transaction recording with a SQLite-backed double-entry system. It features hierarchical accounts, auto-tagging with hashtags, a powerful calc engine, and multi-currency support.

OpenClawRadar