
Ask
- 400 installs
- 38.3k repo stars
- Updated August 4, 2026
- yeachan-heo/oh-my-claudecode
ask is an OMC advisor-routing skill that sends prompts through local Claude, Codex, Gemini, Antigravity, Grok, or Cursor CLI tools and saves responses as persisted ask artifacts for developers who need multi-model second
About
ask is a skill in yeachan-heo/oh-my-claudecode that implements process-first advisor routing via the `omc ask` command. Developers specify an advisor—claude, codex, gemini, antigravity, grok, or cursor—and a question; OMC handles CLI invocation and captures the reply as a durable ask artifact instead of raw terminal output. Typical prompts include security patch review, UX flow suggestions, and cross-model planning checks. The skill eliminates hand-assembled CLI flags and standardizes artifact storage inside the OMC framework. Use ask when you want a Codex security pass, a Gemini UX critique, or a Cursor-specific review without leaving your Claude Code session or losing the response.
- Routes prompts to Claude, OpenAI Codex, or Google Gemini
- Persists AI responses as artifacts in the OMC framework
- Supports code review, planning, and UX analysis use cases
- Unified multi-model CLI interface
Ask by the numbers
- 400 all-time installs (skills.sh)
- +7 installs in the week ending Jul 27, 2026 (Skillselion tracking)
- Ranked #1,972 of 16,546 AI & Agent Building skills by installs in the Skillselion catalog
- Data as of Aug 5, 2026 (Skillselion catalog sync)
npx skills add https://github.com/yeachan-heo/oh-my-claudecode --skill askAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 400 |
|---|---|
| repo stars | ★ 38.3k |
| Last updated | August 4, 2026 |
| Repository | yeachan-heo/oh-my-claudecode ↗ |
How do you route prompts to multiple AI CLIs?
Routes prompts to Claude, Codex, or Gemini CLI tools and persists their responses as artifacts within the OMC framework for code review, planning, and UX analysis.
Who is it for?
Developers using oh-my-claudecode who want multi-model code review, planning, or UX analysis with captured artifacts.
Skip if: Developers without OMC installed who only need a single default model with no cross-CLI routing or artifact persistence.
When should I use this skill?
The user wants a second opinion from Codex, Gemini, Grok, Antigravity, or Cursor CLI routed through OMC with the answer saved as an artifact.
What you get
Persisted ask artifacts containing advisor responses from Claude, Codex, Gemini, Antigravity, Grok, or Cursor CLI sessions.
- ask artifact files
- persisted multi-model advisor responses
By the numbers
- Routes prompts to 6 CLI advisor targets: claude, codex, gemini, antigravity, grok, cursor
Files
Ask
Use OMC's canonical advisor skill to route a prompt through the local Claude, Codex, Gemini, Antigravity, Grok, or Cursor CLI and persist the result as an ask artifact.
Usage
/oh-my-claudecode:ask <claude|codex|gemini|antigravity|grok|cursor> <question or task>Examples:
/oh-my-claudecode:ask codex "review this patch from a security perspective"
/oh-my-claudecode:ask gemini "suggest UX improvements for this flow"
/oh-my-claudecode:ask antigravity "suggest UX improvements for this flow"
/oh-my-claudecode:ask claude "draft an implementation plan for issue #123"
/oh-my-claudecode:ask cursor "apply this implementation plan"Routing
Required execution path — always use this command:
omc ask {{ARGUMENTS}}Do NOT manually construct raw provider CLI commands. Never run codex, claude, gemini, agy, grok, or cursor-agent directly to fulfill this skill. The omc ask wrapper handles correct flag selection, artifact persistence, and provider-version compatibility automatically. Manually assembling provider CLI flags will produce incorrect or outdated invocations.
Requirements
- The selected local CLI must be installed and authenticated.
- Verify availability with the matching command:
claude --version
codex --version
gemini --version
agy --version
grok --version
cursor-agent --version- Antigravity CLI install (Google's successor to the Gemini CLI): install the
agy
binary per the official Antigravity instructions (inspect any installer before running it). Verify: agy --version
Platform note:omc ask antigravityis supported on macOS/Linux. On Windows it is guarded with a clear error, becauseagy --printtakes the prompt as an argv value (it cannot read stdin) and has known upstream Windows-plimitations; useomc ask geminion Windows.
- Gemini CLI remains supported for enterprise/API-key use cases.
Artifacts
omc ask writes artifacts to:
.omc/artifacts/ask/<provider>-<slug>-<timestamp>.mdTask: {{ARGUMENTS}}
Related skills
How it compares
Pick ask when OMC artifact capture and multi-CLI routing matter; pick a single-model review skill when only one default advisor is needed.
FAQ
Which CLI advisors does ask support?
ask supports routing through Claude, Codex, Gemini, Antigravity, Grok, and Cursor CLI tools via the `/oh-my-claudecode:ask` command, persisting each response as an OMC ask artifact.
How do you invoke ask in oh-my-claudecode?
Run `/oh-my-claudecode:ask <advisor> "<question>"`—for example `/oh-my-claudecode:ask codex "review this patch from a security perspective"`—and OMC executes the CLI and stores the reply.