'use strict'; /** * Self-contained 3D "agent airspace" visualization, served by the control pane. * * Renders each agent as a point in code-space (positions from the proximity * embedding), sized by working-set size and colored by collision risk, with * links between converging pairs (amber = transmit advisory, red = steer). The * scene auto-rotates so you can read the cloud. Dependency-free: a hand-rolled * 3D2D projection on a , no external scripts (CSP/offline friendly). * * This is the operator/Enterprise view of Layer 4: multi-agent observability: * literally watch the swarm and watch one agent steer away from a collision. */ function renderProximityVizHtml() { return ` ECC Agent Airspace

ECC - Agent Airspace

connecting... 2D control plane
Agent airspace visualization; see the Agents panel for per-agent risk.
●clear
■traffic advisory (transmit)
▲resolution (steer)

Advisories

No advisories - airspace clear.

Agents

No agents.
`; } module.exports = { renderProximityVizHtml };