Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器clawhub未标认证来源可访问clear审计提醒

openclaw-gemini-cliOpenClaw Gemini CLI 搜索

Agent Skill

openclaw-gemini-cli 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

3,917

周安装

160

GitHub Stars

公开资料未说明

下载量

1,254
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:openclaw-gemini-cli(OpenClaw Gemini CLI 搜索)
来源仓库:https://github.com/hiromps/openclaw-gemini-cli
安装命令:
openclaw skills install openclaw-gemini-cli
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install openclaw-gemini-cli

简介

在 Linux 主机上调用本地 Gemini CLI 执行提示与 shell 辅助任务,返回结构化 JSON。

  • 适用于离线研究或隐私敏感场景,支持委派 AI 到 AI 的工作流设计。
  • 当用户要求本地推理或脚本分析时触发,需预装 Gemini CLI 并配置模型路径。
  • 依赖本地计算资源,大模型可能占用较高内存,建议关闭其他程序保证性能。
  • 输出格式固定为 JSON,便于下游处理,但原始文本需自行解析以满足多样需求。

SKILL.md

name
gemini-cli
description
Use the local Gemini CLI for one-shot prompts, structured JSON output, shell-assisted research, and delegated AI-to-AI workflows on this Linux host. Use when you want to call the installed gemini command directly via exec, verify Gemini CLI availability/auth, run fast secondary model opinions, generate or refine code/content through Gemini, or orchestrate iterative local work where OpenClaw handles files/shell while Gemini provides another model's output.

Gemini CLI

Use the locally installed gemini command through exec.

What this skill is for

Use this skill when you want Gemini CLI as a second brain on the same Linux machine. Typical uses:

  • Get a second opinion from another model
  • Ask Gemini to draft code, UI text, page copy, SQL, shell, or content
  • Ask Gemini for structured JSON that OpenClaw can post-process
  • Let OpenClaw inspect/edit files while Gemini generates plans, code, or rewrites
  • Run quick one-shot prompts without spawning a separate ACP harness

This skill is for local CLI usage, not browser automation. If the user wants deep coding delegation over many steps, prefer ACP sessions or coding-agent.

Safety boundary

Gemini CLI can influence what gets executed, but it does not get direct tool access by itself. Keep the control loop like this:

  1. OpenClaw reads files and inspects the environment
  2. OpenClaw sends a bounded prompt to Gemini CLI
  3. OpenClaw reviews Gemini output
  4. OpenClaw decides what to execute, edit, or reject

Do not blindly pipe Gemini-generated shell into execution. Review before running anything destructive or external.

First-time setup and preflight

If this is the first time using Gemini CLI on a machine, do not assume install alone is enough. The user should complete Gemini CLI authentication first, then run a smoke test.

Basic checks:

which gemini
gemini --help
gemini -p "hello"

Interpretation:

  • If gemini --help works but gemini -p "hello" fails, auth is usually missing or expired.
  • If gemini -p "hello" returns a normal answer, the CLI is ready.

Practical rule:

  1. Install Gemini CLI
  2. Complete Gemini CLI login/authentication if prompted by the CLI
  3. Run gemini -p "hello"
  4. Only then rely on this skill

Known note on this machine:

  • Gemini CLI may warn that keytar is missing and fall back to FileKeychain.
  • That is not fatal if the prompt still completes.

Core usage patterns

1) Simple one-shot prompt

gemini -p "Summarize the tradeoffs between Astro and Next.js for a landing page site."

Use for quick answers, rewrites, summaries, naming, content ideas, or code snippets.

2) Save output to a file for later processing

gemini -p "Generate 5 hero headline options for a SaaS analytics site." > /tmp/gemini-headlines.txt

Then read or parse that file with OpenClaw tools.

3) Request strict JSON

Ask Gemini to return only JSON.

gemini -p 'Return only valid JSON: {"pages":[{"path":"/","title":"...","sections":["..."]}]}'

Best practice:

  • Explicitly say "Return only valid JSON"
  • Give the exact schema shape
  • Avoid markdown fences
  • Validate before trusting

4) Feed file context safely

Prefer bounded context, not giant dumps.

cat ./src/app/page.tsx | gemini -p "Review this file and suggest a cleaner component structure. Return concise bullet points only."

Better yet, use OpenClaw read first and then craft a focused prompt.

5) Multi-step AI-to-AI workflow

