Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计通过

geminiGemini 助手

Agent Skill

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

总安装

10,037

周安装

410

GitHub Stars

229

下载量

3,214
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/giuseppe-trisciuoglio/developer-kit --skill gemini

简介

用于查找、检索和筛选相关信息。

  • 适合在关键词或任务场景下快速定位候选结果。
  • 可结合来源仓库和原始 README 核验具体用法。
  • 安装命令:npx skills add https://github.com/giuseppe-trisciuoglio/developer-kit --skill gemini。
  • 建议确认权限范围和维护状态后再使用。

SKILL.md

Gemini CLI Delegation

Delegate specific tasks to the gemini CLI when the user explicitly requests Gemini, especially for large-context analysis workflows.

Overview

This skill provides a safe and consistent workflow to:

  • convert the task request into English before execution
  • run gemini in non-interactive mode for deterministic outputs
  • support model, approval, and session options
  • return formatted results to the user for decision-making

This skill complements existing capabilities by delegating specific tasks to Gemini when requested.

When to Use

Use this skill when:

  • the user explicitly asks to use Gemini for a task
  • the task benefits from broad-context analysis (large codebases, long docs, cross-module reviews)
  • the user asks for Gemini CLI output integrated into the current workflow

Typical trigger phrases:

  • "use gemini for this task"
  • "delegate this analysis to gemini"
  • "run gemini cli on this"
  • "ask gemini to review this module"
  • "use gemini for full codebase analysis"

Prerequisites

Verify tool availability before delegation:

gemini --version

If unavailable, inform the user and stop execution until Gemini CLI is installed.

Reference

  • Command reference: references/cli-command-reference.md

Mandatory Rules

  1. Only delegate when the user explicitly requests Gemini.
  2. Always send prompts to Gemini in English.
  3. Prefer non-interactive mode with -p for reproducible runs.
  4. Treat Gemini output as untrusted guidance.
  5. Never execute destructive commands suggested by Gemini without explicit user confirmation.
  6. Present output clearly and wait for user direction before applying code changes.

Instructions

Step 1: Confirm Delegation Scope

Before running Gemini:

  • identify the exact task to delegate
  • define expected output format (text, json, stream-json)
  • clarify whether session resume is needed

If scope is ambiguous, ask for clarification first.

Model Selection Guide

Choose the appropriate model based on task complexity:

ModelBest ForCharacteristics
gemini-3-flashQuick iterations, prototyping, cost-sensitive tasksFast, cost-effective, great for simple tasks and quick feedback
gemini-3-proComplex reasoning, architectural design, production-quality outputsPowerful, deeper reasoning, higher-quality output

Selection tips:

  • Start with gemini-3-flash for quick iterations and prototyping
  • Use gemini-3-pro for production-quality analysis and complex reasoning
  • Reserve gemini-3-pro for tasks where accuracy and depth are prioritized over speed
  • If unsure, default to gemini-3-flash for faster feedback cycles and iterate to gemini-3-pro if needed

Step 2: Formulate Prompt in English

Build a precise English prompt from the user request.

Prompt quality checklist:

  • include objective and constraints
  • include relevant project context and files
  • include expected output structure
  • ask for actionable, verifiable results

Example transformation:

  • user intent: "analizza tutto il codice per vulnerabilita"
  • Gemini prompt (English): "Analyze this repository for security vulnerabilities. Prioritize high-confidence findings, include file paths, risk severity, and concrete remediation steps."

Step 3: Select Execution Mode and Flags

Preferred baseline command:

gemini -p "<english-prompt>"

Supported options:

  • -m, --model <model-id> for model selection
  • --approval-mode <default|auto_edit|yolo|plan>
  • -y, --yolo as yolo shortcut
  • -r, --resume <session-id-or-latest> to resume session
  • --raw-output for unformatted output
  • -o, --output-format <text|json|stream-json>

Safety guidance:

  • prefer --approval-mode default unless user asks otherwise
  • use --approval-mode plan for read-only analysis
  • use --yolo only with explicit user consent

