openclaw 网盘下载
OpenClaw

技能详情(站内镜像,无评论)

首页 > 技能库 > DTC Helper

Diagnose DTC ads performance across Meta (Facebook/Instagram), Google Ads, TikTok Ads, YouTube Ads, and Shopify Ads by validating pixel attribution, account...

通信与消息

作者:danyangliu @danyangliu-sandwichlab

许可证:MIT-0

MIT-0 ·免费使用、修改和重新分发。无需归因。

版本:v1.0.0

统计:⭐ 1 · 170 · 0 current installs · 0 all-time installs

1

安装量(当前) 0

🛡 VirusTotal :良性 · OpenClaw :良性

Package:danyangliu-sandwichlab/dtc-ads-helper

安全扫描(ClawHub)

  • VirusTotal :良性
  • OpenClaw :良性

OpenClaw 评估

The skill's instructions, inputs, and scope are coherent with its stated purpose (diagnosing DTC ad performance); it is instruction-only, requests no installs or credentials, and does not ask for unrelated system access.

目的

Name and description (DTC ads diagnosis across multiple ad platforms) match the declared inputs (store_url, platform_account_snapshot, pixel_event_snapshot, performance window) and the described outputs (pixel readiness, ROAS root causes, scale plan). Required artifacts are reasonable for this purpose.

说明范围

SKILL.md contains step-by-step checks (event completeness, campaign structure, creative analysis, funnel fixes) and failure handling that stay within ad-diagnostic scope. It does not instruct the agent to read system files, environment variables, or reach out to unknown endpoints; it expects the user to supply snapshots when needed.

安装机制

No install spec or code files are included; the skill is instruction-only, so nothing is written to disk or fetched at install time. This minimizes installer risk.

证书

The skill declares no environment variables, credentials, or config paths. Inputs are explicit (snapshots and URLs) and align with the diagnostic task. There is no unexplained request for tokens, keys, or unrelated secrets.

持久

always is false and the skill does not request persistent system-level presence or attempts to modify other skills or agent configuration. Autonomous invocation is allowed (platform default) but not combined with elevated privileges.

综合结论

This skill appears internally consistent and low-risk in itself, but it relies on you providing snapshots of ad accounts and tracking data. Before sharing anything: (1) do not paste live access tokens, passwords, or API keys—provide sanitized snapshots or exports instead; (2) remove any unrelated PII or billing details from exported data; (3) if you want the skill to run against live accounts (automation), expect it would need explicit API key…

安装(复制给龙虾 AI)

将下方整段复制到龙虾中文库对话中,由龙虾按 SKILL.md 完成安装。

请把本段交给龙虾中文库(龙虾 AI)执行:为本机安装 OpenClaw 技能「DTC Helper」。简介:Diagnose DTC ads performance across Meta (Facebook/Instagram), Google Ads, TikT…。
请 fetch 以下地址读取 SKILL.md 并按文档完成安装:https://raw.githubusercontent.com/openclaw/skills/refs/heads/main/skills/danyangliu-sandwichlab/dtc-ads-helper/SKILL.md
(来源:yingzhi8.cn 技能库)

SKILL.md

打开原始 SKILL.md(GitHub raw)

---
name: dtc-ads-helper
description: Diagnose DTC ads performance across Meta (Facebook/Instagram), Google Ads, TikTok Ads, YouTube Ads, and Shopify Ads by validating pixel attribution, account structure, creative signals, and conversion funnel opportunities.
---

# DTC Helper

## Purpose
Core mission:
- Validate pixel and attribution readiness for OCPX-style optimization.
- Analyze account structure and creative performance to explain ROAS volatility.
- Provide scale path and budget lift recommendations.
- Output landing page and conversion funnel optimization actions.

## When To Trigger
Use this skill when the user asks for:
- DTC store growth troubleshooting
- ROAS instability diagnosis
- scaling strategy after initial traction
- landing page and funnel optimization for paid traffic

High-signal keywords:
- dtc, ecommerce, shop, checkout, conversion
- roas, cpa, budget, scale, optimize
- pixel, tracking, attribution, campaign

## Input Contract
Required:
- store_url
- platform_account_snapshot
- pixel_event_snapshot
- recent_performance_window

Optional:
- creative_report
- landing_page_metrics
- cohort_ltv
- inventory_constraints

## Output Contract
1. Pixel and Attribution Readiness Verdict
2. ROAS Volatility Root-Cause Tree
3. Scale Path and Budget Lift Plan
4. Landing Page and Funnel Fixes
5. Execution Priority Queue

## Workflow
1. Check event completeness for core commerce events.
2. Audit campaign/adset/ad structure and budget fragmentation.
3. Compare creative performance by funnel stage.
4. Diagnose ROAS swings by channel, offer, and audience.
5. Produce scale-safe budget and funnel actions.

## Decision Rules
- If Purchase event quality is low, pause aggressive scale and fix tracking first.
- If creative fatigue is detected, prioritize new hooks before raising budget.
- If funnel CVR is below threshold, route spend to best-converting LP first.
- If LTV is unknown, avoid over-bidding on upper-funnel traffic.

## Platform Notes
Primary scope:
- Meta (Facebook/Instagram), Google Ads, TikTok Ads, YouTube Ads, Shopify Ads

Platform behavior guidance:
- Meta/TikTok for creative-led demand creation.
- Google for intent capture and bottom-funnel efficiency.
- Shopify events must stay consistent with platform conversion definitions.

## Constraints And Guardrails
- Do not infer profitability without COGS or contribution assumptions.
- Mark attribution blind spots explicitly.
- Keep scale recommendations bounded by measurement confidence.

## Failure Handling And Escalation
- If pixel data is incomplete, output tracking repair plan first.
- If account permission blocks data access, provide minimum data request packet.
- If severe policy risk exists, route to Ads Compliance Review.

## Code Examples
### OCPX Readiness Check (YAML)

    required_events:
      - ViewContent
      - AddToCart
      - InitiateCheckout
      - Purchase
    event_quality_threshold: high
    readiness: conditional

### ROAS Volatility Slice (JSON)

    {
      "window": "last_14d",
      "worst_segment": "retargeting-video-1",
      "roas_drop_pct": 31,
      "suspected_causes": ["creative_fatigue", "audience_overlap"]
    }

## Examples
### Example 1: Sudden ROAS drop
Input:
- DTC store ROAS down 25% in 10 days

Output focus:
- root-cause breakdown
- quick stabilizing actions
- budget protection rules

### Example 2: Scale decision
Input:
- Profitable baseline, wants 2x spend

Output focus:
- safe scaling ladder
- creative replacement cadence
- funnel readiness checklist

### Example 3: LP conversion issue
Input:
- CTR stable, CVR down

Output focus:
- LP diagnosis
- checkout friction fixes
- retest plan

## 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