EveryDev.ai
Subscribe
Home
Tools

3,697+ 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. Oh My Subagents
    Oh My Subagents icon

    Oh My Subagents

    Multi-agent Systems

    A local open-source runtime for persistent, supervised parent–subagent delegation that turns ad-hoc AI agent coordination into durable, accountable AI teams with Codex and Claude.

    Visit Website

    At a Glance

    Pricing
    Open Source

    Fully free and open-source under the MIT License. Self-hosted local runtime with all features included.

    Engagement

    Available On

    Windows
    macOS
    Linux
    Web
    API

    Resources

    WebsiteDocsGitHubllms.txt

    Topics

    Multi-agent SystemsAgent FrameworksLLM Orchestration

    Alternatives

    AGiXTOpen Multi-AgentCrewAI
    Developer
    ringlochidringlochid is the GitHub account of Yunan Zhang, creator of…

    Listed Aug 2026

    About Oh My Subagents

    Oh My Subagents (OMS) is an open-source Python runtime created by Yunan Zhang (GitHub: ringlochid) that brings durable, accountable coordination to multi-agent AI workflows. It targets developers and teams using OpenAI Codex or Anthropic Claude who need more than ad-hoc subagent delegation—specifically, persistent state, clear ownership, and honest recovery after interruptions. The project is available on PyPI under the MIT License (with the visual Console component under the Sustainable Use License).

    What It Is

    Oh My Subagents is a local runtime that manages parent–subagent delegation as committed controller state rather than ephemeral chat transcripts. When a Manager agent delegates a "Wave" of work, OMS commits the child Assignments, persists the parent wait, supervises every return, and continues the parent with complete Checkpoints—even after a terminal is closed or a provider session is interrupted. The result is a coordination layer that enforces one owner per Assignment, one stable Workflow revision per Task, and one accountable Result per run.

    How the Delegation Model Works

    The core abstraction is a Workflow definition—a published, versioned tree of named responsibilities. At runtime, Managers choose the execution pattern that fits the actual task and current evidence:

    • Sequential execution for dependent work
    • Parallel fan-out for independent work
    • Iterate through implement, review, and repair cycles
    • Divide bounded batches among reusable owners
    • Replan one responsibility subtree when the current team no longer fits

    Waves and their child Assignments commit together with the parent wait. Children return terminal Checkpoints independently; the controller collects the complete Wave and continues the parent. Managers can delegate recursively without a hidden global polling loop.

    Visual Console and Operator

    The primary user experience is a visual Console served locally at http://127.0.0.1:18125/. It includes:

    • Workflow Library — keeps reusable teams, drafts, and published revisions together
    • Workflow Studio — a horizontal canvas for shaping the full responsibility hierarchy, validating it, and publishing deliberately
    • Run Studio — shows the live team, current plans, meaningful Activity, Human Requests, managed Actions, referenced files, and the exact completed or blocked Result
    • Steering — delivers bounded new context to one exact active Member without fabricating earlier history

    A separate conversational Operator can draft and revise Workflows, publish on request, start and control Runs, answer Human Requests, and inspect managed Actions. Both the Console and Operator call the same controller-owned operations.

    Setup Path and Platform Support

    OMS requires Python 3.12 or newer and supports Linux, macOS 13+, and Windows 11 x64. Installation via pipx is recommended:

    pipx install oh-my-subagents
    oms init
    oms service install
    

    SQLite is the default database, so no external database server is needed. An optional PostgreSQL driver is available for teams that need it. The background service uses native OS mechanisms: systemd user service on Linux, a current-user LaunchAgent on macOS, and a current-user Scheduled Task on Windows. Users migrating from the predecessor project Banksia have a dedicated oms migrate-from-banksia command.

    Starter Workflows

    oms init publishes eight provider-neutral Starter Workflows covering common high-stakes missions:

    • production-feature-delivery — features crossing contracts, implementation, and release readiness
    • incident-investigation-and-recovery — competing hypotheses, recovery, and prevention
    • migration-and-modernisation — inventory, dependency-aware batches, and cutover
    • deep-research-and-decision-brief — independent evidence, claim verification, and one accountable recommendation
    • decision-through-competing-prototypes — alternatives tested under a fair rubric
    • idea-to-validated-demo — product idea to evidence-backed pitch
    • experiment-and-replication-program — explicit methods, durable execution, and claim audit
    • security-audit-and-hardening — attack-surface mapping, audits, and adversarial re-verification

    Update: v0.3.1

    The latest release is v0.3.1, published on 2026-08-22. The project was created in July 2026 and has been actively updated, with the last push on 2026-08-22. The repository notes a migration path from a predecessor project called Banksia, indicating a rename/relaunch lineage. GitHub topics include openclaw, signaling alignment with the OpenClaw ecosystem. The project had 94 stars and 3 forks as of the last recorded update.

    Oh My Subagents - 1

    Community Discussions

    Be the first to start a conversation about Oh My Subagents

    Share your experience with Oh My Subagents, ask questions, or help others learn from your insights.

    Pricing

    OPEN SOURCE

    Open Source

    Fully free and open-source under the MIT License. Self-hosted local runtime with all features included.

    • Full local runtime for parent–subagent delegation
    • Visual Console (Workflow Library, Workflow Studio, Run Studio)
    • Conversational Operator
    • Eight Starter Workflows
    • SQLite and optional PostgreSQL support

    Capabilities

    Key Features

    • Persistent parent–subagent delegation with durable runtime state
    • Visual Workflow Studio for designing responsibility hierarchies
    • Run Studio with live team view, Activity, Human Requests, and Results
    • Conversational Operator for drafting, publishing, and controlling Runs
    • Eight provider-neutral Starter Workflows included out of the box
    • Recursive Manager delegation without a global polling loop
    • Durable fan-out and fan-in via committed Wave and Assignment state
    • Honest recovery after terminal closure or provider interruption
    • Steering: deliver bounded context to one active Member mid-run
    • SQLite default with optional PostgreSQL support
    • Native background service on Linux (systemd), macOS (LaunchAgent), and Windows (Scheduled Task)
    • Migration path from predecessor Banksia project
    • Capabilities deny by default and never inherit from parent
    • Ordinary workspace files stay in place; OMS records navigation references only

    Integrations

    OpenAI Codex
    Anthropic Claude
    SQLite
    PostgreSQL
    pipx
    systemd (Linux)
    LaunchAgent (macOS)
    Scheduled Task (Windows)
    API Available
    View Docs

    Demo Video

    Oh My Subagents Demo Video
    Watch on YouTube

    Ratings & Reviews

    No ratings yet

    Be the first to rate Oh My Subagents and help others make informed decisions.

    Developer

    ringlochid

    ringlochid is the GitHub account of Yunan Zhang, creator of Oh My Subagents—an open-source local runtime for accountable, adaptable AI team coordination. The project focuses on turning ad-hoc subagent delegation into durable, supervised workflows using Codex and Claude. Development is active, with the project evolving from a predecessor called Banksia and aligning with the OpenClaw ecosystem.

    Read more about ringlochid
    WebsiteGitHub
    1 tool in directory

    Similar Tools

    AGiXT icon

    AGiXT

    AGiXT is an open-source AI Agent Automation Platform that orchestrates instruction management and complex task execution across diverse AI providers with adaptive memory and a plugin system.

    Open Multi-Agent icon

    Open Multi-Agent

    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.

    CrewAI icon

    CrewAI

    An open-source Python framework for orchestrating teams of autonomous, role-playing AI agents that collaborate to tackle complex tasks, with an enterprise management platform built on top.

    Browse all tools

    Related Topics

    Multi-agent Systems

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

    327 tools

    Agent Frameworks

    Tools and platforms for building and deploying custom AI agents.

    651 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.

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