AI-Agents-Orchestrator

(★ 83)

🪈 Intelligent orchestration system that coordinates multiple AI coding assistants (Claude, Codex, Gemini CLI, Copilot CLI) to collaborate on complex software development tasks via REPL or a Vue/Nuxt UI dashboard. Also includes an Agentic Team runtime with role-based multi-agent open communication & lead-gated final responses.

  • .dockerignore
  • .editorconfig
  • .env.example
  • .flake8
  • .gitattributes
  • .gitignore
  • .gitlab-ci.yml
  • .mcp.json
  • .pre-commit-config.yaml
  • .prettierignore
  • .worktreeinclude
  • ADD_AGENTS.md
  • AGENTIC_INFRA.md
  • AGENTIC_TEAM.md
  • AGENTS.md
  • ai-agentic-team
  • ai-agentic-team-wrapper
  • ai-orchestrator
  • ai-orchestrator-wrapper
  • ARCHITECTURE.md
  • coverage.xml
  • DEPLOYMENT.md
  • docker-compose.yml
  • Dockerfile
  • FEATURES.md
  • GRAPHIFY.md
  • index.html
  • Jenkinsfile
  • LICENSE
  • Makefile
  • MCP.md
  • OFFLINE_MODE.md
  • ORCHESTRATOR.md
  • package-lock.json
  • package.json
  • pyproject.toml
  • QUICKSTART.md
  • README.md
  • requirements.txt
  • SETUP.md
  • setup.py

# Installation Guide

1. Get the code
git clone https://github.com/hoangsonww/AI-Agents-Orchestrator

Downloads the entire project code from GitHub to your computer.

cd AI-Agents-Orchestrator

Moves into the project folder you just downloaded.

2. Docker

Easy Recommended
Prerequisites
  • Git Needed to download the project code from GitHub.
  • Docker Desktop Needed to build and run containers. Install it and keep it running in the background.
DOCK[Docker]

Type this command into your terminal and run it.

| | |-- devops/ # 3 skills (Docker, CI/CD, K8s)

Type this command into your terminal and run it.

|-- docker-compose.yml # Both UIs + monitoring stack

Runs the command against the services defined in the compose file.

subgraph Docker Compose

Runs the command against the services defined in the compose file.

docker compose up --build -d

Builds and starts all defined containers (server, database, etc.) at once, in the background.

Run docker compose ps to check the containers are Up. If the README mentions a port, open http://localhost:PORT in your browser.

Pulled directly from this repo's README.

3. Node.js

Easy
Prerequisites
  • Git Needed to download the project code from GitHub.
  • Node.js Node.js must be installed to use npm. The LTS version is recommended.
cd agentic_team/ui/frontend

This project's files live in a subfolder, so move into it first.

npm install

Downloads and installs the libraries listed in package.json.

npm start

Starts the development/run server.

After running the command, open the address shown in the terminal (usually something like http://localhost:3000) in your browser.

4. Python

Easy
Prerequisites
  • Git Needed to download the project code from GitHub.
  • Python 3 On Windows, be sure to check 'Add Python to PATH' during installation.
python3 -m venv venv

Runs the Python script (or module).

pip install -r requirements.txt

Installs the Python libraries listed in requirements.txt (or similar).

python -m mcp_server.server

Runs the Python script (or module).

python -m mcp_server.server --transport http --port 8000

Runs the Python script (or module).

python -m mcp_server repl

Runs the Python script (or module).

If it runs without errors and prints output in the terminal, it worked.

Pulled directly from this repo's README.

5. Make

Medium
Prerequisites
  • Git Needed to download the project code from GitHub.
  • Make Usually pre-installed on Linux/macOS. On Windows, install separately (e.g. via MSYS2 or WSL).
make run-ui

Compiles the code based on the generated build configuration to produce an executable.

make run-agentic-ui

Compiles the code based on the generated build configuration to produce an executable.

make test

Compiles the code based on the generated build configuration to produce an executable.

make test-orchestrator

Compiles the code based on the generated build configuration to produce an executable.

make test-agentic

Compiles the code based on the generated build configuration to produce an executable.

If it finishes without errors, it worked. Try running the generated executable directly.

Pulled directly from this repo's README.

// repository documentation