Architecture Flows
Infrastructure Topology
751510
Full network map of all OPTX services across validator nodes, orchestration clusters, and cloud deployments.
Infrastructure Topology
| Layer | Components |
|---|---|
| Devices | Desktop / Workstation, Mobile, Seekers |
| Tailscale | WireGuard encrypted mesh tunnels |
| Edge Node | K3s, SpacetimeDB, HEDGEHOG v3.6.0, AARON, Conduit v0.10.12, Edge JOE (matrix-nio relay) |
| Orchestration | AstroJOE (Hermes Agent in Docker — dual-instance: edge-node primary + containerized secondary), Workspace UI, AgenC Coordinator |
| Cloud | Vercel, Convex, Solana, xAI Grok |
Edge Node — Validator Services
| Service | Role |
|---|---|
| SpacetimeDB | Primary edge database (reducers + subscriptions) |
| HEDGEHOG v3.6.0 | AI gateway — OpenAI-compatible REST API for agents, MCP stdio for IDEs |
| AARON Router | Gaze verification + tensor classification |
| Conduit v0.10.12 | Matrix homeserver (federated messaging, public at matrix.jettoptics.ai) |
| Edge JOE | Lightweight matrix-nio relay with strict mention filter |
Orchestration Host — Agent Services
| Service | Role |
|---|---|
| AstroJOE | Primary agent brain — Hermes Agent in Docker, Grok 4.20 via HEDGEHOG. Dual-instance: edge-node primary + containerized secondary. |
| Hermes Workspace | Agent workspace UI |
| AgenC Coordinator | SubJOE agent swarm orchestration |
AgenC Swarm Pattern
AgenC coordinates multi-agent task execution:
AgenC Coordinator
├── AstroJOE (primary brain, Hermes Agent)
├── Edge JOE (lightweight relay, edge node)
└── TraderJOE (XRPL swarm, paper trading)
↓
Task DAG decomposition → parallel/sequential subtasks
↓
Policy checks → ZK proofs → on-chain attestationEach sub-agent operates independently with its own wallet and can claim tasks from the shared DAG. AgenC ensures policy compliance and coordinates cross-agent dependencies.
Cloud Services
| Service | Purpose |
|---|---|
| Vercel | Frontend (Next.js) — jettoptics.ai |
| Convex | User sync, subscriptions |
| Solana | On-chain operations via Helius RPC |
| xAI | Grok inference for HEDGEHOG |
Network
All internal communication flows through Tailscale mesh networking with WireGuard encryption. Public access points:
jettoptics.ai— Vercel CDNmatrix.jettoptics.ai— Federated Matrix homeserver (via Cloudflare Tunnel)
Communication Flow
Matrix Client (Element X / Web)
→ Conduit Homeserver (edge node)
→ Hermes Matrix Gateway (AstroJOE, /sync long-poll)
→ Grok 4.20 via HEDGEHOG REST API
→ Response posted back to room
Edge JOE (matrix-nio, edge node)
→ Strict @joe: mention filter
→ Relay to AstroJOE if neededRelated
- System Architecture — High-level overview
- Edge MCP — HEDGEHOG on validator node details
- Matrix Gateway — Matrix integration details