32 AI Agents, One Terminal: How oh-my-claudecode Turns Claude Code Into a Dev Team

oh-my-claudecode adds 32 specialized AI agents and parallel execution to Claude Code. Here's how it turns solo coding into a team.

Data & IT Infrastructure
32 AI Agents, One Terminal: How oh-my-claudecode Turns Claude Code Into a Dev Team

Claude Code Is Powerful. It Is Also a Single Thread.

Claude AI Logo

Claude Code has become one of the most consequential developer tools of 2026. Recent analysis attributes 4% of all GitHub commits to Claude Code, and Anthropic's $30 billion Series G raise at a $380 billion valuation signals the scale of investment in agentic coding. The tool is genuinely good at writing, debugging, and refactoring code from a terminal.

The project is available on GitHub under the MIT license. Created by Nicholas Park, it has rapidly gained traction in the Claude Code community by solving a fundamental scaling problem: a single Claude Code instance is limited in what it can accomplish simultaneously.

https://x.com/nicholascpark/status/2036528224541286758

But out of the box, Claude Code operates as a single agent handling a single task at a time. You describe what you want, it works through the problem sequentially, and you wait. For simple tasks, this is fine. For complex projects involving architecture decisions, implementation across multiple files, testing, security review, and documentation, the serial workflow becomes a bottleneck.

oh-my-claudecode (OMC) exists to solve this problem. It is an open-source plugin framework that transforms Claude Code from a single agent into a coordinated team of 32 specialized agents, with parallel execution, skill learning, and structured pipelines, all running in your terminal.

What oh-my-claudecode Actually Is

OMC is a Claude Code plugin created by Yeachan Heo. It integrates via Claude Code's lifecycle hook system, intercepting and extending the agent's behavior with 31 hooks that add multi-agent orchestration, specialized roles, execution modes, and persistent learning.

The project has grown rapidly: 13,400+ GitHub stars, 877 forks, 203 releases (with v4.9.1 shipping on March 24, 2026), and over 2,000 commits. It is MIT-licensed and free to use on top of any Claude Code subscription.

The core proposition is zero-configuration. Install the plugin, and you immediately get access to specialized agents, team workflows, and parallel execution without writing orchestration code or configuring complex multi-agent frameworks.

The 32 Agents

OMC defines 32 specialized agents, tiered by the Claude model they use:

Agent Type

Specialization

Typical Tasks

Architect

System design

Plan structure, define interfaces, create specs

Frontend

UI/UX code

React components, CSS, responsive design

Backend

Server code

APIs, database queries, business logic

Tester

Quality assurance

Unit tests, integration tests, E2E tests

Reviewer

Code review

Find bugs, suggest improvements, check style

DevOps

Infrastructure

Docker, CI/CD, deployment scripts

https://x.com/tom_doerr/status/2036472822118359256

High-Tier Agents (Opus)

  • architect-high: System design, architecture decisions, technology selection

  • scientist-high: Data science, ML pipeline design, statistical analysis

Medium-Tier Agents (Sonnet)

  • executor: Core implementation, writing and modifying code

  • designer: UI/UX implementation, frontend work

  • qa-tester: Test writing, test execution, coverage analysis

  • security-reviewer: Security audits, vulnerability scanning, dependency checks

Low-Tier Agents (Haiku)

  • Fast utility agents for linting, formatting, simple refactoring, and boilerplate generation

The tiering is practical: expensive Opus tokens go to high-reasoning tasks (architecture, complex analysis), while cheaper Haiku tokens handle routine operations. OMC claims 30-50% token savings from this intelligent routing compared to running everything on a single model tier.

Execution Modes

OMC provides multiple ways to orchestrate these agents depending on the complexity of your task:

Team Mode (Canonical Pipeline)

The structured pipeline for feature development:

  1. Plan: Architect agent analyzes requirements and designs the approach

  2. PRD: Produces a detailed product requirements document

  3. Execute: Implementation agents write the code

  4. Verify: QA agents run tests and check for issues

  5. Fix: Any failures are automatically addressed

This mirrors how a well-run engineering team operates: design first, then implement, then verify, then fix. The difference is that the entire pipeline runs in your terminal in minutes rather than days.

Ultrapilot Mode

For maximum throughput, Ultrapilot mode spawns multiple tmux workers that execute tasks in parallel. OMC claims 3-5x faster execution on parallelizable workloads (like implementing multiple independent features, running tests across modules, or refactoring a codebase).

