Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计提醒

competitor-ad-tracking竞争对手广告跟踪

Agent Skill

competitor-ad-tracking 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

279

周安装

12

GitHub Stars

公开资料未说明

下载量

98
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:competitor-ad-tracking(竞争对手广告跟踪)
来源仓库:https://github.com/skillatlas/skills
仓库路径:skills/competitor-ad-tracking
安装命令:
npx skills add https://github.com/skillatlas/skills --skill competitor-ad-tracking
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/skillatlas/skills --skill competitor-ad-tracking

简介

从主流广告平台批量提取竞品投放素材,保留原始证据链供深度分析。

  • 优先使用最强关联线索(如官网/品牌名)精准锁定相关广告活动。
  • 输出格式包含广告文案、渠道分布及效果指标的结构化数据集。
  • 依赖特定爬虫工具链完成整理,需提前部署API密钥与环境变量配置。
  • competitor-ad-tracking 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Competitor Ad Tracking

Use this skill when the task is paid-ad-library competitor research first and platform choice second. The job is not just to pull ads. The job is to pull the right ads, preserve the raw evidence, and turn them into useful competitive signal.

Prerequisites

  • Install the CLI once:
npm install -g scrapesocial
  • Authenticate with SCRAPECREATORS_API_KEY or --api-key.
  • Start from the strongest identifier you have:

- Domain or website: start with Google ads - Brand or company name: start with Meta or LinkedIn - Ad URL or ad ID: use the detail command directly - Topic, pain point, or offer: use keyword search commands first

What makes ad extraction valuable

A raw ad dump is low value. A good extraction answers:

  • What problems is this competitor paying to repeat?
  • Which offers, proofs, and CTAs recur across multiple ads?
  • Which creative formats keep showing up?
  • What changed across dates, countries, or languages?
  • Where is the whitespace for an original angle?

Always try to produce:

  • An ad inventory
  • A message map
  • A creative-pattern summary
  • A change log if this is a repeat pull
  • A short "what to test differently" note

Guardrails

  • Never copy competitor headlines, scripts, visual compositions, or claims directly.
  • Use extracted ads to understand category patterns, not to produce near-clones.
  • Do not claim performance winners unless the payload actually includes performance data.
  • Treat recurrence, freshness, and breadth as priority signals, not proof of effectiveness.
  • If advertiser identity is ambiguous, stop and confirm the exact company before pulling more data.

Platform routing

NeedBest command pathWhy
Known competitor website or domaingoogle ads advertisers get --domainStrongest domain-native lookup in this CLI.
Known competitor brand on Metafacebook ads companies search -> facebook ads companies getBest advertiser-level Meta Ad Library workflow.
Known competitor brand on LinkedInlinkedin ads search --companyDirect company-level search.
Topic or pain-point scanfacebook ads search, linkedin ads search --keyword, reddit ads searchBest when the advertiser is not known yet.
One standout adfacebook ads get, google ads get, linkedin ads get, reddit ads getPull detail only after shortlist.

Command notes

  • facebook ads companies search

- Use to find advertiser names and page IDs from a brand query.

  • facebook ads companies get

- Use to list ads for one advertiser. - --sort-by total_impressions is better for repeated and higher-reach signal. - --sort-by relevancy_monthly_grouped is better for current messaging.

  • facebook ads get

- Use to inspect one specific ad. - Add --get-transcript for short video ads when script text matters.

  • google ads advertisers get

- Use when the user gives a competitor site or domain. - Add --get-ad-details only after shortlisting because it costs 25 credits.

  • google ads get

- Use to fetch one Google ad by URL.

  • linkedin ads search

- Use --company or --company-id for a known brand. - Use --keyword for category scans. - Reuse --pagination-token exactly as returned.

  • linkedin ads get

- Use to fetch one LinkedIn ad by URL.

  • reddit ads search

- Use for category-level and message-level scans. - It is weaker than Meta or Google for exact advertiser tracking.

  • reddit ads get

- Use to inspect one Reddit ad after shortlisting.

High-value workflows

1. Known competitor, single-date snapshot

Use this when the user wants "show me Acme's current ads."

  1. Make a dated folder so future pulls are comparable.
  2. Pull Google by domain if the competitor site is known.
  3. Pull Meta by advertiser if the brand name is known.
  4. Pull LinkedIn by company if B2B or hiring or product marketing signals matter.
  5. Use detail commands only on representative or strategically important ads.

Example:

mkdir -p research/acme/2026-03-08

scrapesocial google ads advertisers get \
  --domain acme.com \
  --start-date 2026-02-01 \
  --end-date 2026-03-08 \
  > research/acme/2026-03-08/google-ads-page1.json

scrapesocial facebook ads companies search \
  --query "Acme" \
  > research/acme/2026-03-08/meta-company-search.json

scrapesocial facebook ads companies get \
  --page-id <page-id> \
  --country US \
  --status ACTIVE \
  --sort-by relevancy_monthly_grouped \
  --trim \
  > research/acme/2026-03-08/meta-ads-page1.json

scrapesocial linkedin ads search \
  --company "Acme" \
  --countries US \
  --start-date 2026-02-01 \
  --end-date 2026-03-08 \
  > research/acme/2026-03-08/linkedin-ads-page1.json

