freshcrate
Home > Frameworks > agent-swarm

agent-swarm

Agent Swarm framework for AI coding agents and more!

Description

Agent Swarm framework for AI coding agents and more!

README

GitHub StarsMIT LicensePRs WelcomeDiscordDocs Multi-agent orchestration for Claude Code, Codex, Gemini CLI, and other AI coding assistants.
Built by
desplega.sh β€” by builders, for builders.

agent-swarm.mp4

β–Έ daily evolution Β· slack β†’ pr Β· Making of

Website Docs Dashboard Join Discord Follow on XWhat if your AI agents remembered everything, learned from every mistake, and got better with every task?

Agent Swarm runs a team of AI coding agents that coordinate autonomously. A lead agent receives tasks β€” from Slack, GitHub, GitLab, email, or the API β€” breaks them down, and delegates to worker agents running in Docker containers. Workers execute tasks, ship code, and write their learnings back to a shared memory so the whole swarm gets smarter every session.

Learn more in the architecture overview.

flowchart LR
    subgraph IN["Tasks come in"]
        direction TB
        S["Slack"]
        G["GitHub / GitLab"]
        E["Email"]
        A["API / CLI"]
    end

    LEAD(["Lead Agent<br/>plans &amp; delegates"])

    subgraph WORKERS["Workers in Docker"]
        direction TB
        W1["Worker"]
        W2["Worker"]
        W3["Worker"]
    end

    subgraph BRAIN["Persistent brain"]
        direction TB
        MEM["Memory<br/>(vector search)"]
        ID["Identity<br/>(SOUL, CLAUDE.md)"]
    end

    subgraph OUT["Work ships"]
        direction TB
        PR["Pull Requests"]
        REPLY["Slack replies"]
        EMAIL["Email replies"]
    end

    IN --> LEAD --> WORKERS
    WORKERS -->|reads context| BRAIN
    WORKERS -->|writes learnings| BRAIN
    WORKERS --> OUT
Loading

Highlights

  • Lead/worker orchestration in Docker β€” isolated dev environments, priority queues, pause/resume across deploys. Architecture β†’
  • Compounding memory & persistent identity β€” agents remember past sessions and evolve their own persona, expertise, and notes. Memory β†’ Β· Agents β†’
  • Multi-channel inputs β€” Slack, GitHub, GitLab, email, Linear, and the HTTP API all create tasks. Integrations
  • Workflow engine with Human-in-the-Loop β€” DAG-based automation with approval gates, retries, and structured I/O. Workflows β†’
  • Scheduled & recurring tasks β€” cron-based automation for standing work. Scheduling β†’
  • Multi-provider β€” run with Claude Code, OpenAI Codex, or pi-mono. Harness config β†’
  • Skills & MCP servers β€” reusable procedural knowledge and per-agent MCP servers with scope cascade. MCP tools β†’
  • Real-time dashboard β€” monitor agents, tasks, and inter-agent chat. app.agent-swarm.dev β†’

Quick Start

Prerequisites: Docker and a Claude Code OAuth token (claude setup-token).

The fastest way is the onboarding wizard β€” it collects credentials, picks presets, and generates a working docker-compose.yml:

bunx @desplega.ai/agent-swarm onboard

Prefer manual setup? Clone and run with Docker Compose:

git clone https://github.com/desplega-ai/agent-swarm.git
cd agent-swarm
cp .env.docker.example .env
# edit .env β€” set API_KEY and CLAUDE_CODE_OAUTH_TOKEN
docker compose -f docker-compose.example.yml --env-file .env up -d

The API runs on port 3013, with interactive docs at http://localhost:3013/docs and an OpenAPI 3.1 spec at http://localhost:3013/openapi.json.

Other setups
  • Local API + Docker workers β€” run the API on your host, workers in Docker. See Getting Started.
  • Claude Code as the lead agent β€” bunx @desplega.ai/agent-swarm connect, then tell Claude Code to register as the lead.

How It Works

