jpskill.com
💬 コミュニケーション コミュニティ

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.

⚡ おすすめ: コマンド1行でインストール(60秒)

下記のコマンドをコピーしてターミナル(Mac/Linux)または PowerShell(Windows)に貼り付けてください。 ダウンロード → 解凍 → 配置まで全自動。

🍎 Mac / 🐧 Linux
mkdir -p ~/.claude/skills && cd ~/.claude/skills && curl -L -o oh-my-claudecode.zip https://jpskill.com/download/15190.zip && unzip -o oh-my-claudecode.zip && rm oh-my-claudecode.zip
🪟 Windows (PowerShell)
$d = "$env:USERPROFILE\.claude\skills"; ni -Force -ItemType Directory $d | Out-Null; iwr https://jpskill.com/download/15190.zip -OutFile "$d\oh-my-claudecode.zip"; Expand-Archive "$d\oh-my-claudecode.zip" -DestinationPath $d -Force; ri "$d\oh-my-claudecode.zip"

完了後、Claude Code を再起動 → 普通に「動画プロンプト作って」のように話しかけるだけで自動発動します。

💾 手動でダウンロードしたい(コマンドが難しい人向け)
  1. 1. 下の青いボタンを押して oh-my-claudecode.zip をダウンロード
  2. 2. ZIPファイルをダブルクリックで解凍 → oh-my-claudecode フォルダができる
  3. 3. そのフォルダを C:\Users\あなたの名前\.claude\skills\(Win)または ~/.claude/skills/(Mac)へ移動
  4. 4. Claude Code を再起動

⚠️ ダウンロード・利用は自己責任でお願いします。当サイトは内容・動作・安全性について責任を負いません。

🎯 このSkillでできること

下記の説明文を読むと、このSkillがあなたに何をしてくれるかが分かります。Claudeにこの分野の依頼をすると、自動で発動します。

📦 インストール方法 (3ステップ)

  1. 1. 上の「ダウンロード」ボタンを押して .skill ファイルを取得
  2. 2. ファイル名の拡張子を .skill から .zip に変えて展開(macは自動展開可)
  3. 3. 展開してできたフォルダを、ホームフォルダの .claude/skills/ に置く
    • · macOS / Linux: ~/.claude/skills/
    • · Windows: %USERPROFILE%\.claude\skills\

Claude Code を再起動すれば完了。「このSkillを使って…」と話しかけなくても、関連する依頼で自動的に呼び出されます。

詳しい使い方ガイドを見る →
最終更新
2026-05-18
取得日時
2026-05-18
同梱ファイル
1
📖 Claude が読む原文 SKILL.md(中身を展開)

この本文は AI(Claude)が読むための原文(英語または中国語)です。日本語訳は順次追加中。

oh-my-claudecode

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):

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

Via npm:

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

Initial Setup

Run inside Claude Code:

/setup
/omc-setup

Enable experimental teams in ~/.claude/settings.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

Role Focus Example Tasks
executor General coding Feature implementation, refactoring
reviewer Code review PR reviews, architecture feedback
tester Quality assurance Test writing, coverage analysis
architect System design API 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:

{
  "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

# 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

# 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:

/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