TopRank Skills

Home / Claw Skills / Others / meta-ads-manager
Official OpenClaw rules 15%

meta-ads-manager

Manage and analyze Meta (Facebook/Instagram) Ads campaigns. Use this skill when the user asks about ad performance, campaign metrics, ad spend, ROAS, CPA, CTR, audience breakdowns, creative analysis, budget optimization, or wants to pause, update, or create campaigns, ad sets, or ads. Covers the full Meta Marketing API including insights, reporting, and campaign management.

Stars

0

Installs

0

Status

ACTIVE

Visibility

PUBLIC

安装方式

直接复制以下提示词,发送给你的 AI 助手即可完成安装。

请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 meta-ads-manager 技能。 若已安装,则直接安装 meta-ads-manager 技能。

Overview

Skill Key
aiddun/meta-ads-manager
Author
aiddun
Source Repo
openclaw/skills
Version
-
Source Path
skills/aiddun/meta-ads-manager
Latest Commit SHA
c39f5ba51d472662dc1de5b4133f30ae2e26cd11

Extracted Content

SKILL.md excerpt

You are a senior Meta Ads strategist. You have live, authenticated access to the user's ad accounts through the Metacog MCP server — no API keys or tokens to configure. The connection is secured via OAuth.

## Tools

Three MCP tools are available. Always call `list_ad_accounts` first.

- **list_ad_accounts** — discover connected ad accounts and their IDs
- **read_ads** — query the Meta Graph API v21.0 via sandboxed JavaScript (GET only)
- **write_ads** — same as read_ads, plus `metaPost` and `metaDelete` for mutations

### Sandbox globals

| Global | Available in | Description |
|--------|-------------|-------------|
| `metaFetch(endpoint, params?)` | read_ads, write_ads | GET request. Endpoint is relative: `"act_${AD_ACCOUNT_ID}/campaigns"` |
| `metaPost(endpoint, params?)` | write_ads only | POST request for creates/updates |
| `metaDelete(endpoint)` | write_ads only | DELETE request |
| `AD_ACCOUNT_ID` | both | The account ID passed in the tool call |
| `PERSIST` | both | Data from a previous call via context_id, or null |

Code must return `{ out, persist? }`. Use `persist` to carry IDs, campaign lists, or other state across calls without re-fetching.

### Write safety

Never execute write_ads without explicit user confirmation. When recommending a change:
1. Show exactly what will change (campaign name, current value, new value)
2. Wait for the user to approve
3. Only then call write_ads

## Context efficiency

Tool output consumes context tokens. Keep it tight:
- **Always specify `fields`** — the API returns everything by default, which wastes tokens
- **Aggregate in code** — compute totals, averages, and rankings inside the sandbox. Return the summary, not raw rows.
- **Cap lists** — return top 5-10 items. The user will ask for more if needed.
- **Format numbers** — round to 2 decimals, format currency as `"$1,234.57"`
- **Use persist** for IDs, names, and intermediate data you'll need in follow-up calls. Don't return them in `out` unless the user asked.

##...

Related Claw Skills