Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计提醒

meta-ads-open-climeta ADS open CLI 搜索

Agent Skill

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

总安装

2,571

周安装

104

GitHub Stars

公开资料未说明

下载量

807
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:meta-ads-open-cli(meta ADS open CLI 搜索)
来源仓库:https://github.com/bin-huang/meta-ads-open-cli
安装命令:
openclaw skills install meta-ads-open-cli
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

ClawHubOpenClaw
openclaw skills install meta-ads-open-cli

简介

通过命令行工具进行元广告数据分析与报告生成。meta-ads-open-cli 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

  • 适合需要批量提取营销活动/广告集/广告层数据时使用。
  • 支持 JSON/CSV 格式输出便于后续处理。
  • 依赖本地环境配置 CLI 客户端与认证令牌。
  • 务必阅读原始文档完成初始化设置避免认证失败。

SKILL.md

name
meta-ads-open-cli
description
>
Triggers
Meta Ads", "Facebook Ads", "Instagram Ads", "meta ad performance", "meta campaign stats",

Meta Ads CLI Skill

You have access to meta-ads-open-cli, a read-only CLI for the Meta Marketing API (Graph API v24.0). Use it to query ad accounts, pull performance insights, inspect creatives, analyze audiences, and retrieve lead form submissions across Facebook, Instagram, Messenger, and Audience Network.

Quick start

# Check if the CLI is available
meta-ads-open-cli --help

# Get authenticated user info
meta-ads-open-cli me

# List accessible ad accounts
meta-ads-open-cli ad-accounts

If the CLI is not installed, install it:

npm install -g meta-ads-open-cli

Authentication

The CLI requires a Meta OAuth access token. Credentials are resolved in this order:

  1. --credentials <path> flag (per-command)
  2. Environment variable: META_ADS_ACCESS_TOKEN
  3. Auto-detected file: ~/.config/meta-ads-open-cli/credentials.json

Required permissions depend on the commands used:

  • ads_read -- read ad accounts and campaigns
  • ads_management -- required for some read endpoints (e.g., ad-specific fields on leads)
  • pages_read_engagement -- read Pages data
  • leads_retrieval -- read lead gen form submissions
  • business_management -- read business accounts

Before running any command, verify credentials are configured by running meta-ads-open-cli me. If it fails with a credentials error, ask the user to set up authentication.

Entity hierarchy

Business Manager
 +-- Ad Account (act_XXXXX)
      +-- Campaign
      |    +-- Ad Set
      |         +-- Ad -> Creative
      +-- Custom Audience
      +-- Meta Pixel
      +-- Custom Conversion

Ad account IDs use the act_ prefix (e.g., act_123456789). The CLI accepts both act_XXXXX and plain numeric IDs.

Monetary values

Insights API (spend field): returned as a decimal string in the major currency unit (e.g., "12.34" means $12.34). No conversion needed.

Management API (daily_budget, lifetime_budget, bid_amount): returned as integers in the smallest currency unit (cents). Divide by 100 for the actual amount.

Output format

All commands output pretty-printed JSON by default. Use --format compact for single-line JSON (useful for piping).

Pagination uses cursor-based --after values from paging.cursors.after in the response.

Commands reference

Account discovery

# Authenticated user info
meta-ads-open-cli me

# List ad accounts
meta-ads-open-cli ad-accounts
meta-ads-open-cli ad-accounts --limit 50

# Get a specific ad account
meta-ads-open-cli ad-account act_123456789
meta-ads-open-cli ad-account 123456789

# List users with access to an ad account (--business is required)
meta-ads-open-cli account-users 123456789 --business 9876543210

# List businesses
meta-ads-open-cli businesses

Campaign hierarchy

# Campaigns (filter by status: ACTIVE, PAUSED, ARCHIVED, DELETED)
meta-ads-open-cli campaigns 123456789
meta-ads-open-cli campaigns 123456789 --status ACTIVE

# Get a specific campaign
meta-ads-open-cli campaign 23851234567890

# Ad sets (filter by campaign, status)
meta-ads-open-cli adsets 123456789
meta-ads-open-cli adsets 123456789 --campaign 23851234567890 --status ACTIVE

# Get a specific ad set
meta-ads-open-cli adset 23851234567891

