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

AI Agent Infrastructure: AgentMail, AgentLine, AgentCard, Daytona, and More
A Reddit post lists companies building agent-specific primitives: AgentMail (email), AgentLine (phone), AgentCard (payments), Daytona/E2B (computers), Browserbase/Browser Use/Hyperbrowser (browsers), Firecrawl (crawl), Mem0 (memory), Composio (SaaS tools).

Integrating Local LLM Agents with ComfyUI for Natural Language Batch Image Generation
A developer shares how they wired their local OpenClaw agent to ComfyUI, enabling natural language commands for batch image generation workflows. The integration uses a custom agent skill that maps English requests to ComfyUI workflow JSON and handles API communication.

Zerostack 1.0.0: A Unix-Inspired Coding Agent in Pure Rust
Zerostack is a coding agent written in pure Rust, modeled on Unix philosophy — small composable tools piped together via stdin/stdout.

MCP Server Enables AI Agents to Make Real Purchases with Ephemeral Virtual Cards
A developer has built an MCP server that allows AI agents to complete real purchases using ephemeral virtual Visa cards issued just-in-time. The system requires user approval via MFA and issues cards locked to specific merchants with 15-minute TTLs.