Grand Diomande Research · Full HTML Reader
System Overview Diagram
```mermaid flowchart TB subgraph CC [Computational Choreography - The Discipline] subgraph TOS [TrajectoryOS - Long Horizon] direction TB subgraph Memory [Memory Fabric] RAG[RAG++ Core<br/>Rust: HNSW, IRCP, 5D] CT[CognitiveTwin<br/>Python ML] Sig[Style Signature<br/>EMA Learning] end subgraph Orchestration [Orchestration] Orbit[Orbit Server<br/>Axum/Rust] Sessions[Session Manager<br/>Supabase] end subgraph MCP [MCP Integration] MCPServer[MCP Server<br/>AI Tool Access] AgentSDK[Agent SDK<br/>Claude Wrapper] end end
Full Public Reader
System Overview Diagram
Version: 2.1.0
Last Updated: 2026-01-03
---
Complete System Architecture
mermaid
flowchart TB
subgraph CC [Computational Choreography - The Discipline]
subgraph TOS [TrajectoryOS - Long Horizon]
direction TB
subgraph Memory [Memory Fabric]
RAG[RAG++ Core<br/>Rust: HNSW, IRCP, 5D]
CT[CognitiveTwin<br/>Python ML]
Sig[Style Signature<br/>EMA Learning]
end
subgraph Orchestration [Orchestration]
Orbit[Orbit Server<br/>Axum/Rust]
Sessions[Session Manager<br/>Supabase]
end
subgraph MCP [MCP Integration]
MCPServer[MCP Server<br/>AI Tool Access]
AgentSDK[Agent SDK<br/>Claude Wrapper]
end
end
subgraph Echelon [Echelon - Real-Time Engine]
direction TB
subgraph Input [Layer 0: Sensor Input]
Mocopi[Mocopi UDP<br/>27-bone @ 30-60Hz]
IMU[iPhone/Watch<br/>CoreMotion @ 60Hz]
MP[MediaPipe<br/>Camera @ 30Hz]
Relay[cc-relay<br/>Rust TLV Parser]
end
subgraph Fusion [Layer 1: Sensor Fusion]
Collection[cc-collection<br/>Extended Kalman Filter]
Occlusion[Occlusion Handler<br/>Recovery States]
end
subgraph Window [Layer 2: Windowing]
Aligner[cc-window-aligner<br/>50Hz Canonical]
end
subgraph Semantic [Layer 3: Semantic]
Anticipation[cc-anticipation<br/>Commitment, Uncertainty]
Gesture[cc-gesture<br/>Neighbor Voting]
end
subgraph DELL [Layer 3.5: DELL]
DELLCoord[DELLCoordinator]
Fast[Fast Equilibrium<br/>60Hz micro-dynamics]
Slow[Slow Equilibrium<br/>~2.5Hz temporal]
end
subgraph Brain [Layer 4: Latent]
CCBrain[cc-brain<br/>Latent Updater]
State[Section State Machine<br/>Entry→Build→Peak→Release]
Lexicon[Lexicon Controller<br/>Tension, Energy, Divergence]
end
subgraph Audio [Layer 5-7: Audio]
Conductor[cc-conductor<br/>Beat Quantizer]
Scheduler[Beat Scheduler<br/>Ableton Link]
DSP[Audio Engine<br/>48kHz Real-Time]
end
subgraph Output [Output Layer]
DJ[DJ Control<br/>MIDI/OSC]
Viz[Visualization<br/>Three.js WebSocket]
end
end
end
%% Sensor Flow
Mocopi --> Relay --> Collection
IMU --> Collection
MP --> Collection
Collection --> Occlusion --> Aligner --> Anticipation
%% Semantic Flow
Anticipation --> Gesture
Anticipation --> DELLCoord
DELLCoord --> Fast --> Slow
%% Brain Flow
Gesture --> CCBrain
DELLCoord --> CCBrain
CCBrain --> State --> Lexicon
%% Audio Flow
Lexicon --> Conductor --> Scheduler --> DSP
Gesture --> DJ
Lexicon --> Viz
%% Cross-system Flow
Echelon -->|Trajectory Segments| RAG
RAG -->|Context Window| Anticipation
Orbit --> RAG
MCPServer --> RAG
AgentSDK --> Orbit
AgentSDK --> RAG
CT --> Sig---
Layer Summary Table
| Layer | Component | Location | Input | Output | Latency |
|---|---|---|---|---|---|
| 0 | cc-relay | `core/cc-relay` | UDP packets | MocopiStateFrame | < 50μs |
| 1 | cc-collection | `core/cc-collection` | Multi-sensor | FusedSkeleton | < 100μs |
| 2 | cc-window-aligner | `core/cc-window-aligner` | FusedSkeleton | MotionWindow | < 1ms |
| 3 | cc-anticipation | `core/cc-anticipation` | MotionWindow | AnticipationPacket | < 2ms |
| 3 | cc-gesture | `core/cc-gesture` | AnticipationPacket | GestureEvent | < 500μs |
| 3.5 | dell | `core/cc-echelon/crates/dell` | Limb data | DELLState | < 500μs |
| 4 | cc-brain | `core/cc-echelon/crates/cc-brain` | All semantic | LatentState, Lexicon | < 1ms |
| 5-7 | cc-conductor | `core/cc-echelon/crates/cc-conductor` | Lexicon | Actions | < 1ms |
---
Key Data Types
| Type | Description | Dims | Schema |
|---|---|---|---|
| `MocopiStateFrame` | Raw skeleton frame | 27 bones × 7 floats | 1.0.0 |
| `FusedSkeleton` | Fused multi-sensor | 14 limbs × 13 state | 1.0.0 |
| `MotionWindow` | Time-aligned frames | 50 frames @ 50Hz | 0.1.0 |
| `AnticipationPacket` | Semantic signals | 7 scalars + 3 vectors | 0.1.0 |
| `GestureEvent` | Classified gesture | Label + confidence | 1.0.0 |
| `DELLState` | Dual-equilibrium | Fast + slow latent | 1.0.0 |
| `Lexicon` | Expressive controls | 6 floats | 1.0.0 |
---
Navigation
- Overview: [00-OVERVIEW.md](../00-OVERVIEW.md)
- Philosophy: [01-COMPUTATIONAL_CHOREOGRAPHY.md](../01-COMPUTATIONAL_CHOREOGRAPHY.md)
- TrajectoryOS: [02-TRAJECTORY_OS.md](../02-TRAJECTORY_OS.md)
- Echelon: [03-ECHELON.md](../03-ECHELON.md)
- Agent SDK: [17-AGENT_SDK.md](../17-AGENT_SDK.md)
- Data Flow: [data-flow.md](data-flow.md)
- Deployment: [deployment-topology.md](deployment-topology.md)
Promotion Decision
Promote into a technical note or architecture paper with implementation anchors.
Source Anchor
Comp-Core/docs/architecture/diagrams/system-overview.md
Detected Structure
Method · Evaluation · Architecture