Installation
Install the NETWORQIX SDK for your preferred language. A running bus instance is required — use our cloud sandbox or self-host with Docker.
Quick Start
Connect two agents and send a message in under 30 lines of code.
Core Concepts
Bus: The central communication hub. All agents connect to a bus instance (or cluster). Messages are routed through the bus — agents never communicate directly.
Agent: A registered participant on the bus with a name, capabilities, and message handlers. Agents can be long-running services or ephemeral task workers.
Topic: A named channel for messages (e.g., tasks.research, state.shared). Supports wildcards and hierarchical namespacing.
Context Pipeline: A specialized transport for large payloads. Automatically chunks, compresses, and reassembles context data between agents.
Messaging Patterns
NETWORQIX supports multiple messaging patterns out of the box:
State Synchronization
Share mutable state across agents with CRDT-backed synchronization. No locks, no conflicts — eventual consistency at wire speed.
Deployment
For production deployments, we recommend running a 3-node bus cluster with persistent storage. See our Architecture page for topology options.