Up to 5 concurrent workers can operate simultaneously, each handling a different subtask while a coordinator agent manages dependencies and merges results.

omc team (Tmux-Spawned Teams)

This mode creates a full tmux session with multiple panes, each running a different specialized agent. You can visually monitor all agents working simultaneously, intervene in any pane, and let the others continue. It is the closest analog to watching an actual team work in parallel.

Single Agent Mode

For simpler tasks, you can invoke any specific agent directly. Need just a security review? Call the security-reviewer. Need architecture feedback without implementation? Call the architect.

The Hook System

What makes OMC technically interesting is how it integrates with Claude Code. Rather than wrapping Claude Code in an external orchestration layer, OMC uses Claude Code's lifecycle hook system to inject behavior at specific points in the execution cycle.

The 31 hooks handle:

  • Autopilot: Automated execution without manual confirmation steps

  • Team pipeline: Orchestrating multi-agent workflows

  • Rules injection: Dynamically injecting context and constraints into agent prompts

  • Learner: Persisting lessons and patterns from completed tasks for future reference

  • Model routing: Directing tasks to the appropriate model tier

This hook-based architecture means OMC does not replace Claude Code; it extends it. Updates to Claude Code itself (new features, improved models, expanded context windows) automatically benefit OMC users.

The Skills System

Beyond agents, OMC includes 28+ skills: reusable patterns and procedures that agents can invoke. Skills cover common workflows like:

# Install oh-my-claudecode
git clone https://github.com/nicholascpark/oh-my-claudecode
cd oh-my-claudecode
npm install

# Run with a multi-agent team
claude skill add ./oh-my-claudecode
claude "Build a REST API with authentication, tests, and Docker deployment"
# The orchestrator assigns tasks to specialized agents automatically

For email productivity applications like Maylee, the multi-agent pattern is particularly relevant. An email client involves frontend components (inbox UI, compose window), backend services (IMAP/SMTP handling, search indexing), and infrastructure (caching, queueing, background jobs). Having specialized agents handle each domain in parallel dramatically accelerates development compared to a single generalist agent switching between contexts.

https://x.com/axiaisacat/status/2037349200069886330

oh-my-claudecode documentation includes templates for common team configurations and step-by-step guides for setting up custom agent specializations.

  • Setting up project scaffolding

  • Writing test suites for existing code

  • Performing code reviews against style guides

  • Generating API documentation

  • Running migration scripts

The learner hook enables OMC to acquire new skills from completed tasks. If you guide OMC through a novel workflow, it can persist the pattern as a new skill for future use. This means the system becomes more capable over time, adapting to your team's specific practices and preferences.

Real-World Workflow: Building a Feature

To illustrate how OMC changes the development experience, consider building a new API endpoint with authentication, database queries, tests, and documentation:

Without OMC (vanilla Claude Code):

  1. Describe the feature to Claude Code

  2. Wait for it to write the implementation sequentially

  3. Ask it to write tests

  4. Ask it to review for security issues

  5. Ask it to write documentation

  6. Total: 5 sequential interactions, each waiting on the previous

With OMC (Team Mode):

  1. Invoke omc team "Build authenticated /users endpoint with CRUD operations"

  2. Architect agent designs the API schema and database model

  3. Executor agent implements the endpoint while QA agent prepares test stubs

  4. Security-reviewer agent audits the authentication logic

  5. All agents converge: tests run, issues are fixed, documentation is generated

  6. Total: 1 invocation, parallel execution, structured output

The claimed 3-5x speedup comes from parallelism (multiple agents working simultaneously) combined with specialization (each agent is prompted for its specific role rather than context-switching between design, implementation, and testing).

What the Numbers Say

OMC's claims are based on the project's own benchmarks rather than independent verification:

  • 3-5x faster parallel execution on suitable workloads (Ultrapilot mode)

  • 30-50% token savings via model-tier routing

  • Up to 5 concurrent workers in parallel execution modes

  • 32 agents, 31 hooks, 28+ skills

  • 13,400+ stars, 877 forks, 203 releases

Independent benchmarks would strengthen these claims, but the rapid adoption (13.4k stars in a few months) and active release cadence (203 releases, latest March 24, 2026) suggest the tool delivers meaningful productivity improvements for its users.

Cost Considerations

OMC itself is free and open source. The cost comes from Claude Code subscriptions:

  • Pro ($20/month): Works with OMC but limited by Sonnet-class models and usage caps.

  • Max ($100-200/month): Full access to Opus-tier agents, higher usage limits, and the parallel execution modes that benefit most from OMC.

