by desplega-ai
Agent Swarm framework for AI coding agents and more!
# Add to your Claude Code skills
git clone https://github.com/desplega-ai/agent-swarm<p align="center"> <img src="assets/agent-swarm.png" alt="Agent Swarm" width="800"> </p>Built by desplega.sh — build by builders for builders!
https://github.com/user-attachments/assets/bd308567-d21e-44a5-87ec-d25aeb1de3d3
<p align="center"> <a href="https://agent-swarm.dev"> <img src="https://img.shields.io/badge/Website-agent--swarm.dev-000?style=for-the-badge" alt="Website"> </a> <a href="https://docs.agent-swarm.dev"> <img src="https://img.shields.io/badge/Docs-docs.agent--swarm.dev-amber?style=for-the-badge" alt="Docs"> </a> <a href="https://app.agent-swarm.dev"> <img src="https://img.shields.io/badge/Dashboard-app.agent--swarm.dev-blue?style=for-the-badge" alt="Dashboard"> </a> <a href="https://discord.gg/KZgfyyDVZa"> <img src="https://img.shields.io/badge/Discord-Join%20Community-5865F2?style=for-the-badge&logo=discord&logoColor=white" alt="Join Discord"> </a> </p>Multi-agent orchestration for Claude Code, Codex, Gemini CLI, and other AI coding assistants.
Agent Swarm lets you run a team of AI coding agents that coordinate autonomously. A lead agent receives tasks (from you, Slack, or GitHub), breaks them down, and delegates to worker agents running in Docker containers. Workers execute tasks, report progress, and ship code — all without manual intervention.
No comments yet. Be the first to share your thoughts!
claude setup-token)The fastest way to get a full swarm running — API server, lead agent, and 2 workers.
git clone https://github.com/desplega-ai/agent-swarm.git
cd agent-swarm
# Configure environment
cp .env.docker.example .env
# Edit .env — set API_KEY and CLAUDE_CODE_OAUTH_TOKEN at minimum
# Start everything
docker compose -f docker-compose.example.yml --env-file .env up -d
The API runs on port 3013. The dashboard is available separately (see Dashboard).
Run the API locally and connect Docker w...