reviewtools/skills/gemini/SKILL.md
Use when the user asks to run Gemini CLI (gemini, gemini -p) or references Google Gemini for AI assistance, code analysis, generation, debugging, or interactive terminal workflows
npx skillsauth add ekino/docker-buildbox geminiInstall 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.
AskUserQuestion) which model to run (gemini-3-pro-preview,gemini-2.5-pro, gemini-2.5-flash, or other available models) in a single prompt.-m, --model <MODEL> - Specify the model to use-p, --prompt <PROMPT> - For non-interactive mode--include-directories <DIRS> - Include additional directories in context--output-format <FORMAT> - Choose output format: text, json, or stream-json--config <KEY=VALUE> - Set configuration optionsgemini to start an interactive chat sessiongemini -p "your prompt here" with optional --output-format json for structured output| Use case | Command format | Key flags |
| --- | --- | --- |
| Interactive chat in current directory | gemini | Default interactive mode |
| Interactive with specific model | gemini -m gemini-2.5-flash | -m <model> |
| Include multiple directories | gemini --include-directories ../lib,../docs | --include-directories <dirs> |
| Non-interactive with text output | gemini -p "prompt" | -p <prompt> |
| Scripting with JSON output | gemini -p "prompt" --output-format json | --output-format json |
| Streaming events for monitoring | gemini -p "prompt" --output-format stream-json | --output-format stream-json |
gemini command, immediately use AskUserQuestion to confirm next steps, collect clarifications, or decide whether to continue with follow-up promptsGemini CLI comes with powerful built-in tools that can be used during sessions:
Inform users that they can create a GEMINI.md file in their project root to provide persistent context and instructions that will be automatically loaded in every session.
Gemini CLI supports multiple authentication methods:
Before running Gemini commands, ensure the user is authenticated. Common environment variables:
GEMINI_API_KEY - For API key authenticationGOOGLE_API_KEY - For Vertex AI authenticationGOOGLE_CLOUD_PROJECT - For Google Cloud projectGOOGLE_GENAI_USE_VERTEXAI - Set to true for Vertex AIgemini command exits non-zero; request direction before retryingAskUserQuestion~/.gemini/settings.jsontools
Running OpenAI Codex CLI for code analysis, refactoring, and automated editing with configurable sandbox permissions and reasoning effort levels.
tools
Use when work should span one or more detached tasks but still behave like one job with a single owner context. TaskFlow is the durable flow substrate under authoring layers like Lobster, ACPX, plugins, or plain code. Keep conditional logic in the caller; use TaskFlow for flow identity, child-task linkage, waiting state, revision-checked mutations, and user-facing emergence.
tools
# Lobster Lobster executes multi-step workflows with approval checkpoints. Use it when: - User wants a repeatable automation (triage, monitor, sync) - Actions need human approval before executing (send, post, delete) - Multiple tool calls should run as one deterministic operation ## When to use Lobster | User intent | Use Lobster? | | ------------------------------------------------------ | --------------------------
tools
# Lobster Lobster executes multi-step workflows with approval checkpoints. Use it when: - User wants a repeatable automation (triage, monitor, sync) - Actions need human approval before executing (send, post, delete) - Multiple tool calls should run as one deterministic operation ## When to use Lobster | User intent | Use Lobster? | | ------------------------------------------------------ | --------------------------