For solo developers on Pro, OMC still provides useful structure (team pipelines, specialized agent prompts, skill learning). For teams or heavy users on Max, the parallel execution and model routing deliver the full value proposition.

The 30-50% token savings from intelligent routing partially offsets the increased token consumption from running multiple agents. Whether OMC saves or costs more depends on your usage pattern: if you are already hitting your Max-tier limits on sequential work, OMC's efficiency may let you accomplish more within the same budget.

Where OMC Fits in the Ecosystem

OMC is not the only project extending Claude Code. The ecosystem includes:

  • TechDufus/oh-my-claude: Focused on "ultrawork" prompts for individual productivity

  • wshobson/agents: Team orchestration with a different architectural approach

  • Claude Code's native Agent Teams: Anthropic's own experimental multi-agent feature (v4.1.7+)

  • oh-my-opencode: An analogous project for OpenCode (non-Claude AI coding tools)

OMC differentiates with the combination of breadth (32 agents), zero-configuration setup, tmux-based parallelism, and the learner system. It is also the most popular by stars, suggesting the most active community and fastest iteration cycle.

Broader Implications

The success of OMC reflects a broader trend: AI coding tools are evolving from "assistant that helps you write code" to "team that builds software." The single-agent, single-task paradigm is giving way to multi-agent orchestration where specialized models handle architecture, implementation, testing, security, and documentation in parallel.

This has implications beyond coding. The same multi-agent orchestration pattern applies anywhere AI handles complex workflows with multiple distinct subtasks. Maylee's approach to email, for instance, orchestrates multiple AI capabilities (classification, style learning, draft generation, confidence scoring) in a similar pipeline architecture, turning what would be a serial human workflow into parallel AI operations that produce ready-to-send drafts overnight.

For developers evaluating OMC, the practical question is straightforward: if you are already using Claude Code and find yourself waiting for sequential tasks to complete, OMC can parallelize that workflow. The zero-configuration installation removes the barrier to trying it, and the MIT license means there is no financial risk beyond your existing Claude subscription.

oh-my-claudecode: Frequently Asked Questions

What is oh-my-claudecode?+

oh-my-claudecode (OMC) is a free, open-source (MIT license) plugin framework for Claude Code that adds 32 specialized AI agents, parallel execution modes, team workflows, and a skill learning system. It transforms Claude Code from a single-agent tool into a multi-agent development team.

How do I install oh-my-claudecode?+

OMC installs as a Claude Code plugin. Once installed, it integrates via lifecycle hooks and immediately provides access to specialized agents and execution modes without additional configuration. The project has 13,400+ stars on GitHub.

What Claude Code subscription do I need?+

OMC works with any Claude Code subscription. Pro ($20/month) provides access to basic features, while Max ($100-200/month) unlocks the full potential with Opus-tier agents, higher usage limits, and the parallel execution modes where OMC delivers the most value.

What are the 32 agents and how are they different?+

The agents are specialized for different development tasks: architecture, implementation, UI design, QA testing, security review, data science, and utility operations. They are tiered by Claude model (Opus for complex reasoning, Sonnet for standard tasks, Haiku for routine operations) to optimize cost and quality.

How does parallel execution work in OMC?+

OMC uses tmux to spawn multiple workers that execute tasks simultaneously. Ultrapilot mode can run up to 5 concurrent workers, each handling a different subtask while a coordinator manages dependencies. This enables 3-5x faster execution on parallelizable workloads.

Does OMC replace Claude Code?+

No. OMC extends Claude Code via its lifecycle hook system. It does not wrap or replace Claude Code, so all updates, improvements, and new features from Anthropic automatically benefit OMC users.

What is the skill learning system?+

OMC includes a learner hook that persists patterns from completed tasks as reusable skills. Over time, the system becomes more capable by learning your team's specific practices, workflows, and preferences, currently offering 28+ built-in skills.

How does OMC save tokens compared to running tasks sequentially?+

OMC routes tasks to appropriate model tiers (Opus for architecture, Haiku for formatting) instead of using the most expensive model for everything. This intelligent routing reportedly saves 30-50% on token consumption while maintaining quality where it matters.

Prêt à commencer ?

Maylee

L'IA qui pense pour votre boîte mail.

Ressources

Réseaux sociaux

Contact

© 2026 Maylee. Tous droits réservés.