# Ads (filter by ad set, status)
meta-ads-open-cli ads 123456789
meta-ads-open-cli ads 123456789 --adset 23851234567891

# Get a specific ad
meta-ads-open-cli ad 23851234567892

All listing commands support --limit <n> (default 100). Most also support --after <cursor> for cursor-based pagination, except: account-users, businesses, pixels, custom-conversions, pages, and lead-forms.

Creatives

# List ad creatives for an account
meta-ads-open-cli creatives 123456789

# Get a specific creative (includes asset_feed_spec)
meta-ads-open-cli creative 23851234567893

Performance insights

The insights command is the primary tool for performance analysis. It works on any entity: account, campaign, ad set, or ad.

# Account-level insights (last 30 days)
meta-ads-open-cli insights act_123456789 --date-preset last_30d

# Campaign-level breakdown
meta-ads-open-cli insights act_123456789 --date-preset last_30d --level campaign

# Daily trend for a campaign
meta-ads-open-cli insights 23851234567890 --date-preset last_7d --time-increment 1

# Breakdowns by age and gender
meta-ads-open-cli insights act_123456789 --date-preset last_30d --level campaign --breakdowns age,gender

# Custom date range
meta-ads-open-cli insights-date act_123456789 --start 2026-01-01 --end 2026-01-31

# Custom fields
meta-ads-open-cli insights act_123456789 --date-preset last_30d --fields impressions,clicks,spend,ctr,cpc

date-preset values

today, yesterday, last_3d, last_7d, last_14d, last_28d, last_30d, last_90d, this_week_mon_today, this_week_sun_today, last_week_mon_sun, last_week_sun_sat, this_month, last_month, this_quarter, last_quarter, this_year, last_year, maximum, data_maximum

Breakdown dimensions

age, gender, country, region, platform_position, publisher_platform, device_platform, impression_device

Note: platform_position should typically be combined with publisher_platform for meaningful results.

time-increment values

Any integer from 1 to 90 (number of days per row), or monthly, or all_days (default). Common values: 1 (daily), 7 (weekly), 14 (bi-weekly).

Default metrics

When --fields is not specified, these metrics are returned: impressions, reach, clicks, cpc, cpm, ctr, spend, actions, cost_per_action_type, conversions, conversion_values, frequency

Common --fields combinations by analysis type

ROAS / revenue analysis:

meta-ads-open-cli insights act_123456789 --date-preset last_30d --level campaign --fields spend,purchase_roas,actions,action_values,conversion_values,cost_per_action_type

Cost efficiency:

meta-ads-open-cli insights act_123456789 --date-preset last_30d --level campaign --fields spend,impressions,clicks,cost_per_action_type,cost_per_inline_link_click,cost_per_unique_click,cost_per_outbound_click

Video performance:

meta-ads-open-cli insights act_123456789 --date-preset last_30d --level ad --fields impressions,spend,video_avg_time_watched_actions,video_30_sec_watched_actions,video_p25_watched_actions,video_p50_watched_actions,video_p75_watched_actions,video_p100_watched_actions,cost_per_thruplay

Reach & frequency:

meta-ads-open-cli insights act_123456789 --date-preset last_30d --level campaign --fields reach,frequency,impressions,spend,cpp

Engagement:

meta-ads-open-cli insights act_123456789 --date-preset last_30d --level ad --fields impressions,clicks,actions,inline_link_clicks,inline_link_click_ctr,social_spend

Valid breakdown combinations

Not all breakdowns can be combined. Common valid combinations:

  • age,gender -- demographic segmentation (the most popular breakdown)
  • publisher_platform,platform_position -- placement optimization (where ads perform best)
  • publisher_platform -- platform comparison (Facebook vs Instagram vs Audience Network)
  • publisher_platform,impression_device -- platform by device type
  • country -- geographic performance for international campaigns

Note: device_platform exists as a dimension name but is not listed in any valid combination in official docs. Use publisher_platform,impression_device for device analysis instead. impression_device cannot be used alone.

Invalid combinations will return an API error. When in doubt, use breakdowns one at a time. The official API only supports a specific whitelist of breakdown permutations.

Understanding the actions array

The actions field returns an array of {action_type, value} objects. Common action types:

