BinSaqban commited on
Commit
29a314c
Β·
verified Β·
1 Parent(s): 1a6b15f

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +35 -0
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