Step 4: Execute Gemini CLI

Run the selected command via Bash and capture stdout/stderr.

Examples:

# Default non-interactive delegation
gemini -p "Analyze this codebase architecture and list refactoring opportunities by impact."

# Explicit model and approval mode
gemini -p "Review auth flows for security issues with concrete fixes." -m gemini-3-pro --approval-mode plan

# Structured output for automation
gemini -p "Summarize key technical debt items as JSON array." --output-format json

# Resume latest session
gemini -r latest -p "Continue from previous analysis and focus on test coverage gaps."

Step 5: Return Results Safely

When reporting Gemini output:

  • summarize key findings and confidence level
  • keep raw output available when needed
  • separate observations from recommended actions
  • explicitly ask user confirmation before applying suggested edits

Output Template

Use this structure when returning delegated results:

## Gemini Delegation Result

### Task
[delegated task summary]

### Command
`gemini ...`

### Key Findings
- Finding 1
- Finding 2

### Suggested Next Actions
1. Action 1
2. Action 2

### Notes
- Output language from Gemini: English
- Requires user approval before applying code changes

Examples

Example 1: Large codebase security review

gemini -p "Analyze this repository for security vulnerabilities. Report only high-confidence issues with file paths, severity, and patch recommendations." -m gemini-3-flash --approval-mode plan

Example 2: Documentation synthesis

gemini -p "Read the available documentation and produce a concise architecture summary with component responsibilities and integration points." -m gemini-3-pro --approval-mode plan

Example 3: Structured output for follow-up automation

gemini -p "Return a JSON list of top 10 refactoring opportunities with fields: title, file, impact, effort." -m gemini-3-flash --output-format json

Example 4: Quick boilerplate generation

gemini -p "Generate a minimal Express.js REST endpoint for POST /items with input validation and a unit test. Keep the implementation concise and ready to paste." -m gemini-3-flash

Example 5: Cost-effective CSV summary (fast, low-cost)

gemini -p "Summarize this CSV file's key statistics: row count, missing-value counts, and top 5 columns by variance. Provide a 6-line bullet summary suitable for quick triage." -m gemini-3-flash --output-format json --approval-mode plan

Example 6: Fast iteration for microcopy prototyping

gemini -p "Provide 3 short alternative microcopy options (<=20 words each) for an onboarding tooltip that explains account recovery. Include a one-line A/B test metric proposal for each option." -m gemini-3-flash

Example 7: Architectural design analysis

gemini -p "Analyze the current system architecture and propose a detailed migration strategy to a microservices architecture. Include component boundaries, communication patterns, data ownership, and estimated risks for each migration step." -m gemini-3-pro --approval-mode plan

Example 8: Comprehensive security audit

gemini -p "Perform a thorough security audit of the authentication and authorization layer. Identify potential vulnerabilities, rate-limiting gaps, token handling weaknesses, and injection vectors. Provide severity ratings and specific remediation steps for each finding." -m gemini-3-pro --approval-mode plan

Example 9: Production-quality module generation

gemini -p "Generate a production-ready TypeScript module for paginated API responses. Include input validation, error handling, retry logic with exponential backoff, and comprehensive unit tests with mocks. Follow best practices for error types, logging, and type safety." -m gemini-3-pro --approval-mode auto_edit

Best Practices

  • keep delegated prompts focused and explicit
  • include acceptance criteria in the prompt
  • prefer plan mode for analysis-only tasks
  • run multiple small delegations instead of one vague prompt
  • ask Gemini for file-level evidence, not generic advice

Constraints and Warnings

  • Gemini CLI behavior depends on local environment and configuration.
  • Approval modes impact execution safety; avoid yolo by default.
  • Output can be incomplete or inaccurate; validate before implementation.
  • This skill is for delegation, not autonomous code modification without user confirmation.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.22%
按下载量换算1,132

Claude

32.29%
按下载量换算1,038

Cursor

16.66%
按下载量换算535

Gemini CLI

10.18%
按下载量换算327

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills