一键导入
safe-write-operations
Reference — rules for safely executing write/destructive operations against ad accounts. Always loaded into the performance-marketer agent.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Reference — rules for safely executing write/destructive operations against ad accounts. Always loaded into the performance-marketer agent.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | safe-write-operations |
| description | Reference — rules for safely executing write/destructive operations against ad accounts. Always loaded into the performance-marketer agent. |
| user-invocable | false |
Calls to run_write_operation can spend money, pause campaigns, change budgets, edit live creatives, send emails, or charge customers. Treat every one as a production change.
The trigger is the requires_approval: true flag on the operation in the find_operations response. If requires_approval: true, you must use run_write_operation and must follow the four-step protocol below. If requires_approval: false, use run_operation and skip this protocol — no confirmation needed.
Always follow this exact sequence before calling run_write_operation:
"I'm about to pause the Google Ads campaign 'Brand — US Search' (ID
1234567890) in account Acme US (MCC 999-888-7777). This will stop spend immediately."
run_operation if you don't know.run_operation and confirm the change landed.gads_mutate is the last-resort generic. If a dedicated op exists (e.g. gads_update_campaign_budget), use it — clearer intent, better validation, fewer footguns.run_write_operation errorsget_operation_inputs, fix the payload, ask the user to confirm the corrected call before retrying.