技能详情(站内镜像,无评论)
作者:danyangliu @danyangliu-sandwichlab
许可证:MIT-0
MIT-0 ·免费使用、修改和重新分发。无需归因。
版本:v1.0.1
统计:⭐ 0 · 120 · 0 current installs · 0 all-time installs
⭐ 0
安装量(当前) 0
🛡 VirusTotal :良性 · OpenClaw :可疑
Package:danyangliu-sandwichlab/ads-execution-hub
安全扫描(ClawHub)
- VirusTotal :良性
- OpenClaw :可疑
OpenClaw 评估
The skill's name and description imply cross-platform campaign execution, but the runtime instructions request no credentials, make no API calls, and are vague about 'control' actions — this mismatch is unexplained and warrants caution.
目的
Name/description promise 'control' across Meta, Google Ads, TikTok, Amazon, DSPs etc., but the skill declares no required credentials, no platform-specific setup, and no install steps. If it truly executes changes, it would need platform API credentials; as written it appears limited to producing recommendations. That mismatch is unexplained.
说明范围
SKILL.md focuses on normalization, decision rules, and operator handoff — all advisory tasks that do not require secrets or network I/O. The instructions do not tell the agent to read unrelated files or exfiltrate data. However, several parts are high-level/vague (e.g., 'trigger emergency control mode') and could be interpreted by an agent to take broader actions if implementation details are added later.
安装机制
Instruction-only skill with no install spec and no code files — lowest-risk install surface. Nothing is written to disk and there are no third-party package installs.
证书
For an 'execution' skill spanning many ad platforms one would expect declared credentials (API keys, account tokens) or at least guidance about where they are stored. The lack of any required env vars or primary credential is disproportionate to the claimed capability and creates ambiguity about whether the skill will actually perform changes or merely advise.
持久
always is false and there is no request to modify system-wide agent settings or other skills. The skill can be invoked normally; autonomous invocation is enabled by platform default but is not excessive here by itself.
安装(复制给龙虾 AI)
将下方整段复制到龙虾中文库对话中,由龙虾按 SKILL.md 完成安装。
请把本段交给龙虾中文库(龙虾 AI)执行:为本机安装 OpenClaw 技能「Ads Execution Hub」。简介:Ads Execution Hub control skill for ad campaign management and optimization acr…。
请 fetch 以下地址读取 SKILL.md 并按文档完成安装:https://raw.githubusercontent.com/openclaw/skills/refs/heads/main/skills/danyangliu-sandwichlab/ads-execution-hub/SKILL.md
(来源:yingzhi8.cn 技能库)
SKILL.md
---
name: ads-execution-hub
description: Ads Execution Hub control skill for ad campaign management and optimization across Meta (Facebook/Instagram), Google Ads, TikTok Ads, YouTube Ads, Amazon Ads, Shopify Ads, and DSP/programmatic.
---
# Ads Execution Hub
## Purpose
Core mission:
- Serve as the dedicated ad operations and optimization interface.
- Manage planning, launch, monitoring, and scaling across ad channels.
- Standardize decision policies for bidding, budget, and performance recovery.
- Output clear operator actions for media teams.
## When To Trigger
Use this skill when the user asks for:
- campaign setup, optimization, or scaling in one or more channels
- budget and bidding decision support with performance constraints
- anomaly diagnosis and recovery actions for live campaigns
- cross-channel media operation playbooks
High-signal keywords:
- ads execution hub, run ads, campaign, media buyer
- bidding, budget, allocation, optimize, scale
- cpa, roas, performance, monitor, abtest
## Input Contract
Required:
- campaign_objective
- channel_scope
- budget_constraints
- recent_performance_snapshot
Optional:
- creative_state
- audience_state
- tracking_health
- policy_or_account_flags
## Output Contract
1. Campaign Action Plan
2. Bidding and Budget Policy
3. AB Test and Scale Model
4. Monitoring and Alert Plan
5. Operator Handoff Checklist
## Workflow
1. Normalize objective and KPI constraints.
2. Evaluate channel readiness and structure quality.
3. Produce bid and allocation actions.
4. Attach testing and scaling rules.
5. Return monitoring triggers and operator checklist.
## Decision Rules
- If measurement confidence is low, limit scale and improve tracking first.
- If ROAS is stable above threshold, allow staged budget increases.
- If CPA is unstable, reduce concurrency of experiments.
- If anomaly risk is high, prefer containment actions first.
## Platform Notes
Primary scope:
- Meta (Facebook/Instagram), Google Ads, TikTok Ads, YouTube Ads, Amazon Ads, Shopify Ads, DSP/programmatic
Platform behavior guidance:
- Keep channel recommendations execution-specific and auditable.
- Align bid logic with each platform's optimization mechanics.
## Constraints And Guardrails
- No irreversible changes without rollback conditions.
- Keep every recommendation tied to KPI impact.
- Respect policy and account health constraints.
## Failure Handling And Escalation
- If required platform data is missing, return minimum data request list.
- If policy or account block appears, route to compliance/account helper.
- If spend risk is severe, trigger emergency control mode.
## Code Examples
### Campaign Control Spec
objective: improve_roas
channels: [Meta, GoogleAds, TikTokAds]
budget_mode: staged_scale
cpa_ceiling: 42
roas_floor: 2.5
### Alert Trigger Rule
if roas_drop_pct > 20 and spend_up_pct > 25:
severity: high
action: cap_budget_and_notify
## Examples
### Example 1: Launch and stabilize
Input:
- New campaign across Meta and TikTok Ads
Output focus:
- launch checklist
- first-week controls
- fallback rules
### Example 2: Scale after validation
Input:
- Stable ROAS for 10 days
Output focus:
- scale ladder
- bid policy updates
- monitoring checkpoints
### Example 3: Cross-channel anomaly
Input:
- Spend surge, mixed conversion signals
Output focus:
- anomaly triage
- containment actions
- next validation steps
## Quality Checklist
- [ ] Required sections are complete and non-empty
- [ ] Trigger keywords include at least 3 registry terms
- [ ] Input and output contracts are operationally testable
- [ ] Workflow and decision rules are capability-specific
- [ ] Platform references are explicit and concrete
- [ ] At least 3 practical examples are included