home / skills / yeachan-heo / oh-my-claudecode / ask-gemini
/skills/ask-gemini
This skill lets you consult Gemini locally and capture reusable advisory artifacts for iterative AI-assisted coding workflows.
npx playbooks add skill yeachan-heo/oh-my-claudecode --skill ask-geminiReview the files below or copy the command above to add this skill to your agents.
---
name: ask-gemini
description: Ask Gemini via local CLI and capture a reusable artifact
---
# Ask Gemini
Use Gemini as an external advisor through OMC's ask command.
## Usage
```bash
/oh-my-claudecode:ask-gemini <question or task>
```
## Routing
Preferred path:
```bash
omc ask gemini "{{ARGUMENTS}}"
```
Wrapper alias (compatibility):
```bash
bash "${CLAUDE_PLUGIN_ROOT}/scripts/ask-gemini.sh" "{{ARGUMENTS}}"
```
## Requirements
- Local Gemini CLI must be installed and authenticated.
- Verify with:
```bash
gemini --version
```
## Artifacts
`omc ask` writes artifacts to:
```text
.omc/artifacts/ask/gemini-<slug>-<timestamp>.md
```
Task: {{ARGUMENTS}}
This skill lets you query Gemini from the local CLI and captures the response as a reusable artifact. It integrates with the omc ask command to route prompts to Gemini and store outputs in a timestamped markdown file. Use it to get external advice, code suggestions, or design input while keeping an auditable artifact of the interaction.
When you run the ask-gemini command via the omc ask or the Bash wrapper, the skill forwards your question to the locally installed Gemini CLI. The CLI response is captured and written into a consistent artifact file under the .omc/artifacts/ask directory with a slug and timestamp. Artifacts are plain markdown so you can review, share, or feed them into other workflows.
What do I need installed?
A local Gemini CLI that is installed and authenticated. Verify with gemini --version.
Where are responses saved?
Responses are written to .omc/artifacts/ask/gemini-<slug>-<timestamp>.md for easy reuse and tracking.