You (Slack / GitHub / Email / CLI)
        |
   Lead Agent  ←→  MCP API Server  ←→  SQLite DB
        |
   β”Œβ”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”
Worker  Worker  Worker
(Docker containers with full dev environments)
  1. A task arrives via Slack DM, GitHub @mention, email, or the API.
  2. The lead plans and delegates subtasks to workers.
  3. Workers execute in isolated Docker containers (git, Node.js, Python, etc.).
  4. Progress streams to the dashboard, Slack threads, or the API.
  5. Results ship back out as PRs, issue replies, or Slack messages.
  6. Session learnings are extracted and become memory for future tasks.

More detail in the task lifecycle docs.

Integrations

Integration What it does Setup
Slack DM or @mention the bot to create tasks; workers reply in threads Guide
GitHub App @mention or assign the bot on issues/PRs; CI failures create follow-up tasks Guide
GitLab Same model as GitHub β€” webhooks on issues/MRs, glab preinstalled in workers Guide
AgentMail Give each agent an inbox; emails become tasks or lead messages Guide
Linear Bidirectional ticket sync via OAuth + webhooks Guide
Sentry Workers can triage Sentry issues with the /investigate-sentry-issue command Guide

Dashboard

Real-time monitoring of agents, tasks, and inter-agent chat. Use the hosted version at app.agent-swarm.dev, or run locally:

cd new-ui && pnpm install && pnpm run dev

Opens at http://localhost:5274.

bunx @desplega.ai/agent-swarm <command>
Command Description
onboard Set up a new swarm from scratch (Docker Compose wizard)
connect Connect this project to an existing swarm
api Start the API + MCP HTTP server
worker Run a worker agent
lead Run a lead agent
docs Open documentation (--open to launch in browser)

Deployment

For production deployments (Docker Compose with multiple workers, systemd for the API, graceful shutdown, integration config), see DEPLOYMENT.md and the deployment guide.

Documentation

Everything lives at docs.agent-swarm.dev. Good starting points:

Contributing

We love contributions! Whether it's bug reports, feature requests, docs improvements, or code β€” all are welcome.

See CONTRIBUTING.md to get started. The quickest way to contribute:

  1. Fork the repo
  2. Create a branch (git checkout -b my-feature)
  3. Make your changes
  4. Open a PR

Join our Discord if you have questions or want to discuss ideas.

Star History

Star History Chart

License

MIT β€” 2025-2026 desplega.sh

Release History

