Local Memory System for AI Coding Tools Extracts 2,600+ Facts from Conversation Logs

A developer has built a local memory system for AI coding tools that runs entirely on their machine, addressing the problem of re-explaining context in new sessions. The system works with Claude Code, Factory.ai, and Codex CLI, writing all conversation logs to a single SQLite database.
How It Works
The system uses several automated processes:
- A cron job runs every 15 minutes to ingest conversation logs into SQLite
- Hourly, it generates vector embeddings and extracts structured facts using a local LLM (the developer runs Nemotron 3 Super on a DGX Spark via ollama)
- Every new Claude Code session starts with a memory-context.md file auto-injected via CLAUDE.md
- Mid-session, Claude can search the full history via MCP tools including keyword search, semantic search, fact lookup, and entity graph exploration
Usage Statistics
After a few months of normal use:
- 13,000+ messages indexed across 400+ sessions
- 2,600+ facts extracted (preferences, decisions, error/solution pairs, tool patterns)
- 330+ entities tracked (libraries, services, languages with mention counts)
- 40 MB database size
The entity graph tracks usage patterns like "you've used pytest 45 times, playwright 20 times, jest 3 times" based on actual usage data.
Features and Limitations
The system includes a browser-based UI for searching, curating facts, and previewing what gets injected into context, plus a CLI tool and slash commands. It's not plug-and-play—users need to set up cron jobs, configure MCP, and optionally run ollama. The developer notes this is their first open source project and welcomes feedback on architecture, fact extraction approach, MCP tool design, and Python/project structure improvements.
📖 Read the full source: r/ClaudeAI
👀 See Also

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.

Open-Source Claude Code Plugins for Agentic Commerce Protocols
OrcaQubits has released eight open-source Claude Code plugins that implement agentic commerce protocols including UCP, ACP, AP2, and A2A, with MIT licensing and support for platforms like Magento 2, BigCommerce, and WooCommerce.

Open Source GTM Plugin for Claude Code with 166 Marketing Skills and Bootstrap Command
A developer has released an open source Go-To-Market plugin for Claude Code that provides 166 specialized marketing skills across SEO, content, outbound, sales, growth, analytics, strategy, ads, social, CRM, and AI search. The plugin includes a /bootstrap command that interviews users about their brand to generate personalized context files.

OpenClaw-WebTop: Run OpenClaw with Ollama and Ubuntu Desktop in GitHub Codespaces
OpenClaw-WebTop provides a way to run a complete OpenClaw instance with Ollama and Ubuntu MATE desktop directly in a browser using GitHub Codespaces, requiring no local Docker installation or VPS.