agentmemory V4 achieves 96.2% on LongMemEval benchmark, outperforms commercial AI memory systems

agentmemory V4 is an open-source memory system for AI agents that just achieved a world record score of 96.2% on LongMemEval, the standard benchmark for long-term AI agent memory.
Benchmark Performance
The system outperformed several funded AI memory companies:
- PwC Chronos: 95.6%
- Mastra: 94.87%
- OMEGA: 93.2% (raw)
- Supermemory: 85.86%
- Emergence AI: 86%
- Zep: 71.2%
Development Details
Built solo in 16 days on a mid-range gaming PC (i3-12100F) with a total cost of $1,000. The system uses Claude Opus as a generator and GPT-4o as a judge, but the retrieval architecture is the core innovation.
Technical Architecture
The system combines multiple retrieval techniques in a single SQLite-backed system:
- HNSW (Hierarchical Navigable Small World) for approximate nearest neighbor search
- BM25 for traditional text retrieval
- Cross-encoder for relevance scoring
- Knowledge graph integration
- Temporal grounding for time-aware memory retrieval
Availability
The system is open source under the MIT license and available at: github.com/JordanMcCann/agentmemory
📖 Read the full source: r/LocalLLaMA
👀 See Also

Soul MCP Server Adds Persistent Memory and Safety for Local LLMs
Soul is an open-source MCP server that provides persistent memory across sessions for local LLMs with two commands: n2_boot at start and n2_work_end at end. It includes Ark safety features that block dangerous commands like rm -rf and DROP DATABASE at zero token cost, plus cloud storage configuration.

Claude Code v2.1.144: Background Sessions, /model Scoping, and 15s Startup Timeout
Claude Code v2.1.144 adds /resume for background sessions, scopes /model to current session only, and fixes a 75s startup hang when api.anthropic.com is unreachable with a 15s timeout.

ViralCanvas.ai provides persistent context workspace for Claude models including Sonnet 4.5
ViralCanvas.ai is a visual workspace that sits on top of Claude's models, offering access to Sonnet 4.5, Sonnet 4.6, Opus 4.5, and Opus 4.6 with persistent context attachment. The tool addresses context degradation issues in long conversations by keeping connected documents actively weighted on every prompt.

JobPilot: Claude Code Plugin for Automated Job Applications
JobPilot is a Claude Code plugin that automates job searching and application processes using Playwright browser automation. It includes commands for searching job boards, auto-filling applications, generating cover letters, and tracking application statistics.