Upload README.md with huggingface_hub
Browse files
README.md
ADDED
|
@@ -0,0 +1,35 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# AgentGlancer β Live Multi-Agent Connectome Dashboard
|
| 2 |
+
|
| 3 |
+
Inspired by Google's **Neuroglancer**, built for Hayula's **91 agents**.
|
| 4 |
+
|
| 5 |
+
## Features
|
| 6 |
+
- π§ Live force-directed agent network visualization
|
| 7 |
+
- π΄ Hub detection (high-degree agents glow red)
|
| 8 |
+
- π Bottleneck alerts (pulsing orange)
|
| 9 |
+
- β« Orphan detection (isolated in gray)
|
| 10 |
+
- π Zoom/pan β from overview to single agent
|
| 11 |
+
- π Real-time stats: agent count, events, FPS
|
| 12 |
+
- π‘ WebSocket-ready for live data
|
| 13 |
+
|
| 14 |
+
## Quick Start
|
| 15 |
+
```bash
|
| 16 |
+
pip install none # zero dependencies β pure HTML5 Canvas + vanilla JS
|
| 17 |
+
python3 server.py # serves dashboard on port 9011
|
| 18 |
+
```
|
| 19 |
+
|
| 20 |
+
## Architecture
|
| 21 |
+
```
|
| 22 |
+
AgentGlancer Dashboard (Canvas 2D)
|
| 23 |
+
β fetch /api/connectome
|
| 24 |
+
Glancer Server (Python http.server)
|
| 25 |
+
β read JSON
|
| 26 |
+
FFAM Connectome Snapshots (from M2 DragonMesh)
|
| 27 |
+
```
|
| 28 |
+
|
| 29 |
+
## URL
|
| 30 |
+
https://glancer.hayula.xyz
|
| 31 |
+
|
| 32 |
+
## Part of Hayula ASI Stack
|
| 33 |
+
- FFAM (connectome.py) β generates snapshots
|
| 34 |
+
- AgentGlancer β visualizes snapshots
|
| 35 |
+
- DragonMesh β provides live agent data
|