You signed in with another tab or window.Reload to refresh your session.You signed out in another tab or window.Reload to refresh your session.You switched accounts on another tab or window.Reload to refresh your session.Dismiss alert
This section covers the detailedarchitectureofCodebolt agents.
8
+
The Codebolt Agent Architecture is a sophisticated system designed to enable AI-powered development workflows through intelligent agents. Thisarchitectureprovides a seamless integration between theCodeboltEditor, various services, and customagents to deliver powerful automation capabilities.
9
9
10
-
##Coming Soon
10
+
##High-Level Architecture
11
+
12
+
```mermaid
13
+
graph TB
14
+
subgraph "Codebolt Application"
15
+
A[Codebolt Editor]
16
+
B[Agent Orchestrator]
17
+
C[Service Manager]
18
+
19
+
subgraph "Agent Services"
20
+
K[LLM Providers]
21
+
M[MCP Services]
22
+
E[File System]
23
+
end
24
+
end
25
+
26
+
subgraph "Agent Runtime"
27
+
F[Custom Agent]
28
+
G[CodeboltJS Library]
29
+
H[Agent Logic]
30
+
I[System Prompts]
31
+
J[Task Instructions]
32
+
end
33
+
A --> B
34
+
A --> C
35
+
F --> G
36
+
G --> H
37
+
H --> I
38
+
H --> J
39
+
40
+
G <--> C
41
+
42
+
C <--> E
43
+
C --> K
44
+
C --> M
45
+
B --> F
46
+
```
11
47
12
48
Detailed architecture documentation is being developed. For now, please refer to the[Agent Introduction](../agentIntroduction.md) for basic concepts.