EveryDev.ai
Subscribe
Home
Tools

3,355+ 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. Open Multi-Agent
    Open Multi-Agent icon

    Open Multi-Agent

    Multi-agent Systems
    Featured

    Open-source TypeScript AI agent orchestration framework that turns a goal into a dynamic task DAG at runtime, running multi-agent teams in your own environment.

    Visit Website

    At a Glance

    Pricing
    Open Source

    Fully open-source MIT-licensed framework, free to use, modify, and distribute. No signup required.

    Engagement

    Available On

    Web
    API
    SDK
    CLI

    Resources

    WebsiteDocsGitHubllms.txt

    Topics

    Multi-agent SystemsAgent FrameworksLLM Orchestration

    Alternatives

    Agent SquadAgentScopeSuperAgentX
    Developer
    YuanASIShenzhen, ChinaEst. 2023

    Listed Aug 2026

    About Open Multi-Agent

    Open Multi-Agent (OMA) is a TypeScript-native, MIT-licensed AI agent orchestration framework built by 元定义科技 (YuanASI). It lets developers describe an outcome rather than hand-wire a task graph: a coordinator agent plans the directed acyclic graph (DAG) at runtime, assigns work across a team of agents, and executes it with a deterministic event-driven scheduler. The project launched on 2026-04-01 and, according to the repository, has accumulated over 6,700 GitHub stars and 2,400+ forks.

    What It Is

    Open Multi-Agent sits at the orchestration layer for TypeScript backend and AI platform teams that need several agents, dependencies, approvals, or recovery steps to work together. It is not a single-agent LLM toolkit and not a node-by-node graph authoring tool — it occupies the middle ground where the task graph should emerge from the goal at runtime. The core package (@open-multi-agent/core) ships the orchestration runtime, tools, memory, checkpoints, traces, a CLI, and an offline Run Viewer. An optional @open-multi-agent/otel package adds OpenTelemetry export for teams with centralized monitoring stacks.

    How the Runtime Works

    OMA exposes three primary execution modes:

    • runTeam() — provide a goal string; the coordinator plans the task DAG, assigns agents, and synthesizes results.
    • runTasks() — supply an explicit task graph and let OMA execute it with the same scheduler, governance, and observability.
    • runAgent() — run a single agent call within the OMA runtime.

    The event-driven scheduler removes round barriers: independent nodes run concurrently as soon as their dependencies are satisfied. Failed nodes are retried under task policy; budget exhaustion, malformed input, and non-retryable errors skip retries and surface FAILED state while independent branches continue. Token and cost budgets (maxTokenBudget, maxCostBudget) cap spending at turn and task boundaries.

    Governance and Observability

    OMA puts policy at the boundary it governs. Roles and review paths are declared per team; individual tool calls can be gated with onToolCall; plans can be previewed with planOnly before any agent executes; and approved plans can be frozen for replay. Every run produces execution receipts and traces. The offline Run Viewer replays the task DAG and span waterfall — including per-task status, assignee, token counts, and tool calls — without sending data to a hosted OMA service. The same records feed versioned EvalSets, offline reports, and CI quality gates.

    Model and Provider Support

    OMA supports cloud providers (OpenAI, Anthropic Claude, Google Gemini, DeepSeek), local endpoints via Ollama, OpenAI-compatible endpoints, natively integrated Chinese providers, and Vercel AI SDK providers. Tools are default-deny by design, and the core package has only three runtime dependencies. The framework can run fully offline or air-gapped on the developer's own credentials and infrastructure.

    Adoption and Ecosystem

    The repository lists several known users and integrations, attributed as vendor-published claims on the project homepage:

    • temodar-agent (xeloxa) — WordPress security analysis platform running OMA built-in tools inside Docker, described as confirmed production use.
    • PR-Copilot (kidoom) — AI pull-request review assistant using an OMA coordinator-plus-reviewer team with custom tools.
    • StuFlow (znc15) — Terminal AI coding assistant driving OMA's orchestration core with DeepSeek.
    • Engram — "Git for AI memory" integration syncing knowledge across agents.
    • @agentsonar/oma — Sidecar detecting cross-run delegation cycles and rate bursts.

    The project was featured in GithubAwesome's GitHub Trending Monthly #6, as noted on the homepage.

    Update: v1.14.0

    The latest release is v1.14.0, published 2026-08-01. The project launched 2026-04-01 under MIT and has been actively releasing since, with the repository showing 50 contributors and over 50 runnable examples across basics, cookbook workflows, patterns, providers, and integrations. The v1.13 runtime surface is documented as the current capabilities baseline, with v1.14.0 as the latest release tag.

    Open Multi-Agent - 1

    Community Discussions

    Be the first to start a conversation about Open Multi-Agent

    Share your experience with Open Multi-Agent, ask questions, or help others learn from your insights.

    Pricing

    OPEN SOURCE

    Open Source

    Fully open-source MIT-licensed framework, free to use, modify, and distribute. No signup required.

    • Full orchestration runtime (@open-multi-agent/core)
    • runTeam(), runTasks(), runAgent() execution modes
    • Offline Run Viewer
    • Shared memory (MemoryStore)
    • EvalSets and CI quality gates

    Capabilities

    Key Features

    • Goal-to-DAG dynamic orchestration via runTeam()
    • Explicit task graph execution via runTasks()
    • Single-agent execution via runAgent()
    • Event-driven scheduler with concurrent independent node execution
    • Coordinator agent plans task DAG at runtime
    • Default-deny tool policy with per-call gating
    • Token and cost budgets (maxTokenBudget, maxCostBudget)
    • Plan preview with planOnly before execution
    • Approved plan freeze and replay
    • Checkpoint and resume for interrupted runs
    • Adaptive recovery with append-only plan repair
    • Offline Run Viewer for task DAG and span waterfall replay
    • OpenTelemetry export via optional @open-multi-agent/otel package
    • EvalSets, scorers, offline reports, and CI quality gates
    • Shared memory (MemoryStore) across agents and runs
    • Multi-agent consensus verification
    • Execution receipts and stable run identity traces
    • Mixed-model teams (cloud + local in same run)
    • Local and air-gapped deployment support
    • MCP and external agent support (Claude Code, Gemini CLI, Codex via ACP)
    • Vercel AI SDK integration
    • Loop detection and retry/timeout policies
    • Model routing for cost optimization
    • 50+ runnable examples

    Integrations

    OpenAI
    Anthropic Claude
    Google Gemini
    DeepSeek
    Ollama
    Vercel AI SDK
    OpenTelemetry
    Claude Code
    Gemini CLI
    OpenAI Codex
    MCP (Model Context Protocol)
    Docker
    npm
    API Available
    View Docs

    Ratings & Reviews

    No ratings yet

    Be the first to rate Open Multi-Agent and help others make informed decisions.

    Developer

    YuanASI

    YuanASI builds open-source AI agent infrastructure for TypeScript backend teams. The company created and maintains Open Multi-Agent, a dynamic multi-agent orchestration framework under the MIT license. YuanASI offers commercial delivery, integration, and support services for teams embedding agent capabilities into production systems.

    Founded 2023
    Shenzhen, China

    Used by

    temodar-agent (WordPress Security…
    Read more about YuanASI
    WebsiteGitHub
    1 tool in directory

    Similar Tools

    Agent Squad icon

    Agent Squad

    Flexible, lightweight open-source framework for orchestrating multiple AI agents to handle complex conversations with intelligent intent classification and context management.

    AgentScope icon

    AgentScope

    A production-ready, open-source multi-agent framework for building, deploying, and fine-tuning LLM-powered agents with built-in MCP, A2A, voice, memory, and RL support.

    SuperAgentX icon

    SuperAgentX

    An open-source, modular agentic AI framework that enables AI agents to plan, act, and execute real-world workflows with built-in human approval, governance, and auditability.

    Browse all tools

    Related Topics

    Multi-agent Systems

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

    271 tools

    Agent Frameworks

    Tools and platforms for building and deploying custom AI agents.

    549 tools

    LLM Orchestration

    Platforms and frameworks for designing, managing, and deploying complex LLM workflows with visual interfaces, allowing for the coordination of multiple AI models and services.

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