From f9170bb00b7235295648e6af6ff3c730aa278004 Mon Sep 17 00:00:00 2001 From: 0x1d Date: Thu, 6 Nov 2025 13:29:32 +0100 Subject: [PATCH] fix(docs): diagrams --- docs/content/architecture/architecture.md | 6 ++++++ .../architecture/component-relationships.md | 14 ++++++-------- 2 files changed, 12 insertions(+), 8 deletions(-) diff --git a/docs/content/architecture/architecture.md b/docs/content/architecture/architecture.md index 2f6a504..87edd92 100644 --- a/docs/content/architecture/architecture.md +++ b/docs/content/architecture/architecture.md @@ -317,6 +317,10 @@ graph TB Notifier[Notifier] end + subgraph "External Services" + Sentry[Sentry
Error Reporting] + end + subgraph "Module Components" ModuleRoutes[Module Routes] ModuleServices[Module Services] @@ -359,6 +363,7 @@ graph TB style AuthService fill:#ff6b6b,stroke:#c92a2a,stroke-width:2px,color:#fff style IdentityService fill:#ff6b6b,stroke:#c92a2a,stroke-width:2px,color:#fff style ModuleServices fill:#7b68ee,stroke:#5a4fcf,stroke-width:2px,color:#fff +``` ## Data Flow @@ -626,6 +631,7 @@ graph TB style Gateway2 fill:#4a90e2,stroke:#2e5c8a,stroke-width:2px,color:#fff style Primary fill:#50c878,stroke:#2e7d4e,stroke-width:2px,color:#fff style Redis1 fill:#ff6b6b,stroke:#c92a2a,stroke-width:2px,color:#fff +``` ## Core Kernel Components diff --git a/docs/content/architecture/component-relationships.md b/docs/content/architecture/component-relationships.md index 5bd4ac3..fe5ca06 100644 --- a/docs/content/architecture/component-relationships.md +++ b/docs/content/architecture/component-relationships.md @@ -55,17 +55,12 @@ graph TD DI --> Tracer DI --> Registry - Registry --> Auth - Registry --> Authz - Registry --> Audit - DB --> Tracer Cache --> Tracer EventBus --> Tracer style Config fill:#4a90e2,stroke:#2e5c8a,stroke-width:3px,color:#fff style DI fill:#50c878,stroke:#2e7d4e,stroke-width:3px,color:#fff - style Auth fill:#ff6b6b,stroke:#c92a2a,stroke-width:2px,color:#fff ``` ## Service to Service Integration @@ -139,7 +134,10 @@ graph LR style Registry fill:#50c878,stroke:#2e7d4e,stroke-width:3px,color:#fff style AuthService fill:#ff6b6b,stroke:#c92a2a,stroke-width:2px,color:#fff style DBClient fill:#50c878,stroke:#2e7d4e,stroke-width:2px,color:#fff - style ServiceClients fill:#50c878,stroke:#2e7d4e,stroke-width:2px,color:#fff + style AuthClient fill:#50c878,stroke:#2e7d4e,stroke-width:2px,color:#fff + style AuthzClient fill:#50c878,stroke:#2e7d4e,stroke-width:2px,color:#fff + style IdentityClient fill:#50c878,stroke:#2e7d4e,stroke-width:2px,color:#fff + style AuditClient fill:#50c878,stroke:#2e7d4e,stroke-width:2px,color:#fff ``` ## Service Interaction Patterns @@ -371,7 +369,6 @@ graph TB Notifier --> EventBus ErrorBus --> Logger - ErrorBus --> Sentry DB --> Tracer Cache --> Tracer @@ -480,7 +477,8 @@ graph LR style BlogService fill:#7b68ee,stroke:#5a4fcf,stroke-width:2px,color:#fff style AnalyticsService fill:#7b68ee,stroke:#5a4fcf,stroke-width:2px,color:#fff style EventBus fill:#4a90e2,stroke:#2e5c8a,stroke-width:3px,color:#fff - style ServiceClients fill:#50c878,stroke:#2e7d4e,stroke-width:2px,color:#fff + style AuthzClient fill:#50c878,stroke:#2e7d4e,stroke-width:2px,color:#fff + style IdentityClient fill:#50c878,stroke:#2e7d4e,stroke-width:2px,color:#fff ``` ## Next Steps