一键导入
google-ads-create-bid-modifiers
Use when adjusting Google Ads bid modifiers (device, location, audience). Loaded after the create master skill.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Use when adjusting Google Ads bid modifiers (device, location, audience). Loaded after the create master skill.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Use when researching competitor ad creatives: find competitors, brand IDs, evergreen winners, breakout winners, pattern analysis.
Use when generating Word documents (.docx). Uses the marble_docx API.
Use when generating PDF documents. Uses the marble_pdf API.
Use when generating PowerPoint presentations (.pptx). Uses the marble_pptx API.
Use when generating Excel workbooks (.xlsx). Pandas + openpyxl patterns for multiple sheets, number formats, freeze panes, formulas.
Use for any GA4 query whose result will be reported back to the user. Covers conversions ≠ transactions distinction, channel-subset-sum trap with sessionDefaultChannelGroup, intraday partial-data discipline, Paid Social aggregation rules, API-vs-UI attribution mismatch.
| name | google-ads-create-bid-modifiers |
| description | Use when adjusting Google Ads bid modifiers (device, location, audience). Loaded after the create master skill. |
Tool: google_ads_propose_update_bid_modifiers. Tool schema describes shape; this skill covers the business rules.
Adjust bid modifiers and ad-schedule criteria on an existing campaign or ad group. Supported target_types: DEVICE, AD_SCHEDULE, LOCATION, AGE_RANGE. Each criterion is created automatically when you ADD a modifier on a target that doesn't have one yet.
There is no separate create tool — ADD on a new target IS the create.
bid_modifier = 0 is allowed only for DEVICE (opt-out of that device). Setting 0 on AD_SCHEDULE / LOCATION / AGE_RANGE rejects.bid_modifier range: 0.1 – 10.0 (inclusive). Anything outside rejects.ZERO, FIFTEEN, THIRTY, FORTY_FIVE. Other values reject.device + ad_schedule (etc.) in the same change item.To restrict serving to a window without changing bids, omit bid_modifier on the AD_SCHEDULE entry. Google interprets this as "serve only during these schedules." Useful for "only run weekdays 9–5" requests.
We don't expose entity removal, but bid modifiers are criterion-level — to undo an effect:
DEVICE / LOCATION / AGE_RANGE: UPDATE the change to bid_modifier = 1.0 (neutral — no boost, no cut).AD_SCHEDULE: UPDATE to set a neutral bid_modifier = 1.0 to preserve the schedule but stop adjusting bids; if the user wants to remove the schedule restriction entirely, that requires criterion deletion which this skill doesn't expose — tell the user to manage it in the Ads UI.When you need an existing criterion's id (to UPDATE):
SELECT campaign_criterion.criterion_id, campaign_criterion.type, campaign_criterion.bid_modifier
FROM campaign_criterion
WHERE campaign.id = <campaign_id> AND campaign_criterion.bid_modifier IS NOT NULL
Or ad_group_criterion for ad-group-scoped modifiers.
Done. Updated bid modifiers on campaign
<name>: +20% MOBILE, +30% AD_SCHEDULE Mon-Fri 9-5.