[TERMINAL · SKILLS]
> mounting /skills...
> indexing 295 manifests...
> linking agents: claude · codex · gemini · cursor
> ready.
[░░░░░░░░░░░░░░░░░░░░░░░░░░░░] 0%
Terminal.skills
Skills/oh-my-claudecode
>

oh-my-claudecode

Orchestrate multi-agent Claude Code teams — assign roles, coordinate parallel tasks, share context between agents, and manage team workflows. Use when: running multiple Claude Code agents simultaneously, building team-based AI development workflows, coordinating complex multi-agent coding projects.

#claude-code#multi-agent#orchestration#parallel#collaboration
terminal-skillsv1.0.0
Works with:claude-codeopenai-codexgemini-clicursor
Source
Trust Score
77/ 100
9.50×
Impact

Validation

Quality
77/ 100
Does it follow best practices?
4 PASS · 1 WEAK · 1 FAIL
Security
Passed
No known issues
Content review + injection scan
Impact
9.50×
9% → 95% agent success
Avg across 2 eval scenarios
Scored 5/13/2026 · skill v1.0.0
$
✓ Installed oh-my-claudecode v1.0.0

Getting Started

  1. Install the skill using the command above
  2. Open your AI coding agent (Claude Code, Codex, Gemini CLI, or Cursor)
  3. Reference the skill in your prompt
  4. The AI will use the skill's capabilities automatically

Example Prompts

  • "Review the open pull requests and summarize what needs attention"
  • "Generate a changelog from the last 20 commits on the main branch"

Documentation

Multi-agent orchestration for Claude Code. Run teams of AI agents in parallel — each with a role, shared context, and coordinated workflows. Zero learning curve.

GitHub: Yeachan-Heo/oh-my-claudecode

Overview

oh-my-claudecode (OMC) lets you run teams of Claude Code agents in parallel, each with assigned roles. It manages a staged pipeline (plan → PRD → execute → verify → fix) and supports mixing providers (Claude, Codex, Gemini). Agents share context through the filesystem and git branches, with automatic conflict resolution.

Instructions

Installation

Via Claude Code Plugin Marketplace (recommended):

bash
/plugin marketplace add https://github.com/Yeachan-Heo/oh-my-claudecode
/plugin install oh-my-claudecode

Via npm:

bash
npm i -g oh-my-claude-sisyphus@latest

Initial Setup

Run inside Claude Code:

bash
/setup
/omc-setup

Enable experimental teams in ~/.claude/settings.json:

json
{
  "env": {
    "CLAUDE_CODE_EXPERIMENTAL_AGENT_TEAMS": "1"
  }
}

Team Pipeline

Team mode runs a staged pipeline for every task:

team-plan → team-prd → team-exec → team-verify → team-fix (loop)
  1. Plan — break down the task into sub-tasks and dependencies
  2. PRD — generate a product requirements document
  3. Execute — spawn N agents working in parallel
  4. Verify — validate output against requirements
  5. Fix — loop back to fix issues until tests pass

Agent Roles

RoleFocusExample Tasks
executorGeneral codingFeature implementation, refactoring
reviewerCode reviewPR reviews, architecture feedback
testerQuality assuranceTest writing, coverage analysis
architectSystem designAPI design, database schema

Context Sharing

Agents in a team share context through:

  • Shared filesystem — all agents see the same project files
  • Team state file.omc/team-state.json tracks progress
  • Git branches — each agent works on a feature branch, merged at verify stage

Configuration

~/.omc/config.json:

json
{
  "defaultTeamSize": 3,
  "defaultRole": "executor",
  "providers": {
    "claude": { "enabled": true },
    "codex": { "enabled": true, "model": "codex-latest" },
    "gemini": { "enabled": true, "model": "gemini-2.5-pro" }
  },
  "pipeline": {
    "skipPRD": false,
    "autoFix": true,
    "maxFixLoops": 3
  }
}

Requires codex / gemini CLIs installed and an active tmux session for multi-provider workers (v4.4.0+).

Examples

Example 1: Team Execution with Mixed Roles

bash
# Spawn 3 executor agents to fix all TypeScript errors
/team 3:executor "fix all TypeScript errors"

# Use Codex agents for code review
omc team 2:codex "review auth module for security issues"

# Gemini agents for UI work
omc team 2:gemini "redesign UI components for accessibility"

Example 2: Autopilot and Deep Interview

bash
# Let OMC handle everything — from planning to execution
autopilot: build a REST API for managing tasks

# When requirements are vague, use Socratic questioning first
/deep-interview "I want to build a task management app"
# The interview clarifies requirements before any code is written

Example 3: Tri-Model Advisor

Route work to Codex + Gemini, then Claude synthesizes the results:

bash
/ccg Review this PR  architecture (Codex) and UI components (Gemini)

Guidelines

  • Start with autopilot: for well-defined tasks
  • Use /deep-interview when requirements are fuzzy
  • Mix providers: Codex for review, Gemini for UI, Claude for logic
  • Keep team size at 5 or fewer for most tasks — diminishing returns beyond that
  • Use omc team status <task-id> to monitor long-running teams
  • The verify-fix loop catches most issues automatically
  • When multiple agents modify the same file, OMC detects conflicts at merge time and spawns a resolver agent

Resources

Information

Version
1.0.0
Author
terminal-skills
Category
Development
License
MIT