OpenGemini CLI

PassAudited by ClawScan on May 10, 2026.

Overview

This skill appears to be a transparent wrapper around the local Gemini CLI, but users should notice that prompts and selected file contents may be sent through Gemini and that local Gemini authentication is required.

Install and authenticate the official Gemini CLI yourself, verify the `gemini` binary on PATH, and only send files or prompts that you are comfortable having processed by Gemini. Treat Gemini's output as advice, not as commands to run automatically.

Findings (4)

Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.

What this means

Gemini can suggest commands, code, or plans that OpenClaw may later act on if reviewed and accepted.

Why it was flagged

The skill intentionally uses local command execution to call Gemini CLI, and it includes an explicit safety warning against executing model-generated shell blindly.

Skill content
Use the locally installed `gemini` command through `exec` ... Do not blindly pipe Gemini-generated shell into execution.
Recommendation

Review Gemini output before applying edits or running commands, especially for destructive, external, or account-changing actions.

What this means

Use of this skill may operate under the user's Gemini account and its configured billing, logging, and data-handling settings.

Why it was flagged

The skill relies on the user's local Gemini CLI authentication/session storage even though registry metadata lists no primary credential.

Skill content
The user should complete Gemini CLI authentication first ... Gemini CLI may warn that `keytar` is missing and fall back to FileKeychain.
Recommendation

Authenticate only with an intended Gemini account and understand where the CLI stores credentials; revoke or log out if the skill should no longer use that account.

What this means

Behavior depends on whichever `gemini` executable is found on the local PATH.

Why it was flagged

The skill depends on an existing `gemini` binary, but the registry metadata does not declare or pin that dependency or provide a provenance path for installing it.

Skill content
Source: unknown; Homepage: none; Required binaries: none; Install specifications: No install spec
Recommendation

Install Gemini CLI from an official source, verify `which gemini` and `gemini --help`, and avoid using an unexpected binary on PATH.

What this means

Selected file contents may be processed by Gemini CLI and, depending on its configuration, sent to the Gemini service.

Why it was flagged

The helper reads the full contents of a user-specified local file and passes them into the Gemini CLI prompt.

Skill content
content=$(cat "$file") ... exec gemini -p "... FILE: ${file}\n\nCONTENT:\n${content}"
Recommendation

Use this helper only on files intended for Gemini review, and avoid sending secrets, credentials, private data, or large unbounded file dumps.