AI Skill Hub 推荐使用:AI智能协调系统 是一款优质的MCP工具。AI 综合评分 7.5 分,在同类工具中表现稳健。如果你正在寻找可靠的MCP工具解决方案,这是一个值得深入了解的选择。
AI智能协调系统 是一款遵循 MCP(Model Context Protocol)标准协议的 AI 工具扩展。通过 MCP 协议,它可以让 Claude、Cursor 等主流 AI 客户端直接访问和操作外部工具、数据源和服务,实现 AI 能力的无缝扩展。无论是文件操作、数据库查询还是 API 调用,都可以通过自然语言在 AI 对话中直接触发,极大提升生产效率。
AI智能协调系统 是一款遵循 MCP(Model Context Protocol)标准协议的 AI 工具扩展。通过 MCP 协议,它可以让 Claude、Cursor 等主流 AI 客户端直接访问和操作外部工具、数据源和服务,实现 AI 能力的无缝扩展。无论是文件操作、数据库查询还是 API 调用,都可以通过自然语言在 AI 对话中直接触发,极大提升生产效率。
# 方式一:通过 Claude Code CLI 一键安装
claude skill install https://github.com/hoangsonww/AI-Agents-Orchestrator
# 方式二:手动配置 claude_desktop_config.json
{
"mcpServers": {
"ai------": {
"command": "npx",
"args": ["-y", "ai-agents-orchestrator"]
}
}
}
# 配置文件位置
# macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
# Windows: %APPDATA%/Claude/claude_desktop_config.json
# 安装后在 Claude 对话中直接使用 # 示例: 用户: 请帮我用 AI智能协调系统 执行以下任务... Claude: [自动调用 AI智能协调系统 MCP 工具处理请求] # 查看可用工具列表 # 在 Claude 中输入:"列出所有可用的 MCP 工具"
// claude_desktop_config.json 配置示例
{
"mcpServers": {
"ai______": {
"command": "npx",
"args": ["-y", "ai-agents-orchestrator"],
"env": {
// "API_KEY": "your-api-key-here"
}
}
}
}
// 保存后重启 Claude Desktop 生效
Five independent systems — an AI Orchestrator, an Agentic Team runtime, an MCP Server, a Context Dashboard, and Graphify (project-to-graph intelligence engine) — that coordinate cloud and local AI coding assistants (Claude, Codex, Gemini, Copilot, Ollama, llama.cpp) to collaborate on software development tasks. Includes enterprise-grade agentic infrastructure with specialized agents, skills library, 34+ MCP tools, project-scoped graph-based context memory, and Graphify's 22-language code analysis with persistent queryable knowledge graphs, interactive visualization, and REST API.
Overview | Architecture | Agentic Infrastructure | System Comparison | Features | Quick Start | Project Structure | Configuration | Deployment | Testing | MCP Server
</div>
---
AI Coding Tools ships five independent systems in a single repository:
Beyond the core engines, we provide a complete Agentic Infrastructure that empowers AI agents:
[!TIP] Quickstart with the Orchestrator for structured workflows, or the Agentic Team for open-ended collaboration. Both systems benefit from the shared agentic infrastructure and context memory. See QUICKSTART.md for quick setup instructions to get started in ~2 minutes. Or, see #quick-start below for a detailed walkthrough.
claude in terminal and it works, you're good)codex and see if it responds)gemini --version to verify)copilot --version to verify)ollama list or llamacpp --help to verify)git clone https://github.com/hoangsonww/AI-Agents-Orchestrator.git
cd AI-Agents-Orchestrator
python3 -m venv venv
source venv/bin/activate # Windows: venv\Scripts\activate
pip install -r requirements.txt
chmod +x ai-orchestrator
./ai-orchestrator --help # Show all commands
./ai-orchestrator agents # List available agents
./ai-orchestrator workflows # List available workflows
./ai-orchestrator validate # Validate configuration
Both systems are packaged in a single multi-stage Docker image. The docker-compose.yml runs each as a separate service.
```bash
Some screenshots of the Web UIs and CLI interfaces:
<p align="center"> <img src="docs/images/ui.png" alt="Orchestrator Web UI" width="100%"/> <br/> <em>Orchestrator Web UI — real-time task execution dashboard with agent status and workflow controls</em> </p>
<p align="center"> <img src="docs/images/agentic-team.png" alt="Agentic Team Web UI" width="100%"/> <br/> <em>Agentic Team Web UI — role-based multi-agent collaboration with live communication view</em> </p>
<p align="center"> <img src="docs/images/graph.png" alt="Context Graph Dashboard" width="100%"/> <br/> <em>Context Graph Dashboard — interactive knowledge graph visualization with node inspection and hybrid search</em> </p>
<p align="center"> <img src="docs/images/cli.png" alt="Orchestrator CLI" width="100%"/> <br/> <em>Orchestrator CLI — command-line interface for task execution and agent management</em> </p>
<p align="center"> <img src="docs/images/cli-3.png" alt="Agentic Shell REPL" width="100%"/> <br/> <em>Agentic Shell REPL — interactive shell for direct agent communication and debugging</em> </p>
<p align="center"> <img src="docs/images/mcp.png" alt="MCP Tools REPL" width="100%"/> <br/> <em>MCP Tools REPL — interactive console for exploring and testing 34+ MCP tools across both engines</em> </p>
| File | Purpose |
|---|---|
.claude/CLAUDE.md | Main instructions for Claude Code — imports AGENTS.md and sets project context |
.claude/settings.json | Claude project settings (permissions, model preferences) |
.codex/config.toml | Codex project configuration |
.codex/agents/*.toml | Codex agent role definitions with system prompts |
AGENTS.md | Shared instructions read by all AI coding agents (Codex, Gemini CLI, etc.) |
AGENTIC_INFRA.md | Full documentation of the agentic infrastructure |
./ai-orchestrator agentic-shell --max-turns 16 --offline
Both systems read their configuration from their own orchestrator/config/agents.yaml file. The files follow the same schema but are independent.
Both systems are optionally exposed via a FastMCP server (mcp_server/, port 8000), letting any MCP-compatible client (Claude Desktop, other LLM agents, or custom Python scripts) drive task execution programmatically.
```bash
The Orchestrator processes tasks through a configurable pipeline of AI agents. Each step in a workflow maps to a specific agent and role.
| Workflow | Pipeline | Use Case |
|---|---|---|
default | Codex --> Gemini --> Claude | Production-quality code with full review |
quick | Codex only | Fast prototyping |
thorough | Codex --> Copilot --> Gemini --> Claude --> Gemini | Mission-critical code |
review-only | Gemini --> Claude | Analyzing existing code |
document | Claude --> Gemini | Documentation generation |
offline-default | local-code --> local-instruct | Local-only, no cloud dependency |
hybrid | local-code --> Claude (fallback: local-instruct) | Local drafts with cloud review |
make test-integration
python -m mcp_server.server
The two systems serve different collaboration models. Choose based on your use case.
| Dimension | Orchestrator (orchestrator/) | Agentic Team (agentic_team/) |
|---|---|---|
| **Collaboration model** | Step-based pipeline (sequential) | Free role-to-role communication (turns) |
| **Agent identity** | Tool names (codex, gemini, claude) | Roles (PM, Architect, Developer, QA, DevOps) |
| **Control flow** | Dynamic metrics-based planner or workflow YAML step order | Team lead (PM) gates completion dynamically |
| **When to use** | Dynamic planning, or repeatable pipelines: implement, review, refine | Open-ended tasks needing discussion and consensus |
| **CLI entry point** | ai-orchestrator shell | ai-orchestrator agentic-shell |
| **Web UI port** | :5001 | :5002 |
| **Config file** | orchestrator/config/agents.yaml | agentic_team/config/agents.yaml |
| **Built-in workflows** | Dynamic planner (metrics-based routing), plus 7 static (default, quick, thorough, review-only, document, offline-default, hybrid) | N/A (turn-based, no fixed pipeline) |
| **Fallback strategy** | Per-step cloud-to-local routing | Independent fallback manager |
| **Observability** | Prometheus metrics, structured logging, health probes, report generation | Health and readiness probes |
| **Security module** | Input validation, rate limiting, audit logging | N/A (inherits from adapter layer) |
| **Shared code** | None | None |
本项目是一个 AI 编码工具的orchestrator和agentic team runtime,包含五个独立的系统,包括orchestrator和agentic team。orchestrator负责管理基于步骤的工作流程,AI 代理执行任务;agentic team负责管理基于角色的代理,代理讨论任务直到团队领导宣布任务完成。
本项目的功能包括orchestrator和agentic team两个独立的系统。orchestrator负责管理基于步骤的工作流程,AI 代理执行任务;agentic team负责管理基于角色的代理,代理讨论任务直到团队领导宣布任务完成。
本项目需要以下环境依赖和系统要求:Linux、macOS或Windows(WSL推荐)、Python 3.8或更高版本、Node.js 20或更高版本(用于Web UI)、4GB RAM或更高、1GB磁盘空间或更高、网络连接。
安装步骤:克隆项目代码,激活虚拟环境,安装依赖项,设置orchestrator配置文件,设置agentic team配置文件,设置claude配置文件,设置codex配置文件。
使用教程:使用orchestrator CLI工具,使用agentic team CLI工具,使用claude CLI工具,使用codex CLI工具。
配置说明:orchestrator配置文件,agentic team配置文件,claude配置文件,codex配置文件,环境变量,关键参数。
工作流/模块说明:orchestrator工作流,agentic team工作流,claude工作流,codex工作流,工作流管道,工作流角色,工作流步骤,工作流配置文件,工作流参数,工作流依赖项。
该工具提供了智能协调多个AI编程助手的功能,提高了开发效率和质量,但仍需要进一步优化和测试。
AI Skill Hub 为第三方内容聚合平台,本页面信息基于公开数据整理,不对工具功能和质量作任何法律背书。
建议在沙箱或测试环境中充分验证后,再部署至生产环境,并做好必要的安全评估。
✅ MIT 协议 — 最宽松的开源协议之一,可自由商用、修改、分发,仅需保留版权声明。
总体来看,AI智能协调系统 是一款质量良好的MCP工具,在同类工具中具备一定竞争力。AI Skill Hub 将持续追踪其更新动态,建议收藏备用,结合自身场景选择合适时机引入使用。
| 原始名称 | AI-Agents-Orchestrator |
| 原始描述 | 开源MCP工具:🪈 Intelligent orchestration system that coordinates multiple AI coding assistan。⭐61 · Python |
| Topics | mcpagentic-aiai-agentsclaudecodexcopilotpython |
| GitHub | https://github.com/hoangsonww/AI-Agents-Orchestrator |
| License | MIT |
| 语言 | Python |
收录时间:2026-06-06 · 更新时间:2026-06-06 · License:MIT · AI Skill Hub 不对第三方内容的准确性作法律背书。
选择 Agent 类型,复制安装指令后粘贴到对应客户端