Open Source Knowledge Base Server and Multi-Agent Orchestrator for Persistent AI Memory

✍️ OpenClawRadar📅 Published: March 17, 2026🔗 Source
Open Source Knowledge Base Server and Multi-Agent Orchestrator for Persistent AI Memory
Ad

A developer has open-sourced a system that provides persistent memory for AI coding agents across sessions, eliminating the need to manually copy-paste context between conversations. The setup connects Claude.ai and Claude Code through a custom Model Context Protocol (MCP) server running on a private VPS.

Architecture and Components

The system consists of two main open-source projects:

  • Knowledge Base Server: Acts as the central brain, built with Node.js, SQLite FTS5, Express, and Obsidian Sync. It ingests Obsidian vaults and Claude's memory directories, providing full-text search with ranked results and highlighted snippets.
  • Agent Orchestrator (Daniel): Wraps Claude, Codex, and Gemini CLIs, enabling all three agents to share the same knowledge base and providing automatic failover when one agent hits rate limits or goes down.

Key Features

  • Four MCP tools: kb_search, kb_list, kb_read, kb_ingest
  • Web dashboard for manual document management
  • CLI commands: kb start, kb ingest, kb search, kb register
  • Self-learning capability: AI automatically updates its own CLAUDE.md instruction files based on session outcomes
  • Three-tier storage (cold/hot/long-term) to prevent context drift
  • Multi-agent failover with zero context loss during outages
Ad

Technical Implementation

The tech stack avoids vector databases and cloud dependencies, using SQLite FTS5 for token-optimized search. The workflow follows this path: Obsidian Vault (human curation) → KB Server (SQLite FTS5) → MCP Interface → Claude Code/Codex/Gemini (all share same brain).

The system includes an EXTENDING.md file written specifically for AI agents to read, allowing users to tell their agent "read EXTENDING.md and customize this for my setup" for automated configuration.

In a real-world test during a Claude Code outage, the orchestrator automatically routed to Codex, which SSH'd into the VPS, diagnosed the KB server, and provided recovery commands—all accessible from a phone via Termux with zero context lost.

The developer reports running this in production with three premium AI agents for approximately $60/month, accumulating context over 100+ sessions to enable one-shot clean code generation based on learned codebase patterns and preferences.

📖 Read the full source: r/ClaudeAI

Ad

👀 See Also