Token导航 LogoToken导航TokenDH.com
研究检索执行命令github未标认证来源可访问许可证需确认审计异常

geminiGemini 助手

Agent Skill

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

总安装

549

周安装

22

GitHub Stars

1,374

下载量

178
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/nowork-studio/toprank --skill gemini

简介

用于查找、检索和筛选相关信息。gemini 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

  • 适合根据关键词或任务场景定位候选结果。
  • 可结合来源仓库和 README 继续核验用法。
  • 安装前建议确认权限范围和维护状态。适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。
  • 注意可能触发联网或命令执行,需评估安全风险。

SKILL.md

Gemini — Cross-Model Second Opinion

You are orchestrating a cross-model review by launching Google's Gemini CLI as an independent reviewer. Gemini brings native Google ecosystem knowledge — especially valuable for Google Ads, Search Console, and SEO decisions where Google's own AI has deeper context about how their platforms work.

Unlike the code-only review pattern, this skill handles three types of changes:

  1. Code changes — diffs, new files, refactors
  2. Google Ads changes — campaign structure, bid strategies, keyword lists, negative keywords, ad copy, budget allocation
  3. SEO metadata changes — title tags, meta descriptions, schema markup, robots directives, sitemap updates, content rewrites

Step 0 — Detect Gemini CLI

command -v gemini >/dev/null 2>&1 && echo "GEMINI_FOUND" || echo "GEMINI_NOT_FOUND"

If GEMINI_NOT_FOUND: Stop and tell the user:

Gemini CLI is not installed. Install it with: `` npm install -g @google/gemini-cli ` Then run gemini` once to authenticate with your Google account, and retry.

If GEMINI_FOUND: continue silently.


Step 1 — Detect Mode

Parse the user's request to determine the mode. Match against these patterns:

ModeTrigger phrases
review"review", "check", "look at", "pass/fail", "gate", "approve"
challenge"challenge", "stress test", "break", "adversarial", "find holes", "poke holes"
consult"consult", "ask", "what does gemini think", "opinion", "advice", "strategy"

If ambiguous: default to review for changes that exist in the diff, or consult if the user is asking a question with no pending changes.


Step 2 — Detect Change Type

Determine what kind of changes are being reviewed. Check in this order:

2a — Check for Google Ads changes

Look for signs of Ads-related work in the current conversation context:

  • Recent MCP tool calls to mcp__notfair__* (or legacy mcp__adsagent__*) or mcp__google_ads_mcp__*
  • Discussion of campaigns, keywords, bids, budgets, ad copy, negative keywords
  • Files like .notfair/change-log.json (or legacy .adsagent/change-log.json) or Ads-related config changes

If found, set CHANGE_TYPE=google-ads.

2b — Check for SEO metadata changes

Look for:

  • Recent calls to SEO skills (seo-analysis, meta-tags-optimizer, schema-markup-generator)
  • Discussion of title tags, meta descriptions, schema markup, robots.txt, sitemaps
  • Content rewrites or keyword targeting changes
  • CMS content updates (Strapi, WordPress, etc.)

If found, set CHANGE_TYPE=seo.

2c — Check for code changes

git diff --stat HEAD 2>/dev/null || echo "NO_GIT_DIFF"

If there's a diff, set CHANGE_TYPE=code.

2d — Mixed or unclear

If multiple types are present, set CHANGE_TYPE=mixed. If nothing is found and mode is consult, set CHANGE_TYPE=consult-only.


Step 3 — Build the Context

Assemble the context payload that Gemini will review. Tailor it to the change type.

For google-ads changes:

Summarize the proposed Ads changes in a structured block:

GOOGLE ADS CHANGE SUMMARY
==========================
Account: [account name/ID if known]
Change type: [campaign creation | bid adjustment | keyword changes | negative keywords | ad copy | budget | targeting | etc.]

BEFORE (current state):
[Describe current campaign/keyword/bid state]

AFTER (proposed changes):
[Describe what will change]

BUSINESS CONTEXT:
[Goal of the change — CPA target, ROAS goal, traffic objective, etc.]

For seo changes:

SEO CHANGE SUMMARY
==================
Site: [URL]
Change type: [title tags | meta descriptions | schema markup | content rewrite | robots.txt | sitemap | etc.]

BEFORE (current state):
[Current metadata/content]

AFTER (proposed changes):
[New metadata/content]

TARGET KEYWORDS:
[Keywords being targeted, if applicable]

SEARCH INTENT:
[Informational / navigational / commercial / transactional]

For code changes:

BRANCH=$(git rev-parse --abbrev-ref HEAD 2>/dev/null || echo "unknown")
DIFF=$(git diff HEAD 2>/dev/null)
STAT=$(git diff --stat HEAD 2>/dev/null)

Combine the diff stat and full diff into the context.

For mixed changes:

Combine all applicable sections above.


Step 4 — Run Gemini

Build and execute the Gemini CLI command based on mode and change type.

Review Mode

gemini -p "You are a senior reviewer with deep expertise in Google's advertising platform, Google Search, and SEO best practices. You are reviewing proposed changes for correctness, effectiveness, and potential risks.

CHANGE TYPE: ${CHANGE_TYPE}

${CONTEXT}

Evaluate these changes and produce a structured review:

1. VERDICT: PASS or FAIL (use FAIL if any blocking issue exists)

2. BLOCKING ISSUES (if any):
   - Issue, why it matters, and how to fix it

3. WARNINGS (non-blocking but worth considering):
   - Concern and recommendation

4. STRENGTHS:
   - What the changes do well

For Google Ads changes, specifically check:
- Policy compliance (disapprovals, trademark issues, restricted content)
- Budget efficiency (is spend allocated to highest-intent keywords?)
- Keyword conflicts (cannibalization, broad match pitfalls, missing negatives)
- Landing page alignment (do ads match what the page delivers?)
- Bid strategy fit (does the strategy match the campaign goal?)

For SEO changes, specifically check:
- Title tag length (under 60 chars) and keyword placement (front-loaded?)
- Meta description length (under 160 chars) and call-to-action presence
- Schema markup validity and completeness
- Potential keyword cannibalization across pages
- Search intent alignment (does the content match what users expect?)
- E-E-A-T signals (expertise, experience, authoritativeness, trustworthiness)
- Internal linking opportunities missed

For code changes, check:
- Correctness and edge cases
- Security issues
- Performance concerns
- Breaking changes" 2>&1

Capture the output. If the exit code is non-zero, report the error to the user and suggest checking gemini authentication.

Challenge Mode

gemini -p "You are a seasoned and skeptical growth advisor who has managed eight-figure Google Ads budgets and scaled organic traffic for major brands. You have expert-level knowledge of Google's latest policies — Ads editorial standards, Performance Max behavior, broad match changes, Search quality guidelines, spam policies, Core Web Vitals thresholds, and structured data requirements.

Your role is devil's advocate. The team is proposing changes and they want you to pressure-test them before committing. Do not be agreeable — your value is in catching what optimism misses. Evaluate based on evidence, data, and your experience with how Google's systems actually behave (not how documentation says they should).

CHANGE TYPE: ${CHANGE_TYPE}

${CONTEXT}

For each proposed change:

1. STATE THE ASSUMPTION — What is the team assuming will happen?
2. CHALLENGE IT — Why might that assumption be wrong? Cite specific Google policy, algorithm behavior, or auction mechanics where relevant. Reference real patterns you'd expect to see in the data.
3. WHAT DOES THE DATA SAY? — What metrics or signals should the team check before and after to validate this change? Be specific (e.g. 'compare impression share lost to rank before and 14 days after', not 'monitor performance').
4. VERDICT — For each change: SOUND, RISKY, or RETHINK. One sentence explaining why.

Finally, give an overall honest opinion: is this set of changes worth shipping as-is, or should the team pause and address specific concerns first? Be concise and professional — no filler, no hedging." 2>&1

Consult Mode

gemini -p "You are a Google Ads and SEO expert consultant with deep knowledge of Google's ecosystem — Search algorithms, Ads auction mechanics, Search Console, and web performance. The user wants your independent perspective.

CONTEXT:
${CONTEXT}

USER QUESTION:
${USER_QUESTION}

Provide a clear, opinionated answer. If you disagree with a proposed approach, say so directly and explain why. Draw on Google-specific knowledge — ad auction dynamics, search ranking factors, Quality Score mechanics, Core Web Vitals thresholds, etc." 2>&1

Step 5 — Present Results

5a — Format the Gemini output

Present Gemini's response with a clear header:

Gemini Review (${CHANGE_TYPE} | ${MODE} mode) [Gemini's formatted output]

5b — Cross-model analysis (if Claude already reviewed)

If Claude has already reviewed the same changes (e.g., via /toprank:seo-analysis or /toprank:google-ads-audit earlier in the conversation), produce a cross-model comparison:

Cross-Model Analysis: Claude vs Gemini Overlapping findings (both flagged): - [Finding 1] - [Finding 2] Claude-only findings: - [Finding that only Claude caught] Gemini-only findings: - [Finding that only Gemini caught] Disagreements (if any): - [Topic]: Claude says X, Gemini says Y

Overlapping findings have higher confidence — they should be addressed first. Unique findings from either model are worth investigating. Disagreements should be flagged to the user for a judgment call.

5c — Suggest next steps

Based on the results:

  • Review PASS: "Gemini approved. Ready to ship."
  • Review FAIL: "Gemini flagged blocking issues. Address them, then re-run /toprank:gemini review."
  • Challenge — HIGH risk: "Stress test surfaced high-risk scenarios. Consider the mitigations before proceeding."
  • Challenge — LOW risk: "Gemini couldn't find major attack vectors. Changes look resilient."
  • Consult: "Want me to apply any of Gemini's suggestions?"

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

39.32%
按下载量换算70

Claude

28.47%
按下载量换算51

Cursor

17.4%
按下载量换算31

Gemini CLI

9.4%
按下载量换算17

安全审计

Gen Agent Trust Hub

可疑

Socket

通过

Snyk

未通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/nowork-studio/toprank --skill gemini 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

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

来源信息

继续浏览同类 Skills