Chat application with multi-agents system supports multi-models and MCP
# Add to your Claude Code skills
git clone https://github.com/saigontechnology/AgentCrewLast scanned: 5/30/2026
{
"issues": [],
"status": "PASSED",
"scannedAt": "2026-05-30T15:40:38.201Z",
"npmAuditRan": true,
"pipAuditRan": true
}AgentCrew is an open-source ai agents skill for AI coding assistants such as Claude Code, Codex CLI, and ChatGPT, built by saigontechnology. Chat application with multi-agents system supports multi-models and MCP. It has 210 GitHub stars.
Yes. AgentCrew passed SkillsLLM's automated security scan — a dependency vulnerability audit plus prompt-injection heuristics — with no high-severity issues. You can read the full report in the Security Report section on this page.
Clone the repository with "git clone https://github.com/saigontechnology/AgentCrew" and add it to your Claude Code skills directory (see the Installation section above).
AgentCrew is primarily written in Python. It is open-source under saigontechnology on GitHub, so you can review or fork the full source.
Yes. SkillsLLM lists many other AI Agents skills you can browse and compare side by side. Open the AI Agents category from the badge at the top of this page, or use the Related Skills and comparison links further down to weigh AgentCrew against similar tools.
No comments yet. Be the first to share your thoughts!
AgentCrew lets you build a team of specialists, each with the right tools and personality for the job.
Agents hand off work to each other when a task needs a different specialty. You stay in control, orchestrating the team from one interface.
When AgentCrew fits: You have a complex task that benefits from multiple perspectives — building a feature from design to deployment, researching and writing a report, or automating a multi-step workflow.
When a single assistant is enough: You need one focused conversation with no tool access or multi-agent orchestration.
macOS / Linux
curl -LsSf https://agentcrew.dev/install.sh | bash
Windows
powershell -ExecutionPolicy ByPass -c "irm https://agentcrew.dev/install.ps1 | iex"
pip (any platform)
pip install agentcrew-ai
Most tools need a paid API key. AgentCrew supports several options that don't require one:
Subscription-based (no API key needed):
# OpenCode Go — curated open-source models (GLM, Kimi, MiMo, Qwen)
agentcrew chat --provider opencode_go
# ChatGPT Plus / Pro (uses Codex models)
agentcrew chatgpt-auth
agentcrew chat --provider openai_codex
# GitHub Copilot subscribers
agentcrew copilot-auth
agentcrew chat --provider github_copilot
Pay-as-you-go API keys:
export CROFAI_API_KEY="your-key" # CrofAI — OpenAI-compatible, budget-friendly
export DEEPINFRA_API_KEY="your-key" # DeepInfra — open models (LLaMA, Qwen, etc.)
export OPENAI_API_KEY="sk-proj-..." # OpenAI GPT-4o
export GEMINI_API_KEY="AIza..." # Google Gemini — free tier available
Or store keys in ~/.AgentCrew/config.json:
{
"api_keys": {
"CROFAI_API_KEY": "your-key",
"OPENAI_API_KEY": "sk-proj-..."
}
}
All supported providers:
| Provider | Cost profile | Best for |
|---|---|---|
| OpenCode Go | Subscription-based | Curated open-source models, no API key |
| CrofAI | Pay-as-you-go, low cost | General tasks, OpenAI-compatible |
| Command Code | Subscription-based | Frontier models via subscription |
| DeepInfra | Pay-as-you-go, low cost | Open models (LLaMA, Qwen, etc.) |
| Together AI | Pay-as-you-go | Open models, fine-tuning |
| Fireworks | Pay-as-you-go | Fast open model inference |
| OpenAI | Per-token pricing | GPT-4o, broad ecosystem |
| Anthropic | Per-token pricing | Claude family |
| Google Gemini | Free tier available | Budget-friendly, strong reasoning |
| GitHub Copilot | Included with subscription | Coding-focused, no extra cost |
| ChatGPT Codex | Included with Plus/Pro sub | No extra cost for subscribers |
| Custom | Free (local) | Fully offline (Ollama, llama.cpp...) |
Which provider should I pick?
If you... Pick this Want curated open-source models OpenCode Go — subscription-based Want low-cost, open-source friendly CrofAI or DeepInfra Have a Command Code subscription Command Code Have ChatGPT Plus / Pro openai_codex— no extra costHave GitHub Copilot github_copilot— no extra costWant a free tier to start Google Gemini Need fully offline / air-gapped Custom (Ollama, llama.cpp, etc.)
# Desktop GUI (default)
agentcrew chat
# Terminal mode — great for SSH, tmux, low-resource environments
agentcrew chat --console
On the first launch, AgentCrew walks you through creating your first agent.
agentcrew create-agent
Or define one manually in ~/.AgentCrew/agents.toml:
[[agents]]
name = "CodeAssistant"
description = "Helps write and review code"
tools = ["code_analysis", "file_editing", "web_search", "memory"]
system_prompt = """You are an expert software engineer.
Focus on code quality, security, and maintainability.
Today is {current_date}."""
> /agent Architect
> Design a clean API for a task manager.
>
> @Coding Implement the task manager in Python using FastAPI.
>
> @Reviewer Review the code for security issues.
The @AgentName syntax hands off a subtask to another agent. The receiving
agent picks up with full context and its own specialized tools and instructions.
| Mode | Command | Best for |
|---|---|---|
| Desktop GUI | agentcrew chat |
Daily work, drag-and-drop files, visual diffs |
| Terminal | agentcrew chat --console |
Remote servers, keyboard-first workflows |
| One-shot jobs | agentcrew job --agent "Name" "task" ./files |
CI/CD, batch processing, automation |
| HTTP API | agentcrew a2a-server |
Integrate with other apps, multi-instance agent networks |
Job mode example:
agentcrew job --agent "CodeAssistant" \
"Review for security issues" \
./src/**/*.py
A2A server example:
agentcrew a2a-server --host 0.0.0.0 --port 41241
| Tool | What it does | When to enable it |
|---|---|---|
code_analysis |
Read files, grep, analyze repo structure | Any agent working with code |
file_editing |
Write/modify files (search-replace blocks, backups) | Coding and documentation agents |
web_search |
Search the web via Tavily | Research and fact-checking agents |
fetch_webpage |
Extract content from a URL | Research agents |
browser |
Full browser automation (navigate, click, form fill) | QA, web scraping, form-filling agents |
command_execution |
Run shell commands (rate limits, audit logs) | DevOps, code execution agents |
memory |
Store and retrieve conversation context | Almost every agent |
clipboard |
Read/write system clipboard | Agents that interact with other apps |
adaptive_learning |
Learn behavioral patterns from interactions | Agents that should adapt over time |
voice |
Speak and listen (ElevenLabs or DeepInfra) | Voice-interactive agents |
| MCP tools | External tools via Model Context Protocol | Any agent needing external integrations |
transfer |
Hand off tasks to other agents |