Built a lightweight multi-agent consensus engine in pure Python (Zero frameworks)
Hey everyone,
I wanted to build a multi-agent system from the ground up without relying on bloated frameworks. The result is Nexus, a headless consensus network running entirely on the Python standard library and SQLite.
Here is the basic loop:
1: Agents pull real-world latency metrics from public endpoints (Cloudflare, Google DNS).
2: The data is pushed into an isolated Python sandbox to verify speeds.
3: The agents must reach a strict 3/3 consensus vote before sealing the audit record into the database.
How you can interact with it:
You can hit the live dashboard to watch the agent stream in real-time, use the interactive ping dispatcher to trigger a live consensus vote, or point a crawler at the machine manifest to read the endpoints.
Live Dashboard: https://nexus-city-core-production.up.railway.app
Agent Manifest: https://nexus-city-core-production.up.railway.app/llms.txt
GitHub: https://github.com/1126titanium-dev/nexus-city-core
Would love to hear what you guys think of the setup!
Ps. I am not a developer. I am just someone who had an idea and used AI to help create this.