On-Meta actions:

  • link_click -- link clicks
  • landing_page_view -- landing page views (subset of link clicks that loaded)
  • post_engagement -- all post interactions
  • video_view -- 3-second video views
  • lead -- all leads (offsite + on-Facebook)
  • like -- page likes
  • comment -- post comments

Pixel conversion actions (off-Meta):

  • offsite_conversion.fb_pixel_purchase -- website purchases
  • offsite_conversion.fb_pixel_add_to_cart -- adds to cart
  • offsite_conversion.fb_pixel_initiate_checkout -- initiates checkout
  • offsite_conversion.fb_pixel_lead -- leads (pixel-based)
  • offsite_conversion.fb_pixel_view_content -- content views
  • offsite_conversion.fb_pixel_complete_registration -- registrations

Cross-platform aggregates:

  • omni_purchase -- all purchases (web + app + offline)
  • omni_add_to_cart -- all add-to-cart events

The cost_per_action_type and action_values arrays use the same action_type keys.

Audiences

# Custom audiences
meta-ads-open-cli custom-audiences 123456789
meta-ads-open-cli custom-audience 23851234567894

# Saved audiences
meta-ads-open-cli saved-audiences 123456789

# Reach estimate for targeting specs
meta-ads-open-cli reach-estimate 123456789 --targeting '{"geo_locations":{"countries":["US"]},"age_min":25,"age_max":45}'

Pixels & conversions

# List Meta Pixels
meta-ads-open-cli pixels 123456789

# Pixel events
meta-ads-open-cli pixel-events 123456789012

# Custom conversions
meta-ads-open-cli custom-conversions 123456789

Pages & Instagram

# List Facebook Pages the user manages
meta-ads-open-cli pages

# Get a specific page
meta-ads-open-cli page 123456789

# Instagram business account linked to a page
meta-ads-open-cli instagram-accounts 123456789

Lead gen

# List lead forms for a page
meta-ads-open-cli lead-forms 123456789

# List leads (submissions) for a form
meta-ads-open-cli leads 987654321
meta-ads-open-cli leads 987654321 --limit 500

Note: lead fields ad_id and campaign_id require ads_management permission and are only populated for real leads from live ads (not test leads).

Workflow guidance

When the user asks for a quick overview

  1. Run meta-ads-open-cli ad-accounts to find accessible accounts
  2. Use insights with --date-preset last_30d for a performance snapshot
  3. Present the data (insights spend is already in major currency units, no conversion needed)

When the user asks for deep analysis

  1. Start with account-level insights to see overall performance
  2. Add --level campaign to identify top/bottom campaigns
  3. Drill down with --level adset or --level ad for underperforming campaigns
  4. Use --breakdowns age,gender or --breakdowns country for audience analysis
  5. Use --time-increment 1 for daily trends to spot anomalies
  6. Cross-reference with creatives to review ad copy and visuals

When the user asks about creative performance

  1. Run insights with --level ad to get ad-level metrics
  2. Use ads to find the creative IDs linked to each ad
  3. Use creative to inspect the actual creative content (images, copy, CTAs)

When the user asks about audience reach

  1. Use custom-audiences to see existing audiences and their sizes
  2. Use reach-estimate with targeting specs to estimate potential reach
  3. Use insights with --breakdowns age,gender or --breakdowns country to see who is being reached

When the user asks about conversion tracking

  1. Run pixels to list active Meta Pixels
  2. Use pixel-events to check what events are being tracked
  3. Use custom-conversions to see custom conversion rules
  4. Check insights with conversions and cost_per_action_type fields

When the user asks about lead gen

  1. Use pages to find the Page ID
  2. Use lead-forms with the Page ID to list forms
  3. Use leads with a form ID to retrieve submissions

Error handling

  • Authentication errors -- ask the user to verify their access token and permissions
  • "param business is required" -- the account-users command requires --business <id>
  • Empty insights -- check date range, entity status, and whether the account had active ads in the period
  • Missing lead fields -- ad_id/campaign_id require ads_management permission and only appear on real (non-test) leads
  • Permission errors -- different commands require different permissions; check the required permissions list above

API documentation references

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

能力 5

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

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

平台分布

OpenClaw

81.49%
按下载量换算658

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

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

来源信息

继续浏览同类 Skills