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

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.mdinstruction 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
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
👀 See Also

BetterClaw vs OpenClaw: Comparing Tool Calling, Structured Outputs, and Workflow Control
A developer-focused comparison of BetterClaw and OpenClaw covering tool calling, structured outputs, workflow control, and day-to-day agent development.

Multi-Agent Debate App Built with Claude, ElevenLabs, and Flux
A developer built a debate app where Claude generates arguments for two personas on any topic, with an AI judge scoring and picking a winner. The app adds voice via ElevenLabs and images via Flux to create a debate show experience.

UIUC AI Teaching Assistant Runs 11 Models in Parallel for Sub-2s Responses
UIUC's AI TA chatbot runs 11 models in parallel for text/image retrieval, generation, moderation and ranking, achieving median 2-second response time. Open source with Pinecone RAG and RLHF dataset.

OpenClaw Outlook Add-in Connects Local Agent to Email Sidebar
A developer built an Outlook add-in that connects to a local OpenClaw Gateway via WebSocket, providing full agent access with tools and automations directly in the email sidebar. The tool reads selected emails as context, maintains per-email chat sessions, and works with Outlook Desktop and Web.