Good follow-up questions:

  • Are they pushing the same offer on every platform?
  • Are the landing pages product pages, comparison pages, webinars, free trials, or demos?
  • Are they talking to one segment or several?

2. Topic-first market scan

Use this when the user knows the category or pain point, but not the advertiser mix yet.

  1. Search Meta, LinkedIn, and Reddit by keyword.
  2. Note the advertisers that appear repeatedly.
  3. Pivot into advertiser-level pulls for the most relevant competitors.

Example:

scrapesocial facebook ads search \
  --query "project management" \
  --country US \
  --status ACTIVE \
  --media-type VIDEO \
  --trim

scrapesocial linkedin ads search \
  --keyword "project management" \
  --countries US

scrapesocial reddit ads search \
  --query "project management" \
  --industries TECH_B2B \
  --formats VIDEO

This is valuable for:

  • Identifying category hooks
  • Seeing how competitors name the problem
  • Spotting recurring offers and CTA structures

3. Standout-ad deep dive

Use this after the list pull, not before.

  1. Shortlist ads that repeat, look new, or represent a clear strategic angle.
  2. Pull detailed objects for only those ads.
  3. For short video ads on Meta, add transcripts.

Example:

scrapesocial facebook ads get --id <ad-id> --get-transcript
scrapesocial google ads get --url <ad-url>
scrapesocial linkedin ads get --url <ad-url>
scrapesocial reddit ads get --id <ad-id>

Look for:

  • Exact hook and promise
  • Proof element: testimonial, number, customer logo, stat, or demo
  • Offer type: free trial, demo, guide, discount, comparison, or webinar
  • CTA language
  • Landing-page path or page type if exposed

4. Repeat tracking over time

Use this when the user wants monitoring rather than a one-off pull.

  1. Save raw outputs in research/<competitor>/<YYYY-MM-DD>/.
  2. Reuse the same filters every run so comparisons stay valid.
  3. Compare:

- New ads - Removed ads - New offers - New landing pages - New countries or languages - Creative-format shifts

  1. Only deep-dive net-new or strategically important ads.

A repeat pull is more valuable than a single pull because it shows:

  • What the competitor keeps funding
  • What they are testing now
  • What campaigns appear seasonal or launch-driven
  • Whether positioning is changing

What to extract from each ad

Do not just save the raw JSON and stop. Pull out:

  • Platform
  • Advertiser
  • Ad ID or URL
  • Date range or recency fields if present
  • Country and language filters used
  • Headline or primary copy
  • CTA
  • Media type
  • Transcript or voiceover text if available
  • Landing page URL or domain if present
  • Offer
  • Proof
  • Hook or problem statement

How to turn extracted ads into useful analysis

Message map

For each competitor, group ads by:

  • Problem
  • Desired outcome
  • Proof
  • Offer
  • Audience segment
  • Funnel stage

Creative map

Track whether the ads lean on:

  • Product UI or demo
  • Founder or spokesperson
  • Testimonial or social proof
  • Before and after comparison
  • Listicle or "mistakes" framing
  • Event, webinar, or downloadable lead magnet
  • Direct-response offer

Change log

Compare snapshots over time for:

  • Net-new messages
  • Retired messages
  • New product launches
  • Pricing or discount changes
  • Localization or expansion
  • Enterprise versus SMB split

Whitespace

The highest-value output is not "here is what they do." It is:

  • What every competitor says
  • What no one is saying
  • Which objections are overworked
  • Which proof points are weak or repetitive
  • Where an original position is available

Evidence hierarchy

Rank confidence like this:

  1. Same hook repeated across many ads
  2. Same hook repeated across platforms
  3. Same hook persists across multiple dates
  4. Same hook is paired with multiple creative variants
  5. Same hook is tied to multiple landing pages or offers

One isolated ad is weak signal. Repetition is stronger signal.

Important limits

  • Ad libraries show existence, messaging, and some metadata. They do not automatically tell you revenue, ROAS, conversion rate, or true winner status.
  • More ads can mean localization, testing, or coverage, not necessarily better performance.
  • No single platform gives a complete view of the competitor's paid program.
  • Reddit is better for theme discovery than exact advertiser monitoring.

Minimal examples

scrapesocial facebook ads companies search --query "Notion"
scrapesocial facebook ads companies get --page-id <page-id> --status ACTIVE --country US --trim
scrapesocial facebook ads get --id <ad-id> --get-transcript

scrapesocial google ads advertisers get --domain notion.so
scrapesocial google ads get --url <ad-url>

scrapesocial linkedin ads search --company "Notion" --countries US
scrapesocial linkedin ads search --keyword "knowledge management" --countries US
scrapesocial linkedin ads get --url <ad-url>

scrapesocial reddit ads search --query "knowledge management" --industries TECH_B2B
scrapesocial reddit ads get --id <ad-id>

Pairing notes

  • Pair with skillatlas/scrapesocial-facebook when the user wants paid and organic Meta activity side by side.
  • Pair with skillatlas/scrapesocial-reddit when the user also needs demand language and objections from organic discussions.
  • Pair with skillatlas/scrapesocial-youtube or skillatlas/scrapesocial-tiktok if the user wants to compare paid creative with organic creative systems.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.76%
按下载量换算35

Claude

28.35%
按下载量换算28

Cursor

18.91%
按下载量换算19

Gemini CLI

9.83%
按下载量换算10

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

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

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills