├── .env.example ├── .requirements_old.txt ├── LICENSE ├── README.md ├── Showcase ├── Agent Mode New commands.PNG ├── Agent Showcase.png ├── First Implementation Chat With Ai.png ├── MCP Showcase 2.PNG ├── MCP Showcase.PNG ├── Main Menu Showcase.PNG ├── Second Agent.PNG ├── Second Implementation Chat With Ai.PNG ├── Simple Showcase Video.mp4 └── VerbalCodeShowcase.gif ├── app.py ├── mcp_server.py ├── mcp_server_http.py ├── mods ├── __init__.py ├── banners.py ├── code │ ├── __init__.py │ ├── agent_mode.py │ ├── decisions.py │ ├── directory.py │ ├── embed.py │ ├── indexer.py │ ├── instructions.py │ ├── memory.py │ ├── prompt_enhancer.py │ ├── storage.py │ ├── terminal.py │ └── tools.py ├── http_api.py ├── llms.py ├── terminal_ui.py └── terminal_utils.py ├── requirements.txt ├── setup_linux.sh └── setup_windows.bat /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibheksoni/VerbalCodeAi/HEAD/.env.example -------------------------------------------------------------------------------- /.requirements_old.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibheksoni/VerbalCodeAi/HEAD/.requirements_old.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibheksoni/VerbalCodeAi/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibheksoni/VerbalCodeAi/HEAD/README.md -------------------------------------------------------------------------------- /Showcase/Agent Mode New commands.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibheksoni/VerbalCodeAi/HEAD/Showcase/Agent Mode New commands.PNG -------------------------------------------------------------------------------- /Showcase/Agent Showcase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibheksoni/VerbalCodeAi/HEAD/Showcase/Agent Showcase.png -------------------------------------------------------------------------------- /Showcase/First Implementation Chat With Ai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibheksoni/VerbalCodeAi/HEAD/Showcase/First Implementation Chat With Ai.png -------------------------------------------------------------------------------- /Showcase/MCP Showcase 2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibheksoni/VerbalCodeAi/HEAD/Showcase/MCP Showcase 2.PNG -------------------------------------------------------------------------------- /Showcase/MCP Showcase.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibheksoni/VerbalCodeAi/HEAD/Showcase/MCP Showcase.PNG -------------------------------------------------------------------------------- /Showcase/Main Menu Showcase.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibheksoni/VerbalCodeAi/HEAD/Showcase/Main Menu Showcase.PNG -------------------------------------------------------------------------------- /Showcase/Second Agent.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibheksoni/VerbalCodeAi/HEAD/Showcase/Second Agent.PNG -------------------------------------------------------------------------------- /Showcase/Second Implementation Chat With Ai.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibheksoni/VerbalCodeAi/HEAD/Showcase/Second Implementation Chat With Ai.PNG -------------------------------------------------------------------------------- /Showcase/Simple Showcase Video.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibheksoni/VerbalCodeAi/HEAD/Showcase/Simple Showcase Video.mp4 -------------------------------------------------------------------------------- /Showcase/VerbalCodeShowcase.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibheksoni/VerbalCodeAi/HEAD/Showcase/VerbalCodeShowcase.gif -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibheksoni/VerbalCodeAi/HEAD/app.py -------------------------------------------------------------------------------- /mcp_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibheksoni/VerbalCodeAi/HEAD/mcp_server.py -------------------------------------------------------------------------------- /mcp_server_http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibheksoni/VerbalCodeAi/HEAD/mcp_server_http.py -------------------------------------------------------------------------------- /mods/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibheksoni/VerbalCodeAi/HEAD/mods/__init__.py -------------------------------------------------------------------------------- /mods/banners.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibheksoni/VerbalCodeAi/HEAD/mods/banners.py -------------------------------------------------------------------------------- /mods/code/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibheksoni/VerbalCodeAi/HEAD/mods/code/__init__.py -------------------------------------------------------------------------------- /mods/code/agent_mode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibheksoni/VerbalCodeAi/HEAD/mods/code/agent_mode.py -------------------------------------------------------------------------------- /mods/code/decisions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibheksoni/VerbalCodeAi/HEAD/mods/code/decisions.py -------------------------------------------------------------------------------- /mods/code/directory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibheksoni/VerbalCodeAi/HEAD/mods/code/directory.py -------------------------------------------------------------------------------- /mods/code/embed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibheksoni/VerbalCodeAi/HEAD/mods/code/embed.py -------------------------------------------------------------------------------- /mods/code/indexer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibheksoni/VerbalCodeAi/HEAD/mods/code/indexer.py -------------------------------------------------------------------------------- /mods/code/instructions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibheksoni/VerbalCodeAi/HEAD/mods/code/instructions.py -------------------------------------------------------------------------------- /mods/code/memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibheksoni/VerbalCodeAi/HEAD/mods/code/memory.py -------------------------------------------------------------------------------- /mods/code/prompt_enhancer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibheksoni/VerbalCodeAi/HEAD/mods/code/prompt_enhancer.py -------------------------------------------------------------------------------- /mods/code/storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibheksoni/VerbalCodeAi/HEAD/mods/code/storage.py -------------------------------------------------------------------------------- /mods/code/terminal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibheksoni/VerbalCodeAi/HEAD/mods/code/terminal.py -------------------------------------------------------------------------------- /mods/code/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibheksoni/VerbalCodeAi/HEAD/mods/code/tools.py -------------------------------------------------------------------------------- /mods/http_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibheksoni/VerbalCodeAi/HEAD/mods/http_api.py -------------------------------------------------------------------------------- /mods/llms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibheksoni/VerbalCodeAi/HEAD/mods/llms.py -------------------------------------------------------------------------------- /mods/terminal_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibheksoni/VerbalCodeAi/HEAD/mods/terminal_ui.py -------------------------------------------------------------------------------- /mods/terminal_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibheksoni/VerbalCodeAi/HEAD/mods/terminal_utils.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibheksoni/VerbalCodeAi/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup_linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibheksoni/VerbalCodeAi/HEAD/setup_linux.sh -------------------------------------------------------------------------------- /setup_windows.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibheksoni/VerbalCodeAi/HEAD/setup_windows.bat --------------------------------------------------------------------------------