Recommended pattern:

  1. OpenClaw inspects repo/files
  2. Gemini produces plan/spec/UI copy/code draft
  3. OpenClaw applies edits locally
  4. Gemini reviews diff or rewritten file
  5. OpenClaw finalizes

This is the right way to get “AI同士が会話して自律的に作る” behavior without surrendering execution control.

Good prompts for website generation

Site spec prompt

gemini -p 'You are helping design a small website. Return only JSON with keys: stack, pages, components, copy_style, seo_keywords, risks. Product: local Instagram analytics service for Japanese small businesses. Goal: conversion-focused landing page.'

Copywriting prompt

gemini -p 'Write Japanese landing page copy for a service that improves Instagram operations for stores. Tone: energetic, trustworthy, masculine, conversion-focused. Return sections for hero, pain points, benefits, CTA, FAQ.'

UI implementation prompt

gemini -p 'Generate a single-file HTML landing page with embedded CSS for a Japanese marketing service. Make it mobile-first, bold, readable, and production-lean. Output code only.'

Refactor/review prompt

gemini -p 'Review this React component for readability and conversion-focused UX. Return only: issues, fixes, rewritten component.'

When to use exec vs ACP/session delegation

Use Gemini CLI via exec when:

  • The task is one-shot or short-loop
  • You want another model's wording or plan quickly
  • OpenClaw remains the main orchestrator
  • You only need text/code output from Gemini

Do not force Gemini CLI through exec when:

  • The task needs a persistent coding agent loop
  • The task needs thread-bound collaboration in chat
  • The task needs autonomous repo exploration over a long time
  • The task needs tool use beyond shell text I/O

For those, prefer ACP sessions.

Recommended command patterns

Clean text response

gemini -p "<prompt>"

Model switching

If the installed Gemini CLI supports model selection flags in its current version, prefer explicit model selection when you need predictable behavior. Check supported options first:

gemini --help

Common practice:

  • inspect help output for model-related flags or config options
  • set the model explicitly when running important prompts
  • reuse the same model during a multi-step workflow to reduce drift

Safe guidance for this skill:

  • do not guess unsupported flags
  • verify the exact syntax from gemini --help on the current machine
  • if a default model changed unexpectedly, re-run with an explicit model setting supported by that CLI version

JSON capture

gemini -p 'Return only valid JSON with keys ...' > /tmp/gemini.json

Large prompt from file

Use a temp file when the prompt gets long or must be reproducible.

cat /tmp/prompt.txt | gemini -p "$(cat)"

If shell quoting gets ugly, write a temp prompt file first with write and use shell substitution carefully.

Operating rules for this workspace

  • Use Gemini CLI as an advisor/generator, not an unsupervised executor
  • Let OpenClaw own file edits, command execution, and validation
  • For coding work, prefer this loop: inspect → ask Gemini → edit locally → test → ask Gemini to review
  • If Gemini outputs code, save it to a temp file or inspect inline before applying
  • If the output is meant to drive shell commands, require an explicit review step
  • If authentication fails or Gemini hangs, fall back to OpenClaw-native work or ACP delegation

Optional helper scripts

If you need repeatable flows, use the bundled scripts in scripts/:

  • scripts/gemini_json.sh — ask Gemini for JSON-only output
  • scripts/gemini_review.sh — send a file to Gemini for review with a fixed prompt wrapper

Read those scripts before modifying them.

Troubleshooting

CLI exists but prompts fail

  • Check auth state by running a tiny prompt like gemini -p "hello"
  • If that fails, complete Gemini CLI login/authentication first
  • Expect possible FileKeychain fallback warning
  • If output still returns, it is usable

Need to change models but not sure how

  • Run gemini --help
  • Look for model-selection flags or config options supported by that installed version
  • Use explicit model selection for important or repeatable workflows
  • Do not rely on guessed flags copied from a different Gemini CLI version

Output is too fluffy

  • Demand exact format
  • Say Return only valid JSON
  • Say Output code only
  • Give explicit section names or schema

Shell quoting is breaking the prompt

  • Write the prompt to a temp file first
  • Avoid nested quote hell
  • Keep prompts plain and deterministic

User wants full autonomous site building

That is possible only in a controlled loop. Use Gemini CLI to generate plans/code, but keep execution and editing in OpenClaw. For larger builds, combine this skill with ACP or coding-agent.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

90.33%
按下载量换算1,133

安全审计

VirusTotal

可疑

ClawScan

可疑

Static analysis

通过

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills