EveryDev.ai
Subscribe
Home
Tools

3,419+ AI tools

  • New
  • Trending
  • Featured
  • Compare
  • Arena
Categories
  • Agents2189
  • Coding1574
  • Infrastructure698
  • Marketing534
  • Projects498
  • Research456
  • Design416
  • Analytics389
  • Testing296
  • MCP290
  • Security286
  • Data262
  • Integration197
  • Prompts189
  • Communication183
  • Extensions173
  • Learning170
  • Voice151
  • Commerce135
  • DevOps123
  • Web86
  • Finance26
AI Tools by Topic
  • AI Coding Assistants
  • Agent Frameworks
  • MCP Servers
  • AI Prompt Tools
  • Vibe Coding Tools
  • AI Design Tools
  • AI Database Tools
  • AI Website Builders
  • AI Testing Tools
  • LLM Evaluations
Follow Us
  • X / Twitter
  • LinkedIn
  • Reddit
  • Discord
  • Threads
  • Bluesky
  • Mastodon
  • YouTube
  • GitHub
  • Instagram
Get Started
  • About
  • Editorial Standards
  • Corrections & Disclosures
  • Community Guidelines
  • Advertise
  • Contact Us
  • Newsletter
  • Submit a Tool
  • Start a Discussion
  • Write A Blog
  • Share A Build
  • Terms of Service
  • Privacy Policy
Explore with AI
  • ChatGPT
  • Gemini
  • Claude
  • Grok
  • Perplexity
Agent Experience
  • llms.txt
