RXON (Reverse Axon) - Lightweight Inter-node Reverse Communication Protocol
Project description
RXON (Reverse Axon) Protocol
RXON (Reverse Axon) is a lightweight, extensible reverse-connection protocol designed for HLN (Hierarchical Logic Network) architectures.
It serves as the "nervous system" for distributed multi-agent systems, providing a strictly typed, Zero Trust foundation for inter-service communication.
🚀 Concept
In traditional networks, commands usually flow "top-down" (Push model). In RXON, the connection initiative always comes from the subordinate node (Shell) to the superior node (Orchestrator). This "Reverse Axon" architecture allows workers to operate behind NAT or Firewalls without complex network configuration, while maintaining a secure, bi-directional control channel.
✨ Key Features
- Reverse Connection (PULL): Nodes connect to the orchestrator to pull tasks, ensuring compatibility with complex network environments.
- Zero Trust Security: Built-in support for digital signatures (
SecurityContext) and identity chains. All messages can be cryptographically verified across multiple holarchy layers. - Agnostic & Extensible: Core models (Resources, Skills, Tasks) are fully extensible via universal
metadataandpropertiesfields, making the protocol suitable for AI, IoT, and Robotics. - Universal Telemetry: Heartbeats include granular metrics for CPU, RAM, and any custom devices (Sensors, GPUs, Actuators) via the extensible
HardwareDevicemodel. - Generic Event System: Unified signaling for progress updates, custom alerts, and real-time triggers with hierarchical event bubbling.
- Smart Resource Matching: Formalized logic for hardware requirements using GE (Greater or Equal) logic for numbers and partial string matching for models.
- Pluggable Blob Storage: Standardized
BlobProviderinterface for offloading heavy data via S3, GCS, or Local storage to keep the control channel lightweight. - Unified Factory: Easy transport initialization via
create_transportsupportinghttp://,https://,ws://, andwss://schemes. - Zero Dependency Core: The protocol core is written in pure Python 3.11+. Standard transports use
aiohttpandorjsonfor peak performance.
🏗 Architecture
The protocol is divided into two main interfaces:
- Transport (Worker side): For initiating connections, retrieving tasks, emitting events, and sending results.
- Listener (Orchestrator side): For accepting incoming connections and routing messages to the engine.
Smart Dispatching Logic
RXON formalizes the rules for matching tasks to holons:
- Identity Match: Direct match by device ID.
- Type & Model Match: Exact match by type, partial match by model string (case-insensitive).
- Property Match (Smart Comparison):
- Numbers: Checked as at least (Worker value >= Requirement).
- Others: Checked as strict equality.
🛡️ Error Handling
RXON defines a set of standardized, cross-platform error codes to ensure consistent behavior across different implementations:
CONTRACT_VIOLATION_ERROR: Data does not match the negotiated schema.SECURITY_ERROR: Authentication or signature verification failed.RESOURCE_EXHAUSTED_ERROR: Physical resources (RAM, VRAM) are insufficient.DEPENDENCY_ERROR: A required service or artifact is unavailable.
🧪 Quick Start
from rxon import create_transport
from rxon.models import Resources, HardwareDevice, WorkerRegistration
# 1. Create transport (supports http, https, ws, wss)
transport = create_transport("ws://api.hln.local", "worker-01", "secret-token")
# 2. Define worker resources
my_res = Resources(
cpu_cores=8,
devices=[HardwareDevice(type="gpu", model="RTX 4090", properties={"memory_gb": 24})]
)
# 3. Smart Matching Logic
req = Resources(cpu_cores=4, devices=[HardwareDevice(type="gpu", properties={"memory_gb": 16})])
if my_res.matches(req):
print("This holon is ready for the task!")
📜 License
The project is distributed under the Mozilla Public License 2.0 (MPL 2.0).
Mantra: "The RXON is the medium for the Ghost."
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file rxon-1.0b8.tar.gz.
File metadata
- Download URL: rxon-1.0b8.tar.gz
- Upload date:
- Size: 36.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.10.12 {"installer":{"name":"uv","version":"0.10.12","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Gentoo","version":"2.18","id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cf7f9fbc6ec06d686486b866ae43d097e1e5c1adc62539d97460dcd390b4a5fa
|
|
| MD5 |
b2753d7e521ddbea719c4572f6ab16ce
|
|
| BLAKE2b-256 |
bf45f6639b907acde55fc325feb2c3c37c421f372d538fa8b2ee5a3ebe0004a2
|
File details
Details for the file rxon-1.0b8-py3-none-any.whl.
File metadata
- Download URL: rxon-1.0b8-py3-none-any.whl
- Upload date:
- Size: 31.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.10.12 {"installer":{"name":"uv","version":"0.10.12","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Gentoo","version":"2.18","id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fe225dc7751f569aa9eed090908f39fa85bd86fae5a8d8e08b552d84c6f38b10
|
|
| MD5 |
0eccf6de745b1c6481be88dec1fee028
|
|
| BLAKE2b-256 |
61fa3d78c7fd8d013ea92824023a14b637b582c70373b184f8de197aae8b0aae
|