Skip to content

Commit 42650e7

Browse files
committed
updated
1 parent 9b99716 commit 42650e7

File tree

5 files changed

+1541
-13
lines changed

5 files changed

+1541
-13
lines changed

docs/developer/agents/1_agentarchitecture/1_architecture.md

Lines changed: 38 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,45 @@ sidebar_label: Architecture Overview
55

66
# Agent Architecture Overview
77

8-
This section covers the detailed architecture of Codebolt agents.
8+
The Codebolt Agent Architecture is a sophisticated system designed to enable AI-powered development workflows through intelligent agents. This architecture provides a seamless integration between the Codebolt Editor, various services, and custom agents to deliver powerful automation capabilities.
99

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+
```
1147

1248
Detailed architecture documentation is being developed. For now, please refer to the [Agent Introduction](../agentIntroduction.md) for basic concepts.
1349

0 commit comments

Comments
 (0)