Token导航 LogoToken导航TokenDH.com
前端设计执行命令github未标认证来源可访问许可证需确认审计提醒

ohmgohmg 命令行

Agent Skill

ohmg 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

1,929

周安装

82

GitHub Stars

11

下载量

676
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:ohmg(ohmg 命令行)
来源仓库:https://github.com/akillness/oh-my-skills
仓库路径:skills/ohmg
安装命令:
npx skills add https://github.com/akillness/oh-my-skills --skill ohmg
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/akillness/oh-my-skills --skill ohmg

简介

该技能为 Gemini / Antigravity 提供 oh-my-agent 的入口支持,实现跨模型多代理协同。

  • 适用于希望统一 Claude、Codex 和 Gemini 环境下项目级代理配置的用户。
  • 核心功能包括生成 .agents/ 源数据、解释原生代理使用条件,并提供 oma agent:spawn 回退机制。
  • 安装前需确认目标运行时环境(如 Gemini CLI)是否支持相关代理调度逻辑。
  • ohmg 属于前端设计类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

ohmg — Gemini / Antigravity entry for oh-my-agent

When to use this skill

  • You want to adopt oh-my-agent from a Gemini CLI workflow
  • You want Antigravity to read the same project-local multi-agent setup
  • You need a portable .agents/ source of truth that can later project into Gemini, Claude, and Codex surfaces
  • You need to explain when Gemini can use native generated agents versus when oma agent:spawn fallback is required
  • You want the Gemini / Antigravity path without copying the full Claude-first (omc) or Codex-first (omx) runtime catalogs

Instructions

Step 1: Identify the runtime and desired ownership model

Determine which of these the user actually wants:

  1. Gemini CLI first — they want Gemini-native agent files and Gemini-centric usage
  2. Antigravity first — they want Antigravity to consume a portable agent harness
  3. Portable harness first — they want one project-local source of truth that can later project into Gemini, Claude, or Codex
  4. Vendor-first runtime instead — they actually want Claude-first orchestration (omc) or Codex-first orchestration (omx)

If the request is really about Claude Code-native orchestration, route to omc. If the request is really about Codex CLI-native orchestration, route to omx. Use ohmg when the center of gravity is Gemini CLI / Antigravity + portable harness adoption.

Step 2: Teach the current upstream mental model

Frame ohmg around the modern upstream surface:

  • product/runtime name: oh-my-agent
  • common CLI: oma / oh-my-agent
  • source of truth: .agents/ in the project
  • native generated vendor views:

