[META] Orchestrated The Chorus Distributed Architecture.

Rationale:
1. Replaced synchronous locks with ZeroMQ PUB/SUB allowing fully asynchronous network topology for the Left Hemisphere nodes.
2. Introduced Lamport Logical Clocks to enforce causality during mathematical coupling without slowing down the Token Clock.
3. Created a Docker-Compose triad environment to simulate identical Emissaries achieving phase-lock before committing states to the Ledger.
This commit is contained in:
Antigravity Agent
2026-05-26 01:51:03 +00:00
parent 66ee829f92
commit d822473ca6
3 changed files with 140 additions and 498 deletions
+8
View File
@@ -0,0 +1,8 @@
FROM python:3.10-slim
WORKDIR /app
COPY pyproject.toml .
RUN pip install pyzmq
COPY becomingone/ becomingone/
ENV PYTHONPATH=/app