.claude/skills/omega-gemini-cli/SKILL.md
Use when the user wants to use Google Gemini for analysis, large files or codebases, sandbox execution, or brainstorming. Uses headless Gemini CLI scripts (no MCP). Triggers on "use Gemini", "analyze with Gemini", "large file", "sandbox", "brainstorm with Gemini".
npx skillsauth add oimiragieo/agent-studio omega-gemini-cliInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Headless wrapper for Google Gemini CLI. Sends prompts via stdin to gemini -p "" --yolo.
Free tier available — no API key required (Google OAuth only).
Gemini CLI runs as a subprocess and includes model startup time:
Set expectations with the user before running long tasks.
node .claude/skills/omega-gemini-cli/scripts/ask-gemini.mjs "What is the best caching strategy for a Node.js API?"
node .claude/skills/omega-gemini-cli/scripts/ask-gemini.mjs "Explain async/await" --model gemini-2.5-flash
node .claude/skills/omega-gemini-cli/scripts/ask-gemini.mjs "Explain async/await" -m gemini-2.5-flash
node .claude/skills/omega-gemini-cli/scripts/ask-gemini.mjs "List 5 design patterns" --json
# Returns: {"response":"..."} on success, {"error":"...","raw":"..."} on parse failure
node .claude/skills/omega-gemini-cli/scripts/ask-gemini.mjs "Write and run a fibonacci function" --sandbox
node .claude/skills/omega-gemini-cli/scripts/ask-gemini.mjs "Write and run a fibonacci function" -s
echo "Explain recursion" | node .claude/skills/omega-gemini-cli/scripts/ask-gemini.mjs
node .claude/skills/omega-gemini-cli/scripts/ask-gemini.mjs "Review this code: $(cat src/auth.ts)"
node .claude/skills/omega-gemini-cli/scripts/verify-setup.mjs
# Exit 0 = available (Node 18+ and Gemini CLI found)
# Exit 1 = not installed or too old
| Script | Purpose |
| ------------------- | --------------------------------------------------------- |
| ask-gemini.mjs | Core headless wrapper — sends prompt via stdin |
| parse-args.mjs | Argument parser (--model/-m, --json, --sandbox/-s) |
| verify-setup.mjs | Availability check (Node 18+, Gemini CLI via PATH or npx) |
| format-output.mjs | Output normalization (JSON envelope handling) |
| Flag | Short | Description |
| --------------- | ----- | ----------------------------------------------------------- |
| --model MODEL | -m | Gemini model (e.g., gemini-2.5-flash, gemini-2.5-pro) |
| --json | | Machine-readable JSON output: {"response":"..."} envelope |
| --sandbox | -s | Code execution sandbox mode |
| Model ID | Notes |
| ------------------------ | ------------------------------------- |
| gemini-3-pro-preview | Latest (2026), highest capability |
| gemini-3-flash-preview | Latest (2026), faster |
| gemini-2.5-pro | Stable, high capability |
| gemini-2.5-flash | Recommended: lower quota/latency |
| gemini-2.5-flash-lite | Lightest, fastest, lowest quota usage |
| Code | Meaning | | ---- | --------------------------------------------------------------- | | 0 | Success | | 1 | Error (CLI failure, auth issue, JSON parse failure with --json) | | 9009 | Windows: command not found (falls back to npx automatically) |
| Command | Purpose |
| --------------------- | ----------------------------------------------------------------------- |
| /analyze | Run headless script with user's prompt (and any @ file refs) |
| /sandbox | Run with --sandbox; execute or test code |
| /omega-gemini | Alias: run headless for analysis, sandbox, or brainstorm as appropriate |
| /brainstorm | Brainstorm mode (build prompt with challenge + optional methodology) |
| /omega-gemini-setup | Verify Node and Gemini CLI; guide user to install and auth. No MCP. |
^[a-zA-Z0-9._-]+$ on Windows)@google/gemini-cli fallback automaticallygemini interactive session (run gemini once to sign in)shell: true with model validation; non-Windows uses array args (no shell)npx -y @google/gemini-cli--json wraps output as {"response":"..."} on success or {"error":"...","raw":"..."} on failurenpm install -g @google/gemini-cli) with one-time Google sign-inBefore work: Read .claude/context/memory/learnings.md
After work: Append findings to learnings or issues as needed.
Note: Use pnpm search:code to discover references to this skill codebase-wide.
tools
Comprehensive biosignal processing toolkit for analyzing physiological data including ECG, EEG, EDA, RSP, PPG, EMG, and EOG signals. Use this skill when processing cardiovascular signals, brain activity, electrodermal responses, respiratory patterns, muscle activity, or eye movements. Applicable for heart rate variability analysis, event-related potentials, complexity measures, autonomic nervous system assessment, psychophysiology research, and multi-modal physiological signal integration.
tools
Comprehensive toolkit for creating, analyzing, and visualizing complex networks and graphs in Python. Use when working with network/graph data structures, analyzing relationships between entities, computing graph algorithms (shortest paths, centrality, clustering), detecting communities, generating synthetic networks, or visualizing network topologies. Applicable to social networks, biological networks, transportation systems, citation networks, and any domain involving pairwise relationships.
data-ai
Molecular featurization for ML (100+ featurizers). ECFP, MACCS, descriptors, pretrained models (ChemBERTa), convert SMILES to features, for QSAR and molecular ML.
development
Run Python code in the cloud with serverless containers, GPUs, and autoscaling. Use when deploying ML models, running batch processing jobs, scheduling compute-intensive tasks, or serving APIs that require GPU acceleration or dynamic scaling.