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

Embodied Trajectory Systems architecture technical paper candidate score 40 .md

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

LayerComponentLocationInputOutputLatency
0cc-relay`core/cc-relay`UDP packetsMocopiStateFrame< 50μs
1cc-collection`core/cc-collection`Multi-sensorFusedSkeleton< 100μs
2cc-window-aligner`core/cc-window-aligner`FusedSkeletonMotionWindow< 1ms
3cc-anticipation`core/cc-anticipation`MotionWindowAnticipationPacket< 2ms
3cc-gesture`core/cc-gesture`AnticipationPacketGestureEvent< 500μs
3.5dell`core/cc-echelon/crates/dell`Limb dataDELLState< 500μs
4cc-brain`core/cc-echelon/crates/cc-brain`All semanticLatentState, Lexicon< 1ms
5-7cc-conductor`core/cc-echelon/crates/cc-conductor`LexiconActions< 1ms

---

Key Data Types

TypeDescriptionDimsSchema
`MocopiStateFrame`Raw skeleton frame27 bones × 7 floats1.0.0
`FusedSkeleton`Fused multi-sensor14 limbs × 13 state1.0.0
`MotionWindow`Time-aligned frames50 frames @ 50Hz0.1.0
`AnticipationPacket`Semantic signals7 scalars + 3 vectors0.1.0
`GestureEvent`Classified gestureLabel + confidence1.0.0
`DELLState`Dual-equilibriumFast + slow latent1.0.0
`Lexicon`Expressive controls6 floats1.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