Via Open Source Universal Integration Layer Connects AI Tools to Shared Context Bus

Via is a new open source project positioned as a universal integration layer for AI tools. It connects multiple AI tools — including Claude, Cursor, Windsurf, ChatGPT, LangChain, and others — to a shared context, task, and memory bus. This means your work-in-progress, conversation history, and task state persist across different tools, sessions, and machines.
Key Details
- Shared bus architecture: Via provides a centralized context, task, and memory bus that all connected AI tools can read from and write to.
- Supported tools (from source): Claude, Cursor, Windsurf, ChatGPT, LangChain, and every other AI tool — the “every other” suggests broad extensibility, but only these are named.
- Persistence across boundaries: Work follows you across every tool, every session, and every machine. This hints at cloud or local sync capability, though no specifics are given in the source.
- Open source release: The project is available now, announced on r/LocalLLaMA. Exact license, repository URL, installation commands, and version are not provided in the source text.
What This Means for Developers
If you’re using multiple AI coding agents (e.g., Cursor for editing, Claude for code review, and LangChain for orchestration), Via aims to eliminate the friction of re-explaining context or transferring tasks manually. Instead of copying chat history or exporting project state, Via acts as a universal backbone that synchronizes context across all your AI tools. This is particularly relevant for teams or individuals who switch between different AI assistants depending on the task.
Who It’s For
Developers who regularly use multiple AI coding agents and want a unified context that persists across sessions and tools.
For more details — including setup instructions, supported integrations, and the repository link — refer to the original Reddit post.
📖 Read the full source: r/LocalLLaMA
👀 See Also

Hybrid search with RRF improves AI memory system over pure vector search
An open-source AI memory system using PostgreSQL with pgvector found pure vector search insufficient for exact matches, so it added full-text search and merged results using Reciprocal Rank Fusion (RRF) with k=60, plus query enrichment via tokenizer.

Official Kotlin Support for VS Code Now in Alpha — Powered by IntelliJ's Language Server
JetBrains released the official Kotlin extension for VS Code in Alpha, backed by the Kotlin Language Server built on IntelliJ IDEA's code-insight infrastructure. Includes code completion, diagnostics, navigation, quick-fixes, formatting, and project import.

OpenClaw Agent Gains Phone Call Capability Through Custom Skill
A developer created a custom skill for self-hosted OpenClaw agents that enables phone call functionality, allowing the agent to initiate calls based on triggers like build completions or server outages. The implementation provides voice interaction with full chat capabilities including web searches and alert setup.

NerfGuard: A Classifier That Routes Coding Requests to Cheaper Models, Cutting Spend 3x
NerfGuard uses a fast classifier to route coding agent requests to the least expensive model and reasoning depth needed, yielding 3x usage for the same spend. Includes token optimizations.