Theme
With AI, Everyone is a Dev. EveryDev.ai © 2026
    1. Home
    2. Tools
    3. metaswarm
    metaswarm icon

    metaswarm

    Multi-agent Systems
    Featured

    A self-improving multi-agent orchestration framework for Claude Code, Gemini CLI, and Codex CLI that coordinates 18 specialized AI agents through the full software development lifecycle.

    Visit Website

    At a Glance

    Pricing
    Open Source

    Fully free and open-source under the MIT License. All features included.

    Engagement

    Available On

    Linux
    API
    CLI

    Resources

    WebsiteDocsGitHubllms.txt

    Topics

    Multi-agent SystemsAI Coding AssistantsAgent Frameworks

    Alternatives

    RepoMasterGolutraFusion
    Developer
    Dave SifrySan Francisco, CAEst. 1996$100M raised

    Listed Aug 2026

    About metaswarm

    metaswarm is an open-source, MIT-licensed multi-agent orchestration framework built by Dave Sifry (founder of Technorati, Linuxcare, and Warmstart, and former tech executive at Lyft and Reddit). It coordinates 18 specialized AI agents through a structured 11-phase software development lifecycle — from GitHub issue to merged PR — with TDD enforcement, parallel design review gates, and a self-improving knowledge base. The project is hosted on GitHub and installable as a plugin for Claude Code, Gemini CLI, or Codex CLI.

    What It Is

    metaswarm is a prompt-driven orchestration layer that sits on top of AI coding assistants. Rather than relying on a single agent session to handle research, planning, implementation, testing, PR creation, and review, metaswarm breaks the work into phases and assigns each to a specialist agent persona. The system is described by its author as "an extraction of a production-tested agentic orchestration system" proven across hundreds of autonomous PRs in a production multi-tenant SaaS codebase. All agent definitions are markdown files — readable, editable, and extensible — with no custom runtime or server required beyond Claude Code and the optional BEADS CLI.

    The 11-Phase Pipeline

    Every feature runs through a structured sequence managed by an Issue Orchestrator:

    • Research — A Researcher agent explores the codebase for patterns and dependencies
    • Plan — An Architect agent creates an implementation plan
    • Plan Validation — Three adversarial reviewers (Feasibility, Completeness, Scope & Alignment) must all approve
    • Design Review Gate — Six specialist agents (PM, Architect, Designer, Security, UX Reviewer, CTO) review in parallel; all must approve within three iterations or the system escalates to a human
    • Decompose — The plan is broken into work units with Definition of Done items and a dependency graph
    • External Dependency Check — Identifies required API keys and prompts the user
    • Orchestrated Execution — Each work unit runs through a 4-phase loop: Implement → Validate → Adversarial Review → Commit. Quality gates are blocking state transitions; there is no path from FAIL to COMMIT
    • Final Review — Cross-unit integration check and full test suite
    • PR Creation — Structured PR with description and test plan
    • PR Shepherd — Monitors CI, handles review comments, resolves threads
    • Close + Learn — Extracts learnings back into the JSONL knowledge base

    Trust Nothing, Verify Everything

    A core design principle is that the orchestrator never trusts subagent self-reports. When a coding agent reports "all tests pass," the orchestrator independently runs tsc, eslint, vitest, and coverage enforcement from .coverage-thresholds.json. Adversarial reviewers check each Definition of Done item with file:line evidence and return a binary PASS/FAIL. On failure, a fresh reviewer is spawned — never the same one — to avoid anchoring bias. Coverage enforcement is enforced at three levels: a Husky pre-push git hook, a GitHub Actions CI job, and an agent completion gate, all driven by a single config file.

    Cross-Model Adversarial Review

    metaswarm can delegate implementation and review tasks to OpenAI Codex CLI and Google Gemini CLI with one rule: the writer is always reviewed by a different model. If Claude writes the code, Codex or Gemini reviews it. Each external tool has a shell adapter with health checks and availability-aware escalation (Model A → Model B → Claude → user alert). Cross-model orchestration is opt-in and configured per-project via .metaswarm/external-tools.yaml.

    Self-Improving Knowledge Base

    After every merged PR, the self-reflect workflow analyzes what happened and writes structured JSONL entries covering patterns, gotchas, architectural decisions, and anti-patterns. The system also introspects Claude Code sessions for signals: repeated user corrections flag candidates for new skills, user disagreements capture preferred approaches, and repeated manual steps get flagged as workflow candidates. Agents use selective retrieval (bd prime) filtered by affected files, keywords, and work type — so the knowledge base can grow to thousands of entries without consuming context window.

    Update: v0.12.0 — /handoff Command & First-Class Codex Plugin Support

    The latest release, v0.12.0 (published June 2026), adds a /handoff command and first-class Codex CLI plugin support. The repository was created in February 2026 and has accumulated 370 stars and 52 forks as of its last update. The project is actively maintained, with the most recent push in June 2026. Installation is available via the Claude Code plugin marketplace, Gemini CLI extension system, Codex CLI plugin marketplace, or the cross-platform npx metaswarm init installer.

    metaswarm - 1

    Community Discussions

    Be the first to start a conversation about metaswarm

    Share your experience with metaswarm, ask questions, or help others learn from your insights.

    Pricing

    OPEN SOURCE

    Open Source

    Fully free and open-source under the MIT License. All features included.

    • 18 specialized agent personas
    • 13 orchestration skills
    • 15 slash commands
    • Cross-model adversarial review
    • Self-improving knowledge base

    Capabilities

    Key Features

    • 18 specialized agent personas (Researcher, Architect, Coder, Security Auditor, PR Shepherd, etc.)
    • 11-phase structured development lifecycle from issue to merged PR
    • 4-phase orchestrated execution loop: Implement → Validate → Adversarial Review → Commit
    • Parallel Design Review Gate with 6 specialist agents
    • Plan Review Gate with 3 adversarial reviewers
    • Cross-model adversarial review (Claude, Codex CLI, Gemini CLI)
    • Self-improving JSONL knowledge base with selective retrieval
    • TDD enforcement with configurable coverage thresholds
    • Pre-push git hook, CI coverage job, and agent completion gate
    • Recursive orchestration (swarm of swarms)
    • Visual review via Playwright screenshot capture
    • PR lifecycle automation (CI monitoring, comment handling, thread resolution)
    • 15 slash commands for Claude Code and Gemini CLI
    • 13 orchestration skills
    • 8 quality rubrics for code, architecture, security, and testing
    • Context recovery via BEADS task tracking
    • Human-in-the-loop checkpoints at planned review points
    • Team mode with persistent context across sessions
    • Auto-detection of language, framework, test runner, linter, and CI system
    • Supports TypeScript, Python, Go, Rust, Java, Ruby, and JavaScript

    Integrations

    Claude Code
    Gemini CLI
    OpenAI Codex CLI
    BEADS CLI
    GitHub CLI
    Playwright
    CodeRabbit
    Greptile
    Cursor BugBot
    Claude Code Review
    GTG (Good-To-Go)
    GitHub Actions
    Husky
    Superpowers
    API Available
    View Docs

    Ratings & Reviews

    No ratings yet

    Be the first to rate metaswarm and help others make informed decisions.

    Developer

    Dave Sifry

    Dave Sifry builds open-source AI developer tooling, most notably metaswarm — a self-improving multi-agent orchestration framework for Claude Code, Gemini CLI, and Codex CLI. He is the founder of Technorati, Linuxcare, and Warmstart, and a former tech executive at Lyft and Reddit. metaswarm was extracted from a production multi-tenant SaaS codebase where it has been writing production-level code with 100% test coverage and TDD across hundreds of autonomous PRs.

    Founded 1996
    San Francisco, CA
    $100M raised
    1 employees
    Read more about Dave Sifry
    WebsiteGitHubLinkedIn
    1 tool in directory

    Similar Tools

    RepoMaster icon

    RepoMaster

    An open-source AI agent that autonomously discovers, understands, and executes tasks using GitHub repositories, turning 100M+ open-source repos into an intelligent toolbox.

    Golutra icon

    Golutra

    Golutra is a multi-agent AI orchestration desktop platform that transforms existing CLI tools like Claude Code, Gemini CLI, and Codex into a unified parallel execution and automation workspace.

    Fusion icon

    Fusion

    An open-source multi-agent software factory that takes a plain-language task description and autonomously plans, builds, reviews, and ships production code across any device.

    Browse all tools

    Related Topics

    Multi-agent Systems

    Platforms for creating and managing teams of AI agents that can collaborate.

    295 tools

    AI Coding Assistants

    AI tools that help write, edit, and understand code with intelligent suggestions.

    711 tools

    Agent Frameworks

    Tools and platforms for building and deploying custom AI agents.

    577 tools
    Browse all topics
    Back to all toolsSuggest an edit
    ratings
    discussions