Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问许可证需确认审计提醒

gemini-cliGemini CLI

Agent Skill

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

总安装

297

周安装

12

GitHub Stars

2

下载量

93
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/biggora/claude-plugins-registry --skill gemini-cli

简介

用于查找、检索和筛选相关信息,支持关键词与任务场景定位。

  • 适合快速获取候选结果,结合 Gemini CLI 扩展工作流程。
  • 使用时需确认来源仓库与安装命令,核验具体用法。
  • 建议检查权限与维护状态,避免触发未授权操作。
  • gemini-cli 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Gemini CLI Skill

Gemini CLI is an open-source AI agent that brings Gemini models directly into the terminal. It supports interactive REPL sessions, headless/non-interactive scripting, MCP servers, custom slash commands, and extension-based workflows.

Reference files (read when needed):

  • references/commands.md — slash commands, built-in commands reference
  • references/configuration.md — settings.json, GEMINI.md, environment variables
  • references/mcp-and-extensions.md — MCP server setup, extensions authoring
  • references/headless-and-scripting.md — non-interactive mode, automation, CI/CD patterns

Installation

# Instant use, no install
npx @google/gemini-cli

# Global install (recommended)
npm install -g @google/gemini-cli

# macOS/Linux via Homebrew
brew install gemini-cli

# Specific channels
npm install -g @google/gemini-cli@latest    # stable (weekly Tuesdays)
npm install -g @google/gemini-cli@preview   # preview (weekly, less vetted)
npm install -g @google/gemini-cli@nightly   # nightly (daily builds)

Authentication

Choose one method:

Option 1: Google OAuth (recommended for individuals)

gemini   # → choose "Login with Google" → browser flow
  • Free: 60 req/min, 1,000 req/day
  • No API key needed

Option 2: Gemini API Key

export GEMINI_API_KEY="your_key_here"
# Get key: https://aistudio.google.com/apikey
gemini
  • Free: 1,000 req/day (Gemini Flash/Pro mix)
  • Can also store in ~/.gemini/.env or ./.gemini/.env

Option 3: Application Default Credentials (ADC)

gcloud auth application-default login
gemini
  • Uses Google Cloud ADC — no API key needed
  • Best for developers already using Google Cloud

Option 4: Vertex AI (enterprise)

export GOOGLE_GENAI_USE_VERTEXAI=true
export GOOGLE_CLOUD_PROJECT="your-project-id"
gcloud auth application-default login
gemini

Basic Usage

# Start interactive session in current directory
gemini

# Include extra directories as context
gemini --include-directories ../lib,../docs

# Use a specific model
gemini -m gemini-2.5-flash
gemini -m gemini-2.5-pro

# Non-interactive: single prompt, then exit
gemini -p "Explain the architecture of this codebase"

# Reference files in prompt with @ syntax
gemini -p "Review @./src/auth.py for security issues"

# Pipe stdin
cat error.log | gemini -p "What went wrong here?"
git diff --cached | gemini -p "Write a concise commit message"

Headless / Non-Interactive Mode

Headless mode is triggered by -p flag or non-TTY environment.

# Plain text output (default)
gemini -p "Explain Docker" > output.txt

# Structured JSON output (recommended for scripting)
gemini -p "Explain Docker" --output-format json

# Streaming JSONL (for long-running tasks)
gemini -p "Run tests and analyze results" --output-format stream-json

# Extract response field with jq
gemini -p "List top 5 Python testing frameworks" --output-format json | jq -r '.response'

# Auto-accept all tool actions (auto-approve mode) — use with care in automation
gemini -p "Generate unit tests for @./src/utils.js" --auto-approve

JSON output schema

{
  "response": "...",
  "stats": {
    "models": { "gemini-2.5-pro": { "tokens": {...}, "api": {...} } },
    "tools": { "totalCalls": 1, "totalSuccess": 1 },
    "files": { "totalLinesAdded": 0, "totalLinesRemoved": 0 }
  }
}

For full scripting patterns → read references/headless-and-scripting.md


Interactive Session: Key Commands

CommandDescription
/helpList all commands
/toolsShow available tools
/mcp listList MCP servers and their status
/mcp statusDetailed MCP connection info
/chat save <name>Save current session
/chat resume <name>Resume a saved session
/memory add <text>Add persistent fact to GEMINI.md memory
/memory showShow current memory contents
/restoreList checkpoints
/restore <file>Restore a checkpoint
/bugReport an issue directly from CLI
Ctrl+YToggle auto-approve mode

GEMINI.md — Project Context Files

Create GEMINI.md at project root (or ~/.gemini/GEMINI.md for global context):

# My Project

## Guidelines
- All Python code must follow PEP 8
- Use 2-space indentation for JavaScript

## Architecture
@./docs/architecture.md

## Style Guides
@./src/frontend/react-style-guide.md

Hierarchy (all are loaded and merged):

  1. ~/.gemini/GEMINI.md — global user context
  2. <project>/.gemini/GEMINI.md — project context
  3. Sub-directory GEMINI.md files — scoped context

