Open-source framework for persistent AI agent memory with local storage and graph-based retrieval

What this is
A developer is building an open-source framework for persistent AI agent memory that operates entirely locally without cloud dependencies. The system stores data as Markdown files on disk and uses wiki-links to create graph edges between notes.
Key technical details
The framework implements several specific features extracted from the source:
- Storage architecture: Local Markdown files on disk with Git for version control
- Graph structure: Wiki-links serve as graph edges connecting notes
- Retrieval system: Four-signal fusion approach combining:
- Semantic embedding
- Keyword matching
- PageRank graph importance
- Associative warmth
- Memory management: Graph-aware forgetting system based on ACT-R cognitive science where:
- Notes decay over time unless accessed
- Used notes remain alive and relevant
- Graph and semantic neighbors stay relevant through spreading activation
- Spreading activation: When a note is accessed, connected notes get "warmer" too, helping the agent anticipate relevance before tasks begin
- Performance: 22 MB total storage after three months of use, described as "extremely efficient"
- Development status: First two GitHub issues filed, small community forming around keeping AI memory free and decentralized
This type of local memory system is useful for AI coding agents that need persistent context across sessions without relying on cloud services or external APIs.
📖 Read the full source: r/LocalLLaMA
👀 See Also

OpenTabs: MCP Server with 100+ Plugins for Browser-Based AI Tool Access
OpenTabs is an MCP server and Chrome extension that exposes 100+ plugins with ~2,000 tools by hooking into web apps' internal APIs like Slack, Discord, and GitHub. It works with existing browser sessions, eliminating API keys and OAuth flows.

Claude File History: VS Code Extension for Tracking Claude Code Sessions
A VS Code extension called Claude File History tracks every Claude Code session that touched your files, allowing you to find past conversations, preview what was discussed, and resume conversations with a double-click.

Claude Cowork mode explained: file-level task execution vs chat and code modes
Claude's Cowork mode operates inside a chosen folder to perform file-level tasks like organizing messy folders, extracting structured data from screenshots, and combining scattered notes into structured documents.
Researcher Builds Veracity-Checking Skill for Claude Code, Finds Hallucinations in Own Documentation
A researcher built a Claude Code skill called /veracity-tweaked-555 that decomposes documents into atomic claims and verifies each via web search using 16 parallel agents across 4 waves. When self-audited, the skill scored 62/100 due to fabricated statistics and inflated claims in its own documentation.