System Architecture: High-Level Overview #1

Open
opened 2026-01-03 16:24:05 +00:00 by iN0mad · 0 comments
Owner
graph LR
    %% Dark Mode & Neon Palette
    classDef base fill:#1e1e1e,stroke:#333,stroke-width:2px,color:#fff;
    classDef inputs fill:#0d47a1,stroke:#42a5f5,stroke-width:2px,color:#fff;
    classDef core fill:#212121,stroke:#ffab00,stroke-width:3px,color:#fff,shadow:0 0 10px #ffab00;
    classDef memory fill:#1b5e20,stroke:#69f0ae,stroke-width:2px,color:#fff,stroke-dasharray: 5 5;
    classDef outputs fill:#4a148c,stroke:#e040fb,stroke-width:2px,color:#fff;

    %% 1. INPUT ZONE
    subgraph INPUTS [📡 SIGNAL SOURCES]
        direction TB
        TG[Telegram / Voice]:::inputs
        WEB[Web Forms]:::inputs
        MAIL[Email]:::inputs
    end

    %% 2. PROCESSING CORE
    subgraph CORE [⚙️ INTELLIGENCE CORE]
        direction TB
        N8N{n8n Orchestrator}:::core
        AGENT(🤖 Antigravity Agent)::::core
        LOGIC[Business Logic]:::base
    end

    %% 3. STORAGE LAYER
    subgraph STORAGE [💾 DATA VAULT]
        PG[(PostgreSQL)]:::memory
        NEO[(Neo4j Graph)]:::memory
        VEC[(Vector Memory)]:::memory
    end

    %% 4. DELIVERY LAYER
    subgraph OUTPUTS [🚀 ACTION CENTER]
        DASH[BI Dashboard]:::outputs
        CRM[Gitea CRM]:::outputs
        ALERT[Alerts]:::outputs
    end

    %% Connections
    TG & WEB & MAIL --> N8N
    N8N <==> AGENT
    AGENT <--> VEC
    N8N --> LOGIC

    LOGIC --> PG & NEO
    PG --> DASH & CRM
    N8N -.-> ALERT
```mermaid graph LR %% Dark Mode & Neon Palette classDef base fill:#1e1e1e,stroke:#333,stroke-width:2px,color:#fff; classDef inputs fill:#0d47a1,stroke:#42a5f5,stroke-width:2px,color:#fff; classDef core fill:#212121,stroke:#ffab00,stroke-width:3px,color:#fff,shadow:0 0 10px #ffab00; classDef memory fill:#1b5e20,stroke:#69f0ae,stroke-width:2px,color:#fff,stroke-dasharray: 5 5; classDef outputs fill:#4a148c,stroke:#e040fb,stroke-width:2px,color:#fff; %% 1. INPUT ZONE subgraph INPUTS [📡 SIGNAL SOURCES] direction TB TG[Telegram / Voice]:::inputs WEB[Web Forms]:::inputs MAIL[Email]:::inputs end %% 2. PROCESSING CORE subgraph CORE [⚙️ INTELLIGENCE CORE] direction TB N8N{n8n Orchestrator}:::core AGENT(🤖 Antigravity Agent)::::core LOGIC[Business Logic]:::base end %% 3. STORAGE LAYER subgraph STORAGE [💾 DATA VAULT] PG[(PostgreSQL)]:::memory NEO[(Neo4j Graph)]:::memory VEC[(Vector Memory)]:::memory end %% 4. DELIVERY LAYER subgraph OUTPUTS [🚀 ACTION CENTER] DASH[BI Dashboard]:::outputs CRM[Gitea CRM]:::outputs ALERT[Alerts]:::outputs end %% Connections TG & WEB & MAIL --> N8N N8N <==> AGENT AGENT <--> VEC N8N --> LOGIC LOGIC --> PG & NEO PG --> DASH & CRM N8N -.-> ALERT ```
Sign in to join this conversation.
No Label
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: iN0mad/antigravity#1