VersionChangesUrgencyDate
v1.67.4## Install & Run **npm:** ```bash npx @desplega.ai/agent-swarm@1.67.4 # or install globally npm i -g @desplega.ai/agent-swarm@1.67.4 ``` **bun:** ```bash bunx @desplega.ai/agent-swarm@1.67.4 # or install globally bun i -g @desplega.ai/agent-swarm@1.67.4 ``` **Docker:** ```bash # Server docker pull ghcr.io/desplega-ai/agent-swarm:1.67.4 # Worker docker pull ghcr.io/desplega-ai/agent-swarm-worker:1.67.4 ``` --- ## What's Changed * fix(slack): skip thread follow-ups that mention other users (High4/21/2026
v1.67.3## Install & Run **npm:** ```bash npx @desplega.ai/agent-swarm@1.67.3 # or install globally npm i -g @desplega.ai/agent-swarm@1.67.3 ``` **bun:** ```bash bunx @desplega.ai/agent-swarm@1.67.3 # or install globally bun i -g @desplega.ai/agent-swarm@1.67.3 ``` **Docker:** ```bash # Server docker pull ghcr.io/desplega-ai/agent-swarm:1.67.3 # Worker docker pull ghcr.io/desplega-ai/agent-swarm-worker:1.67.3 ``` --- ## What's Changed * seo: add keywords to home, examples, x402 pages (2026-04-20) High4/21/2026
v1.67.2## Install & Run **npm:** ```bash npx @desplega.ai/agent-swarm@1.67.2 # or install globally npm i -g @desplega.ai/agent-swarm@1.67.2 ``` **bun:** ```bash bunx @desplega.ai/agent-swarm@1.67.2 # or install globally bun i -g @desplega.ai/agent-swarm@1.67.2 ``` **Docker:** ```bash # Server docker pull ghcr.io/desplega-ai/agent-swarm:1.67.2 # Worker docker pull ghcr.io/desplega-ai/agent-swarm-worker:1.67.2 ``` --- ## What's Changed * docs: daily update 2026-04-17 by @desplega-bot in https://gitHigh4/17/2026
v1.67.1## Install & Run **npm:** ```bash npx @desplega.ai/agent-swarm@1.67.1 # or install globally npm i -g @desplega.ai/agent-swarm@1.67.1 ``` **bun:** ```bash bunx @desplega.ai/agent-swarm@1.67.1 # or install globally bun i -g @desplega.ai/agent-swarm@1.67.1 ``` **Docker:** ```bash # Server docker pull ghcr.io/desplega-ai/agent-swarm:1.67.1 # Worker docker pull ghcr.io/desplega-ai/agent-swarm-worker:1.67.1 ``` --- ## What's Changed * docs: daily update 2026-04-16 by @desplega-bot in https://gitHigh4/16/2026
v1.67.0## Install & Run **npm:** ```bash npx @desplega.ai/agent-swarm@1.67.0 # or install globally npm i -g @desplega.ai/agent-swarm@1.67.0 ``` **bun:** ```bash bunx @desplega.ai/agent-swarm@1.67.0 # or install globally bun i -g @desplega.ai/agent-swarm@1.67.0 ``` **Docker:** ```bash # Server docker pull ghcr.io/desplega-ai/agent-swarm:1.67.0 # Worker docker pull ghcr.io/desplega-ai/agent-swarm-worker:1.67.0 ``` --- ## What's Changed * feat(new-ui): add shared CollapsibleSection component by @desHigh4/15/2026
v1.66.1## Install & Run **npm:** ```bash npx @desplega.ai/agent-swarm@1.66.1 # or install globally npm i -g @desplega.ai/agent-swarm@1.66.1 ``` **bun:** ```bash bunx @desplega.ai/agent-swarm@1.66.1 # or install globally bun i -g @desplega.ai/agent-swarm@1.66.1 ``` **Docker:** ```bash # Server docker pull ghcr.io/desplega-ai/agent-swarm:1.66.1 # Worker docker pull ghcr.io/desplega-ai/agent-swarm-worker:1.66.1 ``` --- ## What's Changed * docs: daily update 2026-04-14 by @desplega-bot in https://gitHigh4/14/2026
v1.66.0## Install & Run **npm:** ```bash npx @desplega.ai/agent-swarm@1.66.0 # or install globally npm i -g @desplega.ai/agent-swarm@1.66.0 ``` **bun:** ```bash bunx @desplega.ai/agent-swarm@1.66.0 # or install globally bun i -g @desplega.ai/agent-swarm@1.66.0 ``` **Docker:** ```bash # Server docker pull ghcr.io/desplega-ai/agent-swarm:1.66.0 # Worker docker pull ghcr.io/desplega-ai/agent-swarm-worker:1.66.0 ``` --- ## What's Changed * docs: daily update 2026-04-12 by @desplega-bot in https://gitHigh4/13/2026
v1.65.0## Install & Run **npm:** ```bash npx @desplega.ai/agent-swarm@1.65.0 # or install globally npm i -g @desplega.ai/agent-swarm@1.65.0 ``` **bun:** ```bash bunx @desplega.ai/agent-swarm@1.65.0 # or install globally bun i -g @desplega.ai/agent-swarm@1.65.0 ``` **Docker:** ```bash # Server docker pull ghcr.io/desplega-ai/agent-swarm:1.65.0 # Worker docker pull ghcr.io/desplega-ai/agent-swarm-worker:1.65.0 ``` --- ## What's Changed * docs: daily update 2026-04-11 by @desplega-bot in https://gitMedium4/12/2026
v1.64.1## Install & Run **npm:** ```bash npx @desplega.ai/agent-swarm@1.64.1 # or install globally npm i -g @desplega.ai/agent-swarm@1.64.1 ``` **bun:** ```bash bunx @desplega.ai/agent-swarm@1.64.1 # or install globally bun i -g @desplega.ai/agent-swarm@1.64.1 ``` **Docker:** ```bash # Server docker pull ghcr.io/desplega-ai/agent-swarm:1.64.1 # Worker docker pull ghcr.io/desplega-ai/agent-swarm-worker:1.64.1 ``` --- **Full Changelog**: https://github.com/desplega-ai/agent-swarm/compare/v1.64.0...High4/10/2026
v1.64.0## Install & Run **npm:** ```bash npx @desplega.ai/agent-swarm@1.64.0 # or install globally npm i -g @desplega.ai/agent-swarm@1.64.0 ``` **bun:** ```bash bunx @desplega.ai/agent-swarm@1.64.0 # or install globally bun i -g @desplega.ai/agent-swarm@1.64.0 ``` **Docker:** ```bash # Server docker pull ghcr.io/desplega-ai/agent-swarm:1.64.0 # Worker docker pull ghcr.io/desplega-ai/agent-swarm-worker:1.64.0 ``` --- **Full Changelog**: https://github.com/desplega-ai/agent-swarm/compare/v1.63.1...Medium4/10/2026
v1.63.1## Install & Run **npm:** ```bash npx @desplega.ai/agent-swarm@1.63.1 # or install globally npm i -g @desplega.ai/agent-swarm@1.63.1 ``` **bun:** ```bash bunx @desplega.ai/agent-swarm@1.63.1 # or install globally bun i -g @desplega.ai/agent-swarm@1.63.1 ``` **Docker:** ```bash # Server docker pull ghcr.io/desplega-ai/agent-swarm:1.63.1 # Worker docker pull ghcr.io/desplega-ai/agent-swarm-worker:1.63.1 ``` --- ## What's Changed * fix(workflows): mustPass validation failure cancels only the Medium4/10/2026
v1.63.0## Install & Run **npm:** ```bash npx @desplega.ai/agent-swarm@1.63.0 # or install globally npm i -g @desplega.ai/agent-swarm@1.63.0 ``` **bun:** ```bash bunx @desplega.ai/agent-swarm@1.63.0 # or install globally bun i -g @desplega.ai/agent-swarm@1.63.0 ``` **Docker:** ```bash # Server docker pull ghcr.io/desplega-ai/agent-swarm:1.63.0 # Worker docker pull ghcr.io/desplega-ai/agent-swarm-worker:1.63.0 ``` --- ## What's Changed * fix: handle array format envConfigKeys in MCP server resolutiMedium4/9/2026
v1.62.0## Install & Run **npm:** ```bash npx @desplega.ai/agent-swarm@1.62.0 # or install globally npm i -g @desplega.ai/agent-swarm@1.62.0 ``` **bun:** ```bash bunx @desplega.ai/agent-swarm@1.62.0 # or install globally bun i -g @desplega.ai/agent-swarm@1.62.0 ``` **Docker:** ```bash # Server docker pull ghcr.io/desplega-ai/agent-swarm:1.62.0 # Worker docker pull ghcr.io/desplega-ai/agent-swarm-worker:1.62.0 ``` --- ## What's Changed * docs: daily update 2026-04-09 by @desplega-bot in https://gitMedium4/9/2026
v1.61.0## Install & Run **npm:** ```bash npx @desplega.ai/agent-swarm@1.61.0 # or install globally npm i -g @desplega.ai/agent-swarm@1.61.0 ``` **bun:** ```bash bunx @desplega.ai/agent-swarm@1.61.0 # or install globally bun i -g @desplega.ai/agent-swarm@1.61.0 ``` **Docker:** ```bash # Server docker pull ghcr.io/desplega-ai/agent-swarm:1.61.0 # Worker docker pull ghcr.io/desplega-ai/agent-swarm-worker:1.61.0 ``` --- ## What's Changed * feat(slack): message deduplication + tree-based status messagHigh4/9/2026
v1.60.0## Install & Run **npm:** ```bash npx @desplega.ai/agent-swarm@1.60.0 # or install globally npm i -g @desplega.ai/agent-swarm@1.60.0 ``` **bun:** ```bash bunx @desplega.ai/agent-swarm@1.60.0 # or install globally bun i -g @desplega.ai/agent-swarm@1.60.0 ``` **Docker:** ```bash # Server docker pull ghcr.io/desplega-ai/agent-swarm:1.60.0 # Worker docker pull ghcr.io/desplega-ai/agent-swarm-worker:1.60.0 ``` --- ## What's Changed * docs: daily update 2026-04-08 by @desplega-bot in https://gitMedium4/8/2026
v1.59.3## Install & Run **npm:** ```bash npx @desplega.ai/agent-swarm@1.59.3 # or install globally npm i -g @desplega.ai/agent-swarm@1.59.3 ``` **bun:** ```bash bunx @desplega.ai/agent-swarm@1.59.3 # or install globally bun i -g @desplega.ai/agent-swarm@1.59.3 ``` **Docker:** ```bash # Server docker pull ghcr.io/desplega-ai/agent-swarm:1.59.3 # Worker docker pull ghcr.io/desplega-ai/agent-swarm-worker:1.59.3 ``` --- ## What's Changed * docs: daily update 2026-04-07 by @desplega-bot in https://gitMedium4/7/2026
v1.59.2## Install & Run **npm:** ```bash npx @desplega.ai/agent-swarm@1.59.2 # or install globally npm i -g @desplega.ai/agent-swarm@1.59.2 ``` **bun:** ```bash bunx @desplega.ai/agent-swarm@1.59.2 # or install globally bun i -g @desplega.ai/agent-swarm@1.59.2 ``` **Docker:** ```bash # Server docker pull ghcr.io/desplega-ai/agent-swarm:1.59.2 # Worker docker pull ghcr.io/desplega-ai/agent-swarm-worker:1.59.2 ``` --- ## What's Changed * feat(ui): fix repos edit modal and add detail page by @tarasyMedium4/6/2026
v1.59.0## What's Changed * feat: user identity follow-up (tests, prompts, skill) by @desplega-bot in https://github.com/desplega-ai/agent-swarm/pull/292 * feat: add UX Principles Agent template (DES-47) by @desplega-bot in https://github.com/desplega-ai/agent-swarm/pull/288 * fix: aggressive reboot sweep + boot triage for heartbeat by @tarasyarema in https://github.com/desplega-ai/agent-swarm/pull/293 * feat: per-repo guidelines (PR checks, merge policy, review guidance) by @tarasyarema in https://githMedium4/4/2026
v1.57.5## What's Changed * fix(workflows): parse JSON stdout from script nodes for interpolation by @desplega-bot in https://github.com/desplega-ai/agent-swarm/pull/279 * fix: add min-length validation for SOUL.md/IDENTITY.md hook sync by @desplega-bot in https://github.com/desplega-ai/agent-swarm/pull/278 **Full Changelog**: https://github.com/desplega-ai/agent-swarm/compare/v1.57.4...v1.57.5 ## Docker Images This release is available as Docker images with the following tags: **Server:** - `ghcr.iMedium4/2/2026
v1.57.0**Full Changelog**: https://github.com/desplega-ai/agent-swarm/compare/v1.56.6...v1.57.0 ## Docker Images This release is available as Docker images with the following tags: **Server:** - `ghcr.io/desplega-ai/agent-swarm:1.57.0` - `ghcr.io/desplega-ai/agent-swarm:latest` **Worker:** - `ghcr.io/desplega-ai/agent-swarm-worker:1.57.0` - `ghcr.io/desplega-ai/agent-swarm-worker:latest` Images are also tagged with the git commit SHA (`sha-<commit>`). Medium3/31/2026
v1.56.3## What's Changed * fix: allow maxTasks > 20 in get-swarm output schema (DES-20) by @desplega-bot in https://github.com/desplega-ai/agent-swarm/pull/269 **Full Changelog**: https://github.com/desplega-ai/agent-swarm/compare/v1.56.2...v1.56.3 ## Docker Images This release is available as Docker images with the following tags: **Server:** - `ghcr.io/desplega-ai/agent-swarm:1.56.3` - `ghcr.io/desplega-ai/agent-swarm:latest` **Worker:** - `ghcr.io/desplega-ai/agent-swarm-worker:1.56.3` - `ghcr.Medium3/30/2026
v1.55.0## What's Changed * Fix task details prompt expansion overflow by @desplega-bot in https://github.com/desplega-ai/agent-swarm/pull/258 * docs: daily update 2026-03-27 by @desplega-bot in https://github.com/desplega-ai/agent-swarm/pull/259 * seo: daily improvements 2026-03-27 by @desplega-bot in https://github.com/desplega-ai/agent-swarm/pull/260 * feat(workflows): support per-node timeoutMs in config by @desplega-bot in https://github.com/desplega-ai/agent-swarm/pull/261 * fix(raw-llm): disable Medium3/29/2026
v1.54.1## What's Changed * Add jq to API server Dockerfile by @desplega-bot in https://github.com/desplega-ai/agent-swarm/pull/254 * fix: HITL executor port-based routing for rejected/timeout by @desplega-bot in https://github.com/desplega-ai/agent-swarm/pull/253 * fix: workflow engine loop support (idempotency key collision) by @desplega-bot in https://github.com/desplega-ai/agent-swarm/pull/255 * feat: stalled task auto-remediation and lead startup self-check (DES-19) by @desplega-bot in https://githMedium3/27/2026
v1.53.0## What's Changed * fix: wire up Linear OAuth token auto-refresh by @desplega-bot in https://github.com/desplega-ai/agent-swarm/pull/244 * feat: add configurable DB seeding script (DES-11) by @desplega-bot in https://github.com/desplega-ai/agent-swarm/pull/245 * feat: generic events table for tool/skill/session tracking by @tarasyarema in https://github.com/desplega-ai/agent-swarm/pull/246 * Add context window usage tracking per task by @tarasyarema in https://github.com/desplega-ai/agent-swarm/Medium3/26/2026
v1.52.0## What's Changed * docs: daily update 2026-03-24 by @desplega-bot in https://github.com/desplega-ai/agent-swarm/pull/227 * Research: Human-in-the-Loop workflow node design by @desplega-bot in https://github.com/desplega-ai/agent-swarm/pull/228 * seo: improve indexing setup for agent-swarm.dev by @desplega-bot in https://github.com/desplega-ai/agent-swarm/pull/231 * fix: prevent runner crash when repo clone fails by @desplega-bot in https://github.com/desplega-ai/agent-swarm/pull/232 * feat: skiMedium3/25/2026
v1.51.2**Full Changelog**: https://github.com/desplega-ai/agent-swarm/compare/v1.51.1...v1.51.2 ## Docker Images This release is available as Docker images with the following tags: **Server:** - `ghcr.io/desplega-ai/agent-swarm:1.51.2` - `ghcr.io/desplega-ai/agent-swarm:latest` **Worker:** - `ghcr.io/desplega-ai/agent-swarm-worker:1.51.2` - `ghcr.io/desplega-ai/agent-swarm-worker:latest` Images are also tagged with the git commit SHA (`sha-<commit>`). Medium3/24/2026
v1.50.0## What's Changed * docs: daily update 2026-03-21 by @desplega-bot in https://github.com/desplega-ai/agent-swarm/pull/209 * docs: daily update 2026-03-21 by @desplega-bot in https://github.com/desplega-ai/agent-swarm/pull/210 * feat: Prompt template registry UI and API by @tarasyarema in https://github.com/desplega-ai/agent-swarm/pull/208 * feat: schedule→workflow triggering and workflow-level workspace by @tarasyarema in https://github.com/desplega-ai/agent-swarm/pull/219 **Full Changelog**: Low3/22/2026
v1.49.0## What's Changed * docs: daily update 2026-03-20 by @desplega-bot in https://github.com/desplega-ai/agent-swarm/pull/203 * seo: add inbound links to new linear-integration docs page by @desplega-bot in https://github.com/desplega-ai/agent-swarm/pull/204 * feat: workflow I/O schemas, data flow mapping, and engine bug fixes by @tarasyarema in https://github.com/desplega-ai/agent-swarm/pull/201 * docs: add fumadocs LLMs and OpenAPI integrations by @desplega-bot in https://github.com/desplega-ai/agLow3/21/2026
v1.47.0## What's Changed * docs: daily update 2026-03-19 by @desplega-bot in https://github.com/desplega-ai/agent-swarm/pull/197 * docs: daily update 2026-03-19 by @desplega-bot in https://github.com/desplega-ai/agent-swarm/pull/198 * Workflow Engine Redesign by @tarasyarema in https://github.com/desplega-ai/agent-swarm/pull/196 * feat: ticket tracker integration β€” Linear first provider by @desplega-bot in https://github.com/desplega-ai/agent-swarm/pull/161 * fix: make runner prompt generation providerLow3/20/2026
v1.45.1## What's Changed * docs: daily update 2026-03-17 by @desplega-bot in https://github.com/desplega-ai/agent-swarm/pull/187 * feat: multi-API config for dashboard by @tarasyarema in https://github.com/desplega-ai/agent-swarm/pull/188 * Add optional Slack metadata params to send-task by @desplega-bot in https://github.com/desplega-ai/agent-swarm/pull/190 * docs: daily update 2026-03-18 by @desplega-bot in https://github.com/desplega-ai/agent-swarm/pull/193 * seo: daily improvements 2026-03-18 by @dLow3/19/2026
v1.44.5## What's Changed * feat: add lastActivityAt timestamp to agents for stall detection by @desplega-bot in https://github.com/desplega-ai/agent-swarm/pull/105 * docs: daily update 2026-02-28 by @desplega-bot in https://github.com/desplega-ai/agent-swarm/pull/107 * feat: add x402 payment capability for agents by @desplega-bot in https://github.com/desplega-ai/agent-swarm/pull/108 * Add /examples/x402 session transcript page by @desplega-bot in https://github.com/desplega-ai/agent-swarm/pull/109 * ALow3/17/2026
v0.1.0## What's New First official release of agent-swarm β€” multi-agent orchestration for AI coding agents. ### Key Features - Lead/worker architecture with persistent identity (SOUL.md, IDENTITY.md) - Compounding memory system (SQLite + embeddings) - Task delegation, dependencies, and epics - Multi-channel task ingestion (Slack, GitHub, email via AgentMail) - Docker-isolated agent containers - MCP server for tool integration - Works with Claude Code, Codex, and Gemini CLI ### Getting Started ```baLow2/27/2026

Dependencies & License Audit

Loading dependencies...

Similar Packages

outputThe open-source TypeScript framework for building AI workflows and agents. Designed for Claude Code describe what you want, Claude builds it, with all the best practices already in place.v0.1.12
trace-mcpMCP server for Claude Code and Codex. One tool call replaces ~42 minutes of agent explorationv1.28.0
@claude-flow/cliRuflo CLI - Enterprise AI agent orchestration with 60+ specialized agents, swarm coordination, MCP server, self-learning hooks, and vector memory for Claude Code3.5.80
MeowKitProduction ready. AI Agent Workflow System for Claude Codev2.6.0
better-notion-mcpMarkdown-first MCP server for Notion API - composite tools optimized for AI agentsv2.28.5