Skip to content

Latest commit

 

History

History
98 lines (57 loc) · 6.53 KB

File metadata and controls

98 lines (57 loc) · 6.53 KB
graph LR
    Code_Implementation_Workflow_Orchestrator["Code Implementation Workflow Orchestrator"]
    Code_Implementation_Agent["Code Implementation Agent"]
    Code_Execution_Server["Code Execution Server"]
    Command_Executor["Command Executor"]
    Code_Prompts_Manager["Code Prompts Manager"]
    Memory_Optimization_Agent["Memory Optimization Agent"]
    Tool_Definition_Management["Tool Definition & Management"]
    Code_Implementation_Workflow_Orchestrator -- "orchestrates" --> Code_Implementation_Agent
    Code_Implementation_Workflow_Orchestrator -- "retrieves tools from" --> Tool_Definition_Management
    Code_Implementation_Workflow_Orchestrator -- "optimizes context with" --> Memory_Optimization_Agent
    Code_Implementation_Agent -- "dispatches commands to" --> Code_Execution_Server
    Code_Implementation_Agent -- "tracks progress with" --> Memory_Optimization_Agent
    Code_Execution_Server -- "provides sandboxed environment for" --> Code_Implementation_Agent
    Code_Execution_Server -- "delegates execution to" --> Command_Executor
    Command_Executor -- "returns results to" --> Code_Execution_Server
    Code_Execution_Server -- "forwards results to" --> Code_Implementation_Agent
    Code_Prompts_Manager -- "supplies prompt templates to" --> Code_Implementation_Workflow_Orchestrator
    Code_Prompts_Manager -- "informs reasoning of" --> Code_Implementation_Agent
    Memory_Optimization_Agent -- "optimizes context for" --> Code_Implementation_Workflow_Orchestrator
    Memory_Optimization_Agent -- "tracks progress for" --> Code_Implementation_Agent
    Tool_Definition_Management -- "supplies tools to" --> Code_Implementation_Workflow_Orchestrator
    Tool_Definition_Management -- "defines capabilities for" --> Code_Execution_Server
Loading

CodeBoardingDemoContact

Details

The DeepCode project's code implementation subsystem is orchestrated by the Code Implementation Workflow Orchestrator, which manages the entire iterative process of code generation, execution, and error handling. This orchestrator initializes the Code Implementation Agent, which is responsible for executing specific implementation tasks and making tool calls. For safe and controlled execution, the Code Implementation Agent dispatches commands to the Code Execution Server. This server acts as a sandboxed environment, delegating the actual system command execution (Bash) to the Command Executor. After execution, results flow back from the Command Executor to the Code Execution Server, which then forwards them to the Code Implementation Agent. Throughout this process, the Memory Optimization Agent continuously optimizes conversational memory and tracks file implementation progress, ensuring efficient use of LLM context. Prompt templates are provided by the Code Prompts Manager to guide the agents' reasoning, while the Tool Definition & Management component centralizes the definitions of available tools for the orchestrator and defines capabilities for the execution server. This architecture ensures a robust, secure, and efficient workflow for AI-driven code implementation.

Code Implementation Workflow Orchestrator

Orchestrates the end-to-end code implementation process. It manages the iterative loop of code generation, execution, and error handling, initializes the LLM client and the Multi-Component Planning (MCP) agent, prepares tools, and handles user responses and reporting.

Related Classes/Methods:

Code Implementation Agent

Acts as the primary agent for executing code implementation tasks. It manages the execution of tool calls, tracks file implementation progress, and applies memory optimization strategies.

Related Classes/Methods:

Code Execution Server

Provides a sandboxed environment for interacting with the file system (reading/writing files) and executing code (Python and Bash commands). It ensures safe and controlled execution of agent-generated code.

Related Classes/Methods:

Command Executor

Executes system commands (Bash) and provides structured output. It handles both single and batch command execution, ensuring reliable command-line interactions.

Related Classes/Methods:

Code Prompts Manager

Contains the templates and structures for prompts used by the code generation and execution agents. These prompts guide the LLM in planning, writing, and executing code effectively.

Related Classes/Methods:

Memory Optimization Agent

Manages the agent's conversational memory, specifically for code implementation. It extracts file information from plans, tracks implemented files, creates concise summaries, and optimizes messages to fit within LLM context windows.

Related Classes/Methods:

Tool Definition & Management

Provides a centralized definition and retrieval mechanism for the code implementation tools that the Multi-Component Planning (MCP) agent can use.

Related Classes/Methods: