MultiAgent Coder is an AI-powered development assistant that can help you build projects by converting natural language requests into structured, working code. The assistant uses multiple agents to break down your requests and implement each part of the project.
- Planner Agent: Analyzes your request and generates a detailed project plan.
- Architect Agent: Breaks down the plan into specific engineering tasks and provides context for each file.
- Coder Agent: Implements each task, writes the code into respective files, and uses tools to support development.
-
Create a virtual environment:
uv venv
-
Activate the virtual environment:
source .venv/bin/activate -
Install the dependencies:
uv pip install -r pyproject.toml
-
Create a
.envfile and add the necessary variables and their values as specified in the.sample_envfile. -
Run the application:
python main.py
- Create a to-do list application using HTML, CSS, and JavaScript.
- Create a simple calculator web application.
- Create a simple blog API using FastAPI with an SQLite database.