Custom Slash Commands (.toml)

Create .toml files to define reusable commands:

Locations:

  • ~/.gemini/commands/<name>.toml → user-scoped /name
  • <project>/.gemini/commands/<name>.toml → project-scoped /name
  • <project>/.gemini/commands/git/commit.toml → namespaced /git:commit

Minimal example (~/.gemini/commands/plan.toml):

prompt = "Only plan the changes step-by-step. Do NOT start implementation yet."

Full example (~/.gemini/commands/review.toml):

description = "Code review with focus on security and performance"
prompt = """
Review the following code for:
1. Security vulnerabilities
2. Performance issues
3. Code style

Code to review: {{args}}
"""

With shell execution:

description = "Review staged git changes"
prompt = "Review these git changes for issues:\n!{git diff --cached}"

For MCP prompts as slash commands → read references/mcp-and-extensions.md


settings.json Configuration

Location: ~/.gemini/settings.json (global) or <project>/.gemini/settings.json

{
  "model": {
    "name": "gemini-2.5-pro"
  },
  "theme": {
    "name": "dark"
  },
  "autoAccept": false,
  "tools": {
    "core": ["read_file", "write_file", "run_shell_command"],
    "disabled": ["dangerous_tool"]
  },
  "mcpServers": {
    "github": {
      "command": "npx",
      "args": ["-y", "@modelcontextprotocol/server-github"],
      "env": {
        "GITHUB_TOKEN": "$GITHUB_TOKEN"
      }
    }
  }
}

For full configuration reference → read references/configuration.md


MCP Server Integration

Add to ~/.gemini/settings.json:

{
  "mcpServers": {
    "myServer": {
      "command": "node",
      "args": ["./mcp-server.js"],
      "env": { "API_KEY": "$MY_API_KEY" },
      "timeout": 15000,
      "trust": false
    }
  }
}

CLI management commands:

gemini mcp add <name>     # add server
gemini mcp list           # list configured servers
gemini mcp remove <name>  # remove server

Invoke tools in prompts:

> @github List my open pull requests
> @database Find inactive users from last 30 days

For detailed MCP setup and extensions → read references/mcp-and-extensions.md


Extensions

Extensions bundle MCP servers + GEMINI.md + custom commands into a reusable package.

Install from URL:

gemini extensions install https://github.com/GoogleCloudPlatform/cloud-run-mcp

Browse gallery: https://geminicli.com/extensions/

Extension structure:

my-extension/
├── gemini-extension.json    # manifest
└── GEMINI.md                # context (optional)
// gemini-extension.json
{
  "name": "my-extension",
  "version": "1.0.0",
  "mcpServers": {
    "my-server": { "command": "node my-server.js" }
  },
  "contextFileName": "GEMINI.md",
  "excludeTools": ["run_shell_command"]
}

Common Patterns

Commit message automation

result=$(git diff --cached | gemini -p "Write a concise commit message" --output-format json)
echo "$result" | jq -r '.response' | git commit -F -

Batch file processing

for file in src/**/*.py; do
  gemini -p "Generate docstrings for @$file" --output-format json | jq -r '.response' > "${file%.py}_docs.md"
done

Security code review

cat src/auth.py | gemini -p "Review for security vulnerabilities" > security-review.txt

Generate OpenAPI spec

result=$(cat api/routes.js | gemini -p "Generate OpenAPI spec" --output-format json)
echo "$result" | jq -r '.response' > openapi.json

CI/CD pipeline integration

# In GitHub Actions / CI script
export GEMINI_API_KEY="${{ secrets.GEMINI_API_KEY }}"
gemini -p "Analyze test failures in @./test-results.xml and suggest fixes" \
  --output-format json \
  --auto-approve \
  | jq -r '.response'

Model Selection

gemini -m gemini-2.5-pro    # most powerful, 1M context
gemini -m gemini-2.5-flash  # fast, efficient (default routing)

Models available through Gemini API: gemini-2.5-pro, gemini-2.5-flash, gemini-2.0-flash, etc. For Vertex AI: additional enterprise models available.


Troubleshooting

ProblemSolution
command not found: geminiRun npm install -g @google/gemini-cli or use npx
Auth errorsCheck GEMINI_API_KEY env var or re-run gemini and re-authenticate
Rate limit errorsFree tier: 60 req/min, 1000/day — wait or upgrade
MCP server not connectingCheck /mcp status, verify server binary is installed
Slash command not recognized in headlessKnown limitation — embed prompt text directly for now
Tool confirmation loopsAdd --auto-approve flag for automation, or set "autoAccept": true in settings

Full troubleshooting: https://geminicli.com/docs/resources/troubleshooting/

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.32%
按下载量换算33

Claude

33.25%
按下载量换算31

Cursor

18.08%
按下载量换算17

Gemini CLI

8.85%
按下载量换算8

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

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

来源信息

继续浏览同类 Skills