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

Claude Code Used to Simulate 4,000+ Blind Werewolf Games with LLMs
A developer used Claude Code to build a simulator where LLMs play blind one-night Werewolf, running ~4,600 games across OpenAI and xAI models. The experiment revealed consistent name-based voting patterns despite minimal game signals.

Claude DevTools: A Log Reader for Enhanced Claude Code Visibility
Claude DevTools is a local, open-source tool that reads Claude Code's existing log files in ~/.claude/ to provide detailed session visibility, including file operations with inline diffs, token breakdowns, context window visualization, and full subagent execution trees.

ClawControl 1.7.1 improves message reliability and media support for OpenClaw
ClawControl 1.7.1 fixes several client-side issues including runaway text accumulation, ghost messages, and media handling problems. The update maintains compatibility with OpenClaw through version 3.28.

100 Popular Apps Reverse-Engineered into Markdown Design Specs for Claude UI Cloning
An open-source repo provides structured markdown design specs for 100 popular iOS apps, optimized for Claude to clone UIs consistently. Key techniques: exact color values, state coverage, spacing scales, and navigation graphs.