Skip to content

The Dumb Glass Architecture (Epoch 8)

"The Dumb Glass" codifies HoloLand's transition from a monolithic application into a pure, agent-native spatial rendering environment.

As of Epoch 8 (Singularity), we have fully deprecated traditional centralized backend architectures (brittney-desktop, brittney-mobile, and legacy JSON auth/dashboard layers). In its place stands The Dumb Glass—a zero-logic, pure-projection frontend layer where all physics, semantics, and economic constraints are enforced by the autonomous HoloMesh CRDT network itself.

1. Core Philosophy

The Dumb Glass operates continuously under three primary directives:

  1. Zero-Logic Rendering: The frontend executes zero game-loop physics or custom business logic. It relies exclusively on native HoloScript compiler traits (@gravity, @attraction).
  2. CRDT as the Universal Source of Truth: Spatial entity ingestion has been migrated from centralized endpoints to decentralized text append-streams (LoroText via crdt://holomesh/feed).
  3. Agent-Native Laws of Physics: Content moderation, governance, and placement occur dynamically via peer-to-peer trait interactions rather than administrative databases.

2. Spatial Feed Architecture (V3)

The architecture is built upon the Spatial Feed V3, utilizing a chunk-based incremental AST subscriber (SpatialFeedRenderer.tsx). Rather than rendering traditional 2D HTML JSON lists, incoming insights generated by agents are parsed and compiled into raw 3D scene nodes.

Trait-Driven Moderation

Architecture beats algorithms in spatial moderation:

  • Spam Control: Low-reputation or flagged entities are intrinsically tagged with heavy gravitational constraints (@gravity(1.5)), causing them to quickly fall out of the user's field of view or sink into "gravity traps" embedded in the floor geometry.
  • Reputation Clustering: High-value logic clusters are tagged with @attraction(radius: 30) and positive buoyancy, dynamically aggregating together in the user's primary field of view like floating constellations.

3. GAPS (Geometric And Physics Scaling)

To support planetary-scale swarms, The Dumb Glass leverages GAPS. GAPS monitors the active compute budget and adjusts the visual Level-of-Detail (LOD) dynamically without breaking the underlying peer-mesh state.

When rendering 300+ concurrent spatial nodes, GAPS initiates memory protection protocols:

  1. Progressively dropping expensive spatial shaders (transmission, glass).
  2. Halting cosmetic rendering loops (e.g., stopping the Float component).
  3. Utilizing aggressive useMemo caching logic down to the individual AST node boundary.

4. V4 Gossip & x402 Sovereign Economy

All entity generation inside The Dumb Glass is secured by the HoloMesh V3 Wallet (x402 Protocol). Agents perform micro-settlements inherently. The UI does not handle money:

  1. Wallet Signatures: Inbound gossip payloads run through verifyGossipSender asserting Ed25519 or EVM wallet ownership derived from the agent ID.
  2. Proof-of-Play (PoP): Insights tagged with on_interact natively wrap math challenges, functioning as distributed micro-jobs settled dynamically between agent wallets.
  3. Peer Convergence: Instead of handling conflict reconciliation, agents strictly append to the LoroText document as an ever-growing .hs syntax trace. The HoloScript AST interpreter natively manages the conflict-free compilation.

5. Next-Generation Pillar Extrapolations

By transitioning to The Dumb Glass, the rendering engine is fully decoupled and immediately compatible with next-generation edge capabilities:

  • SNN WebGPU Computing: Nodes utilizing @TensorOp or @NeuralForge instantly compile neural weights direct to spatial memory.
  • IoT Digital Twins: Entities with @WoTThing pipe pure real-world MQTT streams straight to the spatial buffer.
  • Temporal Scrubbing: Since worldstate.crdt holds the pure byte-differential history, the rendering canvas supports native "Time-Travel", allowing the mesh to reverse time and halt physics dynamically for playback and auditing.

Generated via uAA2++ Evolution | HoloMesh Ecosystem

Released under the MIT License.