- .gemini/agents/*.md - .claude/agents/*.md - .codex/agents/*.toml

  • dispatch rule:

- same-vendor runtime → prefer native generated vendor agent files - cross-vendor task → fall back to oma agent:spawn / oma agent:parallel

Do not lead with old oh-my-ag naming, /coordinate, or .agent/skills/ paths.

Step 3: Provide the right install/bootstrap path

Gemini CLI / general portable setup

# one-liner installer (macOS/Linux)
curl -fsSL https://raw.githubusercontent.com/first-fluke/oh-my-agent/main/cli/install.sh | bash

# or launch directly
bunx oh-my-agent@latest

# or install globally
bun install --global oh-my-agent

After install, use the interactive oma flow to choose a preset and generate the project-local harness.

Useful operator commands:

oma doctor
oma link
oma dashboard
oma dashboard:web

When install constraints exist

If interactive setup is not appropriate, explain the manual path:

  1. bring .agents/ into the project
  2. run oma link to regenerate runtime-specific views
  3. verify the generated Gemini / Claude / Codex files exist where expected

Step 4: Explain Gemini-native vs Antigravity behavior correctly

Gemini CLI path

Gemini can use generated native agent files from .gemini/agents/*.md when the runtime vendor matches the target vendor.

Use this framing:

  • keep .agents/ canonical
  • generate/update .gemini/agents/*.md
  • let Gemini use native generated agent definitions when possible

Antigravity path

Antigravity can consume .agents/agents/ directly, but does not support custom subagent spawning the same way Gemini / Claude / Codex runtimes can.

Use this framing:

  • Antigravity is a portable-consumer surface for the harness
  • do not oversell it as identical to Gemini-native multi-agent spawning
  • when the task needs explicit cross-vendor or custom spawning behavior, explain the fallback CLI/runtime path instead of pretending Antigravity owns it natively

Step 5: Show the real workflow surfaces

Use upstream workflow language that matches current oh-my-agent docs:

  • /plan — PM task breakdown and API-contract-oriented planning
  • /work — step-by-step gated multi-agent execution
  • /orchestrate — CLI-based parallel agent execution
  • /ultrawork — higher-intensity quality workflow
  • /review — security / performance / accessibility review
  • /debug — structured debugging
  • /scm — SCM and Git workflow support

Useful CLI examples:

oma agent:spawn backend "Build auth API" session-01
oma agent:parallel -i backend:"Auth API" frontend:"Login form"
oma dashboard
oma dashboard:web

Use these as examples of the portable harness, not as a promise that every runtime exposes the same native UI.

Step 6: Handle cross-vendor questions with explicit boundaries

Use this routing logic:

  • Use ohmg when the request is about:

- Gemini CLI setup for oh-my-agent - Antigravity compatibility - .agents/ source-of-truth structure - native Gemini generated agents - portable harness adoption before choosing per-vendor runtime layers

  • Use omc when the request is about:

- Claude Code plugin / in-session orchestration - /team, /autopilot, /ralph, /ccg, or Claude-first runtime operations

  • Use omx when the request is about:

- Codex CLI workflow skills like $deep-interview, $ralplan, $team, $ralph - .omx/ runtime state and Codex-first orchestration behavior

If a user wants one portable harness that can later serve Gemini + Claude + Codex, keep ohmg as the anchor and mention omc / omx as downstream vendor-first layers, not replacements for the .agents/ source of truth.

Step 7: Troubleshoot the most common drift points

Check these first:

  1. Wrong product naming — use oh-my-agent / oma, not old oh-my-ag
  2. Wrong source-of-truth path — prefer .agents/, not legacy .agent/
  3. Generated files stale or missing — rerun oma link
  4. Environment mismatch — Gemini-native behavior differs from Antigravity capability
  5. Monitoring confusion — dashboard observes agent/memory activity; it is not the whole orchestration model
  6. Mixed-vendor expectations — if native dispatch cannot own the task, explain oma agent:spawn / oma agent:parallel

Examples

Example 1: Gemini CLI adoption

User: “Set up oh-my-agent for Gemini CLI.”

Response: Use ohmg. Install oh-my-agent, keep .agents/ as the source of truth, then regenerate Gemini-native agent files so Gemini can use .gemini/agents/*.md when the runtime vendor matches. A good start is curl -fsSL https://raw.githubusercontent.com/first-fluke/oh-my-agent/main/cli/install.sh | bash or bunx oh-my-agent@latest, then oma doctor and oma link.

Example 2: Antigravity compatibility

User: “I want Antigravity to use the same multi-agent setup as Gemini.”

Response: Use ohmg, but explain the capability boundary clearly: Antigravity can consume .agents/agents/ from the same portable harness, yet it does not support custom subagent spawning the same way Gemini-native or CLI fallback paths do. Keep .agents/ canonical and use Antigravity as a compatible consumer surface.

Example 3: Portable harness with later Claude/Codex routing

User: “I need Gemini-native agents now, but later I may route work to Claude or Codex.”

Response: ohmg is the right anchor. Start with oh-my-agent and .agents/ as the project-local source of truth. Let Gemini use generated native agent files now, then project the same harness into .claude/agents/ or .codex/agents/ later. If the user later wants Claude-first runtime orchestration, route those runtime details to omc; if they want Codex-first workflow skills, route to omx.

Example 4: Choosing between ohmg, omc, and omx

User: “Should I use ohmg, omc, or omx?”

Response: Use ohmg if your main goal is a Gemini / Antigravity-friendly portable harness centered on .agents/. Use omc for Claude-first orchestration and omx for Codex-first orchestration. ohmg is the portable harness adoption lane; omc and omx are vendor-first runtime overlays.

Best practices

  1. Use current upstream namingoh-my-agent / oma, not oh-my-ag
  2. Keep .agents/ canonical — generated Gemini/Claude/Codex surfaces should derive from it
  3. Prefer same-vendor native dispatch first — only escalate to CLI spawning when vendor/runtime mismatch requires it
  4. State Antigravity limits plainly — it is compatible, but not identical to Gemini-native custom subagent behavior
  5. Route vendor-first runtime questions cleanly — keep Claude-first runtime depth in omc and Codex-first runtime depth in omx
  6. Use oma link after structure changes — stale generated files are a common source of confusion
  7. Treat dashboards as observability helpers — they support the workflow; they are not the workflow itself

References

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

35.73%
按下载量换算242

Claude

28.81%
按下载量换算195

Cursor

17.62%
按下载量换算119

Gemini CLI

9.23%
按下载量换算62

安全审计

Gen Agent Trust Hub

可疑

Socket

通过

Snyk

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/akillness/oh-my-skills --skill ohmg 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills