System Architecture: High-Level Overview #1
Owner
```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
```
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?