RXON (Reverse Axon) - Lightweight Inter-node Reverse Communication Protocol.
Project description
RXON (Reverse Axon) Protocol
RXON (Reverse Axon) is a lightweight reverse-connection inter-service communication protocol designed for the HLN (Hierarchical Logic Network) architecture.
It serves as the "nervous system" for distributed multi-agent systems, connecting autonomous nodes (Holons) into a single hierarchical network.
🧬 The Biological Metaphor
The name RXON is derived from the biological term Axon (the nerve fiber). In classic networks, commands typically flow "top-down" (Push model). In RXON, the connection initiative always comes from the subordinate node (Worker/Shell) to the superior node (Orchestrator/Ghost). This is a "Reverse Axon" that grows from the bottom up, creating a channel through which commands subsequently descend.
✨ Key Features
- Pluggable Transports: Full abstraction from the network layer. The same code can run over HTTP, WebSocket, gRPC, or Tor.
- Zero Dependency Core: The protocol core has no external dependencies (standard transports use
aiohttpandorjson). - Strictly Typed: All messages (tasks, results, heartbeats) are defined via strictly typed models for maximum performance and correctness.
- Blob Storage Native: Built-in support for offloading heavy data via S3-compatible storage (
rxon.blob).
🏗 Architecture
The protocol is divided into two main interfaces:
- Transport (Worker side): Interface for initiating connections, retrieving tasks, and sending results.
- Listener (Orchestrator side): Interface for accepting incoming connections and routing messages to the orchestration engine.
Usage Example (Worker side)
from rxon import create_transport, WorkerRegistration
# 1. Create transport (automatically selects HttpTransport based on URL scheme)
transport = create_transport(
url="https://orchestrator.local",
worker_id="gpu-01",
token="secret-token"
)
await transport.connect()
# 2. Register
await transport.register(reg_payload)
# 3. Poll for tasks
task = await transport.poll_task(timeout=30)
Usage Example (Orchestrator side)
from rxon import HttpListener, TaskPayload
async def my_handler(message_type, payload, context):
if message_type == "poll":
# Task dispatch logic
return TaskPayload(...)
return True
# Listener attaches to a web application or starts its own server
listener = HttpListener(app)
await listener.start(handler=my_handler)
🛡️ Error Handling
RXON uses a dedicated exception hierarchy grounded in RxonError. Transports raise specific exceptions instead of returning error codes or None.
from rxon import create_transport
from rxon.exceptions import RxonNetworkError, RxonAuthError
try:
await transport.poll_task()
except RxonNetworkError:
# Handle connection failures (e.g., exponential backoff)
pass
except RxonAuthError:
# Handle critical auth failures (e.g., invalid token)
pass
🧪 Testing
The library includes a MockTransport to simplify testing Workers in isolation without running a real Orchestrator.
from rxon.testing import MockTransport
# Use standard factory with mock:// scheme
transport = create_transport("mock://", "test-worker", "token")
await transport.connect()
# Inject tasks directly
transport.push_task(my_task_payload)
📦 Package Structure
rxon.models: DTOs for registrations, tasks, heartbeats, and results.rxon.constants: Standardized error codes (TIMEOUT, RESOURCE_EXHAUSTED, etc.) and API endpoints.rxon.transports: Abstract base classes and implementations (HTTP, WebSocket).rxon.blob: Unified interface for blob storage operations (S3 URI parsing, hashing).rxon.security: Helpers for mTLS and access tokens.
🚀 Installation
pip install rxon
For developers (local):
pip install -e packages/rxon
📜 License
The project is distributed under the MIT License.
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.0b2.tar.gz.
File metadata
- Download URL: rxon-1.0b2.tar.gz
- Upload date:
- Size: 22.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.9.15 {"installer":{"name":"uv","version":"0.9.15","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 |
1c90dc6d67c5c999288dc771f372a6452ef66bc8089262a15642c44c20463c1f
|
|
| MD5 |
f2f369557e6e0b8ebc131fa0ec04be5c
|
|
| BLAKE2b-256 |
c94c4d8ef0425e42ffa309ed081a45085a805599ec4c4b1a1041854b834df615
|
File details
Details for the file rxon-1.0b2-py3-none-any.whl.
File metadata
- Download URL: rxon-1.0b2-py3-none-any.whl
- Upload date:
- Size: 18.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.9.15 {"installer":{"name":"uv","version":"0.9.15","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 |
0f869152e237d670b72ec4ccfde8dc98ac7d83f958ba1ff8ce2dbfa353eaffc5
|
|
| MD5 |
d387044aa5a10b92738b8dce4e379213
|
|
| BLAKE2b-256 |
47a948edb9d12b4cf3562e399a6946972d86a17eeb6d96c65d1dd129826734bf
|