| # AgentGlancer β Live Multi-Agent Connectome Dashboard |
|
|
| Inspired by Google's **Neuroglancer**, built for Hayula's **91 agents**. |
|
|
| ## Features |
| - π§ Live force-directed agent network visualization |
| - π΄ Hub detection (high-degree agents glow red) |
| - π Bottleneck alerts (pulsing orange) |
| - β« Orphan detection (isolated in gray) |
| - π Zoom/pan β from overview to single agent |
| - π Real-time stats: agent count, events, FPS |
| - π‘ WebSocket-ready for live data |
|
|
| ## Quick Start |
| ```bash |
| pip install none # zero dependencies β pure HTML5 Canvas + vanilla JS |
| python3 server.py # serves dashboard on port 9011 |
| ``` |
|
|
| ## Architecture |
| ``` |
| AgentGlancer Dashboard (Canvas 2D) |
| β fetch /api/connectome |
| Glancer Server (Python http.server) |
| β read JSON |
| FFAM Connectome Snapshots (from M2 DragonMesh) |
| ``` |
|
|
| ## URL |
| https://glancer.hayula.xyz |
|
|
| ## Part of Hayula ASI Stack |
| - FFAM (connectome.py) β generates snapshots |
| - AgentGlancer β visualizes snapshots |
| - DragonMesh β provides live agent data |
|
|