ask
GitHub通过本地 CLI 调用 Claude 或 Gemini 进行提问、审查或头脑风暴,并自动保存包含原始任务、提示词、输出及摘要的可复用 Markdown 制品。
Trigger Scenarios
Install
npx skills add Yeachan-Heo/oh-my-codex --skill ask -g -y
SKILL.md
Frontmatter
{
"name": "ask",
"description": "Ask a local external advisor CLI (Claude or Gemini) and capture a reusable artifact"
}
Ask (Local Advisor CLI)
Use a locally installed external advisor CLI for focused questions, reviews, brainstorming, or second opinions. This skill replaces the separate ask-claude and ask-gemini skills.
Usage
$ask claude <question or task>
$ask gemini <question or task>
omx ask claude "<question or task>"
omx ask gemini "<question or task>"
Backend selection
- Use
claudewhen the user asks for Claude, Anthropic, or the previous$ask-claudebehavior. - Use
geminiwhen the user asks for Gemini or the previous$ask-geminibehavior. - If no backend is specified, choose the installed backend that best matches the user request; if neither is clearly available, explain that a local CLI is required.
Local CLI commands
Claude:
omx ask claude "{{ARGUMENTS}}"
claude -p "{{ARGUMENTS}}"
Gemini:
omx ask gemini "{{ARGUMENTS}}"
gemini -p "{{ARGUMENTS}}"
If needed, adapt to the user's installed CLI variant while keeping local execution as the default path. Do not silently switch to an MCP or remote provider when the local binary is missing.
Artifact requirement
After local execution, save a markdown artifact to:
.omx/artifacts/ask-<backend>-<slug>-<timestamp>.md
Minimum artifact sections:
- Original user task
- Backend and final prompt sent to the CLI
- Raw CLI output
- Concise summary
- Action items / next steps
Task: {{ARGUMENTS}}
Version History
- e94437f Current 2026-08-20 07:18


