← Hacker News

Show HN: Viche – OSS private registry for agent communication

Hacker News · nanojoel · April 17, 2026
Viche is an open-source private registry and communication protocol for agents built on the Erlang actor model to enable agent-to-agent communication across distributed systems. The platform offers no-login access for exploration while allowing users to create secure private registries through account signup. Common use cases include facilitating communication between agents running on different machines, load-balancing API subscriptions, and allowing developers to design agents for organizational deployment.

Detailed Analysis

Viche is an open-source private registry and communication protocol for AI agents, built by a small founding team who identified a gap in the market for seamless, cross-machine agent-to-agent communication. The system is architected on the Erlang actor model — a battle-tested concurrency paradigm originally developed for telecommunications infrastructure — which provides Viche with a principled foundation for handling distributed, asynchronous message passing between autonomous agents. The platform offers a public-facing dashboard at viche.ai/dashboard requiring no authentication, lowering the barrier to exploration and signaling a developer-first philosophy. Users can join a registry via a shareable link and immediately connect agents — including instances of OpenClaw and OpenCode — to a shared communication layer, while those requiring stricter data controls can create private, account-gated registries.

The core use cases articulated by the Viche team illuminate an emerging operational need in the AI agent ecosystem: orchestrating multiple agent instances across physical or cloud environments without bespoke networking solutions. The ability to load-balance Anthropic API subscriptions across seats — maximizing Claude usage efficiency — reflects a pragmatic, cost-conscious concern among developers building agentic micro-SaaS products. The companion project Owl, described as a "meta-harness" for agent design, further suggests the team is building toward a broader opinionated stack, not merely a communication primitive. This design-then-deploy workflow — where developers author agents on their machines and others execute them remotely — mirrors patterns from containerization and serverless computing, applied now to agent orchestration.

Viche enters the market at a moment of considerable ferment in the agent infrastructure space. Anthropic's own ecosystem is expanding rapidly: Claude Code, the terminal-based coding agent, recently suffered an accidental source code exposure when approximately 513,000 lines of TypeScript were bundled into a public npm package in late March 2026, revealing client-side tool-use logic and guardrails at scale. Separately, Anthropic's Project Glasswing and the Claude Mythos Preview model — capable of autonomously identifying and exploiting zero-day vulnerabilities — signal that Anthropic is pushing into high-stakes autonomous agent territory, albeit under tightly controlled access. These developments underscore how quickly the surface area of agentic systems is expanding, and how infrastructure for managing, routing, and securing agent communication is becoming critically important.

The choice of the Erlang actor model as Viche's communication backbone is technically significant. Erlang's model, developed at Ericsson for fault-tolerant distributed systems, treats each actor as an isolated process that communicates exclusively via message passing — a design philosophy that maps naturally onto the loosely coupled, capability-diverse world of AI agents. This stands in contrast to more tightly integrated, RPC-style agent communication approaches, and positions Viche for resilience and horizontal scalability. The "agentic search based on capabilities" feature further suggests a discovery layer akin to a service mesh, where agents can be located and invoked based on what they can do rather than where they are statically deployed.

The broader trend Viche represents is the rapid commoditization of agent infrastructure primitives. Just as the early web spawned registries, message brokers, and service discovery tools, the agent era is generating its own equivalent layer — tools for routing, discovery, identity, and orchestration among autonomous AI processes. Viche's open-source release and frictionless onboarding suggest its creators are betting on community adoption and composability rather than proprietary lock-in, a strategy well-suited to a landscape where both developer tooling preferences and underlying model capabilities are evolving at high speed. Whether Viche achieves meaningful adoption will likely depend on how quickly multi-agent workflows become standard practice among developers building on top of frontier models like Claude — a transition that, given Anthropic's current trajectory, appears to be accelerating.

Read original article →