File size: 906 Bytes
e9e55ec
76e192b
 
6c314e0
37f9abc
 
 
 
 
 
 
 
 
 
 
 
 
 
 
76e192b
 
37f9abc
 
 
 
 
 
e9e55ec
6c314e0
37f9abc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
from multi_agent_sdlc.tools.coder.execution import coder_run_verification_command
from multi_agent_sdlc.tools.shared.filesystem import read_file
from multi_agent_sdlc.tools.shared.filesystem import list_files
from multi_agent_sdlc.tools.coder.finalization import submit_coder_summary
from multi_agent_sdlc.tools.coder.dependencies import (
    coder_install_runtime_dependencies,
)
from multi_agent_sdlc.tools.coder.execution import (
    coder_run_application,
    coder_run_python_module,
    coder_sync_project,
)
from multi_agent_sdlc.tools.coder.filesystem import (
    coder_create_directory,
    coder_write_file,
)


CODER_TOOLS = [
    list_files,
    read_file,
    coder_write_file,
    coder_create_directory,
    coder_sync_project,
    coder_run_application,
    coder_run_python_module,
    coder_install_runtime_dependencies,
    coder_run_verification_command,
    submit_coder_summary,
]