Kvaser: An Open-Source Local-First AI Orchestrator with Sub-Agent Routing and Wolfram Integration

Kvaser is an open-source orchestration server that started as an experiment with Qwen 3.6 35B and evolved into a full Man-in-the-Middle proxy for local AI workflows. It sits between your frontend (like Open WebUI) and backend (llama.cpp), exposing a standard OpenAI endpoint.
Key Technical Features
- Zero-Embedding RAG: Queries local Kiwix datasets (Wikipedia, StackOverflow) directly via an MCP server, avoiding vector database overhead.
- Wolfram Engine Integration: Augmented with Mathematica StackOverflow dump from Kiwix to improve query structuring for symbolic math.
- GEDCOM MCP: Custom genealogy tool that combines family tree data with Kiwix for historical context.
- Sub-Agent Routing: Each sub-agent can be configured individually and routed to different machines or models.
- Smart Tool Whitelisting: Limit which tools each sub-agent sees — allows smaller models like Qwen 3.5 4B to stay focused while the 35B model handles complex tasks.
- Algorithmic Augmentation: Implements algorithmic tools for complex tasks like finding common ancestors or calculating relationships, instead of relying on LLM inference.
Architecture
The system moves beyond a single agent to a full orchestration model with sub-agents. This solves "tool bloat" and complex tree traversal issues that arose as more tools were added.
Use Case: Genealogy with Historical Context
By combining GEDCOM family tree data with Kiwix, the model can augment ancestor records with historical context — a powerful example of local-first orchestration.
Source Code
Available on GitHub: https://github.com/Na1w/kvaser-core
📖 Read the full source: r/LocalLLaMA
👀 See Also

OnPrem.LLM AgentExecutor: Launch Sandboxed AI Agents with Built-in Tools
OnPrem.LLM's AgentExecutor lets you create autonomous AI agents that execute complex tasks using cloud or local models, with nine built-in tools including file operations, shell commands, and web search. You can run agents in sandboxed containers for security.

Claude Code Plugin for Reddit Market Research Without API Keys
A Claude Code plugin automates Reddit market research by searching threads, analyzing content, and generating markdown reports with direct links. It requires no Reddit API key, auth, or config files, using public data through a local MCP server.

Introducing OneTool MCP: An Open Source Multi-Tool for Developers
OneTool MCP, built using Claude AI, offers developers over 100 tools for tasks like web searches, library updates, and file management without tool tax or context rot.

Vektori's Memory Architecture: Principles from Claude's Leaked System
Vektori implements a three-layer hierarchical sentence graph for AI memory, inspired by leaked principles from Claude's architecture. The system uses strict quality filters, skeptical retrieval with a 0.3 minimum score, and maintains correction history across sessions.