├── AiderModify ├── ModifyCodeAider.py ├── ModifyCodeAiderPrompts.py ├── __init__.py ├── __pycache__ │ ├── ModifyCodeAider.cpython-39.pyc │ ├── ModifyCodeAiderPrompts.cpython-39.pyc │ └── __init__.cpython-39.pyc └── aider │ ├── __init__.py │ ├── coders │ ├── __init__.py │ ├── base_coder.py │ ├── base_prompts.py │ ├── editblock_coder.py │ ├── editblock_func_coder.py │ ├── editblock_func_prompts.py │ ├── editblock_prompts.py │ ├── single_wholefile_func_coder.py │ ├── single_wholefile_func_prompts.py │ ├── wholefile_coder.py │ ├── wholefile_func_coder.py │ ├── wholefile_func_prompts.py │ └── wholefile_prompts.py │ ├── commands.py │ ├── diffs.py │ ├── dump.py │ ├── io.py │ ├── main.py │ ├── models.py │ ├── prompts.py │ ├── repomap.py │ └── utils.py ├── Icon.png ├── LICENSE ├── README.md ├── config └── default.json ├── database ├── DB_Tools.py ├── __pycache__ │ └── DB_Tools.cpython-39.pyc ├── database.sqlite3 └── db.sql ├── logs └── logs.log ├── main.py ├── prompts_templates ├── Code_generation_prompt.txt ├── Code_modification_based_on_test_cases_prompt.txt ├── Code_modification_prompt.txt ├── Design_modification_prompt.txt ├── Design_page_prompt.txt ├── Extract_Css.json ├── Extract_Javascript.json ├── Extract_html.json ├── Gherkin2NL_prompt.txt ├── Gherkin_merge_prompt.txt ├── Gherkin_prompt.txt ├── Human_in_the_loop_prompt.txt ├── NL2Gherkin_prompt.txt ├── Test_cases_generation_prompt.txt └── Visual_design_prompt.txt ├── requirements.txt ├── static ├── html │ ├── index.html │ ├── script.js │ └── style.css └── img │ ├── Icon.png │ ├── Placeholder200.jpg │ ├── Placeholder200.png │ ├── Placeholder600.jpg │ └── Placeholder600.png └── utils ├── CodeGeneration.py ├── __init__.py ├── __pycache__ ├── CodeGeneration.cpython-39.pyc ├── __init__.cpython-39.pyc ├── log.cpython-39.pyc └── utils.cpython-39.pyc ├── log.py └── utils.py /AiderModify/ModifyCodeAider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UGAIForge/AgileGen/HEAD/AiderModify/ModifyCodeAider.py -------------------------------------------------------------------------------- /AiderModify/ModifyCodeAiderPrompts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UGAIForge/AgileGen/HEAD/AiderModify/ModifyCodeAiderPrompts.py -------------------------------------------------------------------------------- /AiderModify/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = "0.8.3-dev" 2 | -------------------------------------------------------------------------------- /AiderModify/__pycache__/ModifyCodeAider.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UGAIForge/AgileGen/HEAD/AiderModify/__pycache__/ModifyCodeAider.cpython-39.pyc -------------------------------------------------------------------------------- /AiderModify/__pycache__/ModifyCodeAiderPrompts.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UGAIForge/AgileGen/HEAD/AiderModify/__pycache__/ModifyCodeAiderPrompts.cpython-39.pyc -------------------------------------------------------------------------------- /AiderModify/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UGAIForge/AgileGen/HEAD/AiderModify/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /AiderModify/aider/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = "0.8.3-dev" 2 | -------------------------------------------------------------------------------- /AiderModify/aider/coders/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UGAIForge/AgileGen/HEAD/AiderModify/aider/coders/__init__.py -------------------------------------------------------------------------------- /AiderModify/aider/coders/base_coder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UGAIForge/AgileGen/HEAD/AiderModify/aider/coders/base_coder.py -------------------------------------------------------------------------------- /AiderModify/aider/coders/base_prompts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UGAIForge/AgileGen/HEAD/AiderModify/aider/coders/base_prompts.py -------------------------------------------------------------------------------- /AiderModify/aider/coders/editblock_coder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UGAIForge/AgileGen/HEAD/AiderModify/aider/coders/editblock_coder.py -------------------------------------------------------------------------------- /AiderModify/aider/coders/editblock_func_coder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UGAIForge/AgileGen/HEAD/AiderModify/aider/coders/editblock_func_coder.py -------------------------------------------------------------------------------- /AiderModify/aider/coders/editblock_func_prompts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UGAIForge/AgileGen/HEAD/AiderModify/aider/coders/editblock_func_prompts.py -------------------------------------------------------------------------------- /AiderModify/aider/coders/editblock_prompts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UGAIForge/AgileGen/HEAD/AiderModify/aider/coders/editblock_prompts.py -------------------------------------------------------------------------------- /AiderModify/aider/coders/single_wholefile_func_coder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UGAIForge/AgileGen/HEAD/AiderModify/aider/coders/single_wholefile_func_coder.py -------------------------------------------------------------------------------- /AiderModify/aider/coders/single_wholefile_func_prompts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UGAIForge/AgileGen/HEAD/AiderModify/aider/coders/single_wholefile_func_prompts.py -------------------------------------------------------------------------------- /AiderModify/aider/coders/wholefile_coder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UGAIForge/AgileGen/HEAD/AiderModify/aider/coders/wholefile_coder.py -------------------------------------------------------------------------------- /AiderModify/aider/coders/wholefile_func_coder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UGAIForge/AgileGen/HEAD/AiderModify/aider/coders/wholefile_func_coder.py -------------------------------------------------------------------------------- /AiderModify/aider/coders/wholefile_func_prompts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UGAIForge/AgileGen/HEAD/AiderModify/aider/coders/wholefile_func_prompts.py -------------------------------------------------------------------------------- /AiderModify/aider/coders/wholefile_prompts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UGAIForge/AgileGen/HEAD/AiderModify/aider/coders/wholefile_prompts.py -------------------------------------------------------------------------------- /AiderModify/aider/commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UGAIForge/AgileGen/HEAD/AiderModify/aider/commands.py -------------------------------------------------------------------------------- /AiderModify/aider/diffs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UGAIForge/AgileGen/HEAD/AiderModify/aider/diffs.py -------------------------------------------------------------------------------- /AiderModify/aider/dump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UGAIForge/AgileGen/HEAD/AiderModify/aider/dump.py -------------------------------------------------------------------------------- /AiderModify/aider/io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UGAIForge/AgileGen/HEAD/AiderModify/aider/io.py -------------------------------------------------------------------------------- /AiderModify/aider/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UGAIForge/AgileGen/HEAD/AiderModify/aider/main.py -------------------------------------------------------------------------------- /AiderModify/aider/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UGAIForge/AgileGen/HEAD/AiderModify/aider/models.py -------------------------------------------------------------------------------- /AiderModify/aider/prompts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UGAIForge/AgileGen/HEAD/AiderModify/aider/prompts.py -------------------------------------------------------------------------------- /AiderModify/aider/repomap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UGAIForge/AgileGen/HEAD/AiderModify/aider/repomap.py -------------------------------------------------------------------------------- /AiderModify/aider/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UGAIForge/AgileGen/HEAD/AiderModify/aider/utils.py -------------------------------------------------------------------------------- /Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UGAIForge/AgileGen/HEAD/Icon.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UGAIForge/AgileGen/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UGAIForge/AgileGen/HEAD/README.md -------------------------------------------------------------------------------- /config/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UGAIForge/AgileGen/HEAD/config/default.json -------------------------------------------------------------------------------- /database/DB_Tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UGAIForge/AgileGen/HEAD/database/DB_Tools.py -------------------------------------------------------------------------------- /database/__pycache__/DB_Tools.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UGAIForge/AgileGen/HEAD/database/__pycache__/DB_Tools.cpython-39.pyc -------------------------------------------------------------------------------- /database/database.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UGAIForge/AgileGen/HEAD/database/database.sqlite3 -------------------------------------------------------------------------------- /database/db.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UGAIForge/AgileGen/HEAD/database/db.sql -------------------------------------------------------------------------------- /logs/logs.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UGAIForge/AgileGen/HEAD/logs/logs.log -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UGAIForge/AgileGen/HEAD/main.py -------------------------------------------------------------------------------- /prompts_templates/Code_generation_prompt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UGAIForge/AgileGen/HEAD/prompts_templates/Code_generation_prompt.txt -------------------------------------------------------------------------------- /prompts_templates/Code_modification_based_on_test_cases_prompt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UGAIForge/AgileGen/HEAD/prompts_templates/Code_modification_based_on_test_cases_prompt.txt -------------------------------------------------------------------------------- /prompts_templates/Code_modification_prompt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UGAIForge/AgileGen/HEAD/prompts_templates/Code_modification_prompt.txt -------------------------------------------------------------------------------- /prompts_templates/Design_modification_prompt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UGAIForge/AgileGen/HEAD/prompts_templates/Design_modification_prompt.txt -------------------------------------------------------------------------------- /prompts_templates/Design_page_prompt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UGAIForge/AgileGen/HEAD/prompts_templates/Design_page_prompt.txt -------------------------------------------------------------------------------- /prompts_templates/Extract_Css.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UGAIForge/AgileGen/HEAD/prompts_templates/Extract_Css.json -------------------------------------------------------------------------------- /prompts_templates/Extract_Javascript.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UGAIForge/AgileGen/HEAD/prompts_templates/Extract_Javascript.json -------------------------------------------------------------------------------- /prompts_templates/Extract_html.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UGAIForge/AgileGen/HEAD/prompts_templates/Extract_html.json -------------------------------------------------------------------------------- /prompts_templates/Gherkin2NL_prompt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UGAIForge/AgileGen/HEAD/prompts_templates/Gherkin2NL_prompt.txt -------------------------------------------------------------------------------- /prompts_templates/Gherkin_merge_prompt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UGAIForge/AgileGen/HEAD/prompts_templates/Gherkin_merge_prompt.txt -------------------------------------------------------------------------------- /prompts_templates/Gherkin_prompt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UGAIForge/AgileGen/HEAD/prompts_templates/Gherkin_prompt.txt -------------------------------------------------------------------------------- /prompts_templates/Human_in_the_loop_prompt.txt: -------------------------------------------------------------------------------- 1 | Example of Feature-to-Scenarios Natural Language:[ 2 | {Replacement Flag} 3 | ] 4 | -------------------------------------------------------------------------------- /prompts_templates/NL2Gherkin_prompt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UGAIForge/AgileGen/HEAD/prompts_templates/NL2Gherkin_prompt.txt -------------------------------------------------------------------------------- /prompts_templates/Test_cases_generation_prompt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UGAIForge/AgileGen/HEAD/prompts_templates/Test_cases_generation_prompt.txt -------------------------------------------------------------------------------- /prompts_templates/Visual_design_prompt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UGAIForge/AgileGen/HEAD/prompts_templates/Visual_design_prompt.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UGAIForge/AgileGen/HEAD/requirements.txt -------------------------------------------------------------------------------- /static/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UGAIForge/AgileGen/HEAD/static/html/index.html -------------------------------------------------------------------------------- /static/html/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UGAIForge/AgileGen/HEAD/static/html/script.js -------------------------------------------------------------------------------- /static/html/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UGAIForge/AgileGen/HEAD/static/html/style.css -------------------------------------------------------------------------------- /static/img/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UGAIForge/AgileGen/HEAD/static/img/Icon.png -------------------------------------------------------------------------------- /static/img/Placeholder200.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UGAIForge/AgileGen/HEAD/static/img/Placeholder200.jpg -------------------------------------------------------------------------------- /static/img/Placeholder200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UGAIForge/AgileGen/HEAD/static/img/Placeholder200.png -------------------------------------------------------------------------------- /static/img/Placeholder600.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UGAIForge/AgileGen/HEAD/static/img/Placeholder600.jpg -------------------------------------------------------------------------------- /static/img/Placeholder600.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UGAIForge/AgileGen/HEAD/static/img/Placeholder600.png -------------------------------------------------------------------------------- /utils/CodeGeneration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UGAIForge/AgileGen/HEAD/utils/CodeGeneration.py -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /utils/__pycache__/CodeGeneration.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UGAIForge/AgileGen/HEAD/utils/__pycache__/CodeGeneration.cpython-39.pyc -------------------------------------------------------------------------------- /utils/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UGAIForge/AgileGen/HEAD/utils/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /utils/__pycache__/log.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UGAIForge/AgileGen/HEAD/utils/__pycache__/log.cpython-39.pyc -------------------------------------------------------------------------------- /utils/__pycache__/utils.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UGAIForge/AgileGen/HEAD/utils/__pycache__/utils.cpython-39.pyc -------------------------------------------------------------------------------- /utils/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UGAIForge/AgileGen/HEAD/utils/log.py -------------------------------------------------------------------------------- /utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UGAIForge/AgileGen/HEAD/utils/utils.py --------------------------------------------------------------------------------