Token导航 LogoToken导航TokenDH.com
开发需要联网github未标认证来源可访问clear审计提醒

google-ads-scriptsGoogle ADS scripts 命令行

Agent Skill

google-ads-scripts 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

288

周安装

12

GitHub Stars

51

下载量

96
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/henkisdabro/wookstar-claude-code-plugins --skill google-ads-scripts

简介

google-ads-scripts 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中整理仓库状态与变更事项。

  • 适用于代码协作、仓库管理和开发流程支持等场景。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装并使用。
  • 安装前需确认权限范围、维护状态,以及是否会触发联网或文件操作。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Google Ads Scripts

Overview

Guidance for developing Google Ads Scripts using the AdsApp API. Automate campaign management, bid optimisation, performance reporting, and bulk operations through JavaScript running in the Google Ads editor.

When to Use This Skill

  • Automating campaign management or bulk operations
  • Managing keywords and adjusting bids programmatically
  • Creating performance reports or dashboards
  • Implementing automated rules for campaign optimisation
  • Optimising ad spend based on ROAS or CPA targets
  • Monitoring quality scores, budgets, or conversions
  • Debugging Google Ads Script code or API issues

Core Capabilities

1. Campaign Operations

Manage campaigns programmatically - creation, modification, status changes, bulk updates. Use AdsApp.campaigns() with conditions to filter by status, budget, name patterns, or type. Apply labels for organisation.

2. Keyword & Bid Management

Automate keyword targeting and bid adjustments based on performance. Filter by quality score, adjust max CPC bids based on ROAS/CPA targets, add/remove negative keywords, and implement bid optimisation algorithms.

3. Performance Reporting

Generate custom reports using campaign, ad group, keyword, and ad statistics. Retrieve metrics for custom date ranges, calculate derived metrics (CTR, CPC, conversion rate), and export data to Google Sheets.

4. Budget Management

Control spending and allocate budgets across campaigns. Get/set daily campaign budgets, monitor spend against thresholds, pause campaigns when limits are reached, and distribute budgets based on performance.

5. Automated Rules & Optimisation

Build intelligence into campaign management with automated decision-making. Pause low-performing keywords, increase bids for high-performers, adjust budgets based on day-of-week patterns.

6. Error Handling & Resilience

Implement robust error handling for API limits, quota issues, and runtime errors. Use try-catch blocks, null checks, sheet-based logging for audit trails. Be aware of the 30-minute execution limit.

Quick Start

The most common pattern - pause keywords with low quality scores and high spend:

function pauseLowQualityKeywords() {
  const keywords = AdsApp.keywords()
    .withCondition('keyword.status = ENABLED')
    .withCondition('keyword.quality_info.quality_score < 4')
    .withCondition('keyword.metrics.cost > 100000000')
    .get();

  let count = 0;
  while (keywords.hasNext()) {
    keywords.next().pause();
    count++;
  }
  Logger.log(`Paused ${count} low-quality keywords`);
}

Best Practices

  • Batch operations - collect entities first, then process; avoid individual API calls in loops
  • API-level filtering - use .withCondition() instead of filtering in JavaScript
  • Error handling - wrap operations in try-catch, log errors to sheets or email
  • Execution limits - use .withLimit() and batch processing for large accounts (30-min timeout)
  • Micros conversion - currency values are in micros (divide by 1,000,000 for display)
  • Audit logging - log all changes to Google Sheets with timestamps

See references/best-practices.md for detailed code examples of each practice.

Integration with Other Skills

  • google-apps-script - Use for Google Sheets reporting, Gmail notifications, Drive file management, and trigger setup
  • ga4-measurement-protocol - Combine with GA4 for tracking script-triggered events
  • gtm-api - Coordinate with GTM configurations for holistic tracking

Validation & Testing

Use the validation scripts in scripts/ for pre-deployment checks:

  • scripts/validators.py - Validate campaign data, bid values, budget amounts before applying changes

Troubleshooting

Common issues:

  1. Execution timeout - reduce scope with .withLimit() or process in batches
  2. Quota exceeded - reduce API call frequency, use cached data
  3. Type errors - remember micros conversion for currency values
  4. Null values - always check for null before accessing properties

Use Logger.log() for debugging - view logs via View > Logs in the script editor.

References

Load these on demand for detailed documentation:

  • references/ads-api-reference.md - Complete AdsApp API reference including selectors, methods, conditions, statistics, and enterprise patterns
  • references/examples.md - Detailed code examples: pause low-quality keywords, optimise bids by ROAS, export campaign performance to Sheets
  • references/best-practices.md - Best practices with code blocks: batch operations, API filtering, error handling, micros conversion, audit logging
  • references/patterns.md - Reusable automation patterns: conditional bid adjustment, quality score monitoring

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenCode

27.91%
按下载量换算27

Claude Code

19.23%
按下载量换算18

Codex

18.54%
按下载量换算18

Cursor

11.7%
按下载量换算11

mcpjam

8.11%
按下载量换算8

command-code

3.03%
按下载量换算3

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

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

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。

来源信息

继续浏览同类 Skills