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

ads广告

Agent Skill

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

总安装

512

周安装

22

GitHub Stars

1,403

下载量

180
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

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

简介

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

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

SKILL.md

Google Ads — Operate, Diagnose, Optimize

This skill is the analytical brain layered on top of the AdsAgent MCP server. The MCP server tells the agent *how* to call tools (read-only questions go through runScript + ads.gaqlParallel; mutations go through dedicated write tools). This skill tells the agent *what to think about* — the benchmarks, scoring rubrics, decision trees, and operational discipline that turn raw GAQL data into informed action.

You are an expert paid-search practitioner. Trust your judgment on tool sequencing — the references below give you the frameworks, you decide how to apply them.

Setup

Read and follow ../shared/preamble.md — handles MCP detection, API key, and account selection. Once cached, this is instant.

Operating principles

  1. Confirm before writing. Show the current value, the proposed new value, and the expected impact in dollars when you can compute it. Blind "done." erodes trust.
  2. Reads correlate, writes commit. For any analysis question, prefer one runScript call that fans out the GAQL queries you need (the server's adsagent://playbooks/audit-account and adsagent://playbooks/explain-regression resources are good starting points). Mutations always go through dedicated write tools — never wrap a write in runScript.
  3. Show numbers in dollars and percentages. Format cost as USD, CTR as percent, always cite the date range. Vague metrics are not findings.
  4. Recommend, then act. When you spot waste or opportunity, present the finding with evidence and wait for approval before mutating.
  5. Server-side guardrails are not optional. The API rejects bid changes >25% and budget changes >50%. Don't try to bypass them; split the change across days if the user wants a bigger move.
  6. Log every write per references/change-tracking.md. The changeId returned by every write tool is the user's undo handle for 7 days.
  7. moveKeywords defaults to PHRASE match and does not inherit from the source. Always pass matchType explicitly — exact-match keywords silently downgrade otherwise.

Reference framework — when to read what

Pick the lens that matches the user's question. Don't pre-load all of these; load on demand.

The user wants to…Read
Understand or rank performance, find waste, evaluate keywordsreferences/analysis-heuristics.md (entry point — links onward)
Diagnose Quality Score at the component levelreferences/quality-score-framework.md
Pick or migrate a bid strategy (manual → tCPA, etc.)references/bid-strategy-decision-tree.md
Compare metrics to industry CPA/CTR/CPC norms or apply seasonal lensreferences/industry-benchmarks.md
Score search terms, plan negatives, do n-gram analysisreferences/search-term-analysis-guide.md
Restructure campaigns, fix ad-group bloat, name things sensiblyreferences/campaign-structure-guide.md
Review previously-made changes for impactreferences/session-checks.md + references/change-tracking.md

For business context (services, brand voice, personas, unit economics), read {data_dir}/business-context.json and {data_dir}/personas/{accountId}.json. If they're missing or stale (>90 days), suggest /ads-audit.

Tool surface

The MCP server's tools/list is the source of truth for what's available — do not maintain a parallel list here. The server's instructions route the agent to:

  • Reads / analytics / dashboardsrunScript with ads.gaql() and ads.gaqlParallel(). One call, multiple GAQL queries in parallel, correlate in-script. Cast a wide net on the first call.
  • Schema discoverygetResourceMetadata, listQueryableResources (call before writing GAQL against an unfamiliar resource).
  • Specialized non-GAQL readssearchGeoTargets, getKeywordIdeas, getRecommendations, getChanges, reviewChangeImpact.
  • Mutations → dedicated write tools (pauseKeyword, updateBid, createCampaign, bulkAddKeywords, etc.). Each returns a changeId for undoChange within 7 days.

If you're unsure whether a write tool exists for what the user asked, check tools/list. New capabilities (bidding strategies, callout assets, negative keyword lists, conversion uploads, guardrails) ship there before they ship here.

Account baseline

Maintain {data_dir}/account-baseline.json for anomaly detection across sessions. Update at the end of any session where you pulled rolling-window campaign metrics — the data is already in your context, no extra API call.

{
  "accountId": "<from config>",
  "lastUpdated": "<ISO 8601>",
  "campaigns": {
    "<campaignId>": {
      "name": "<campaign name>",
      "rolling30d": { "avgDailySpend": 0, "totalConversions": 0, "avgCpa": 0, "avgCtr": 0, "avgConvRate": 0, "totalSpend": 0 },
      "recent7d": { "spend": 0, "conversions": 0, "cpa": 0, "ctr": 0, "clicks": 0, "impressions": 0 },
      "snapshotDate": "<ISO 8601>"
    }
  }
}

Update formula: rolling30d = (0.7 × previous_rolling30d) + (0.3 × recent7d × (30/7)). The (30/7) factor projects the 7-day numbers to a 30-day equivalent. New campaigns: initialize rolling30d from recent7d directly. Cap at 50 campaigns (spend > $0 in last 30 days only) so the file stays small.

When the baseline is older than 24h, references/session-checks.md describes the anomaly comparison to run.

Conditional handoffs

After analysis, proactively offer the right next skill:

  • Ad copy issues (CTR below benchmark in 2+ ad groups) → /ads-copy
  • No business context, or context >90 days old/ads-audit first
  • Converting search terms not yet keywords (3+) → offer to add them with bulkAddKeywords
  • High CTR, low CVR on multiple ad groups/ads-landing (the page is the bottleneck, not the ad)
  • Impression share declining or new competitor patterns/ads-compete if available, otherwise note auction-insights are now visible via GAQL auction_insight_* resources

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

32.56%
按下载量换算59

Claude

30.82%
按下载量换算55

Cursor

20.63%
按下载量换算37

Gemini CLI

9.85%
按下载量换算18

安全审计

Gen Agent Trust Hub

未通过

Socket

可疑

Snyk

可疑

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills