ohmg
Ultimate multi-agent framework for Google Antigravity. Orchestrates specialized domain agents (PM, Frontend, Backend, Mobile, QA, Debug) via Serena Memory.
下記のコマンドをコピーしてターミナル(Mac/Linux)または PowerShell(Windows)に貼り付けてください。 ダウンロード → 解凍 → 配置まで全自動。
mkdir -p ~/.claude/skills && cd ~/.claude/skills && curl -L -o ohmg.zip https://jpskill.com/download/20911.zip && unzip -o ohmg.zip && rm ohmg.zip
$d = "$env:USERPROFILE\.claude\skills"; ni -Force -ItemType Directory $d | Out-Null; iwr https://jpskill.com/download/20911.zip -OutFile "$d\ohmg.zip"; Expand-Archive "$d\ohmg.zip" -DestinationPath $d -Force; ri "$d\ohmg.zip"
完了後、Claude Code を再起動 → 普通に「動画プロンプト作って」のように話しかけるだけで自動発動します。
💾 手動でダウンロードしたい(コマンドが難しい人向け)
- 1. 下の青いボタンを押して
ohmg.zipをダウンロード - 2. ZIPファイルをダブルクリックで解凍 →
ohmgフォルダができる - 3. そのフォルダを
C:\Users\あなたの名前\.claude\skills\(Win)または~/.claude/skills/(Mac)へ移動 - 4. Claude Code を再起動
⚠️ ダウンロード・利用は自己責任でお願いします。当サイトは内容・動作・安全性について責任を負いません。
🎯 このSkillでできること
下記の説明文を読むと、このSkillがあなたに何をしてくれるかが分かります。Claudeにこの分野の依頼をすると、自動で発動します。
📦 インストール方法 (3ステップ)
- 1. 上の「ダウンロード」ボタンを押して .skill ファイルを取得
- 2. ファイル名の拡張子を .skill から .zip に変えて展開(macは自動展開可)
- 3. 展開してできたフォルダを、ホームフォルダの
.claude/skills/に置く- · macOS / Linux:
~/.claude/skills/ - · Windows:
%USERPROFILE%\.claude\skills\
- · macOS / Linux:
Claude Code を再起動すれば完了。「このSkillを使って…」と話しかけなくても、関連する依頼で自動的に呼び出されます。
詳しい使い方ガイドを見る →- 最終更新
- 2026-05-18
- 取得日時
- 2026-05-18
- 同梱ファイル
- 1
📖 Skill本文(日本語訳)
※ 原文(英語/中国語)を Gemini で日本語化したものです。Claude 自身は原文を読みます。誤訳がある場合は原文をご確認ください。
oh-my-ag (ohmg) - マルチエージェントオーケストレーター
このスキルを使用するタイミング
- 複雑なマルチドメインプロジェクトの調整
- 複数のAIエージェント(PM、フロントエンド、バックエンドなど)にわたるタスクの並列化
- エージェント間の状態管理のためのSerena Memoryの使用
- エージェントワークフローのリアルタイム監視ダッシュボードの設定
- 単一プロジェクトでの複数のCLIベンダー(Gemini、Claude、Codex)の統合
1. コアコンセプト
特殊化されたエージェント
| エージェント | 専門分野 | トリガー |
|---|---|---|
| Workflow Guide | 複雑なプロジェクトを調整 | "multi-domain", "complex project" |
| PM Agent | 要件、タスク分解 | "plan", "break down" |
| Frontend Agent | React/Next.js、スタイリング | "UI", "component", "styling" |
| Backend Agent | API、データベース、認証 | "API", "database", "auth" |
| Debug Agent | バグ診断、RCA | "bug", "error", "crash" |
Serena Memory
オーケストレーターは、リアルタイム監視とエージェント間調整のために、構造化された状態を.serena/memories/に書き込みます。
2. インストールとセットアップ
前提条件
- Bun (CLIおよびダッシュボード)
- uv (Serenaセットアップ)
対話型セットアップ
bunx oh-my-ag
プロジェクトタイプを選択して、関連するスキルを.agent/skills/にインストールします。
検証
bunx oh-my-ag doctor
3. 使用パターン
明示的な調整
/coordinate
PM計画 → エージェント生成 → QAレビュー。
CLIによるエージェントの生成
# 特定のタスクのためにバックエンドエージェントを生成
oh-my-ag agent:spawn backend "Implement auth API" session-01
ダッシュボード監視
- ターミナル:
bunx oh-my-ag dashboard - Web:
bunx oh-my-ag dashboard:web(http://localhost:9847)
4. MCP接続とブリッジング
SSEモード (共有サーバー)
環境がstdio-to-httpブリッジングを必要とする場合:
bunx oh-my-ag bridge http://localhost:12341/sse
5. 設定
.agent/config/user-preferences.yamlでエージェントごとのCLIマッピングを設定します:
agent_cli_mapping:
frontend: gemini
backend: codex
pm: claude
qa: claude
クイックリファレンス
| コマンド | アクション |
|---|---|
bunx oh-my-ag |
対話型インストーラー |
/setup |
エージェント側の設定 |
bunx oh-my-ag doctor |
システムチェックと修復 |
bunx oh-my-ag update |
スキルの更新 |
bunx oh-my-ag usage |
クォータ使用量の表示 |
📜 原文 SKILL.md(Claudeが読む英語/中国語)を展開
oh-my-ag (ohmg) - Multi-Agent Orchestrator
When to use this skill
- Coordinating complex multi-domain projects
- Parallelizing tasks across multiple AI agents (PM, Frontend, Backend, etc.)
- Using Serena Memory for cross-agent state management
- Setting up real-time observability dashboards for agent workflows
- Integrating multi-CLI vendors (Gemini, Claude, Codex) in a single project
1. Core Concepts
Specialized Agents
| Agent | Specialization | Triggers |
|---|---|---|
| Workflow Guide | Coordinates complex projects | "multi-domain", "complex project" |
| PM Agent | Requirements, task decomposition | "plan", "break down" |
| Frontend Agent | React/Next.js, styling | "UI", "component", "styling" |
| Backend Agent | API, database, auth | "API", "database", "auth" |
| Debug Agent | Bug diagnosis, RCA | "bug", "error", "crash" |
Serena Memory
Orchestrator writes structured state to .serena/memories/ for real-time monitoring and cross-agent coordination.
2. Installation & Setup
Prerequisites
- Bun (CLI and dashboards)
- uv (Serena setup)
Interactive Setup
bunx oh-my-ag
Select project type to install relevant skills to .agent/skills/.
Verification
bunx oh-my-ag doctor
3. Usage Patterns
Explicit Coordination
/coordinate
PM planning → agent spawning → QA review.
Spawning Agents via CLI
# Spawn backend agent for a specific task
oh-my-ag agent:spawn backend "Implement auth API" session-01
Dashboard Monitoring
- Terminal:
bunx oh-my-ag dashboard - Web:
bunx oh-my-ag dashboard:web(http://localhost:9847)
4. MCP Connection & Bridging
SSE Mode (Shared Server)
If environment needs stdio-to-http bridging:
bunx oh-my-ag bridge http://localhost:12341/sse
5. Configuration
Configure per-agent CLI mapping in .agent/config/user-preferences.yaml:
agent_cli_mapping:
frontend: gemini
backend: codex
pm: claude
qa: claude
Quick Reference
| Command | Action |
|---|---|
bunx oh-my-ag |
Interactive installer |
/setup |
Agent-side configuration |
bunx oh-my-ag doctor |
System check & repair |
bunx oh-my-ag update |
Update skills |
bunx oh-my-ag usage |
Show quota usage |