adcp-advertising
Automate advertising campaigns with AI. Create ads, buy media, manage ad budgets, discover ad inventory, run display ads, video ads, CTV campaigns, and optimize ad performance. Perfect for marketing automation, programmatic advertising, media buying, ad management, campaign optimization, creative management, and performance tracking. Launch Facebook ads, Google ads, display advertising, video marketing, and multi-channel campaigns using natural language. Supports ad targeting, audience segmentation, ROI tracking, and automated bidding.
What this skill does
# Ad Context Protocol (AdCP) Advertising Skill
## Overview
**Automate your advertising campaigns with AI.** This skill enables OpenClaw agents to discover ad inventory, launch campaigns, manage creatives, and optimize performance across display, video, CTV, audio, and more - all through natural language commands.
No dashboards. No forms. No ad platform expertise required.
### What You Can Do
- ๐ฏ **Launch campaigns in minutes** - "Create a $10k display campaign targeting tech professionals in California"
- ๐ **Discover ad inventory instantly** - "Find premium video placements for luxury brands"
- ๐จ **Upload ads with ease** - "Upload these banner images as creatives"
- ๐ **Track ROI in real-time** - "Show me campaign performance and CTR by creative"
- ๐๏ธ **Auto-optimize spend** - "Reallocate budget to top-performing packages"
- ๐ **Target precisely** - Demographics, behaviors, interests, locations, devices, times
### Perfect For
**Marketing teams** running Facebook ads, Google ads, and multi-channel campaigns
**Media buyers** managing programmatic ad spend across publishers
**Agencies** automating client campaign management and reporting
**E-commerce brands** launching product ads and retargeting campaigns
**Startups** running lean marketing with AI-powered automation
### Why Choose This Skill?
**Skip the learning curve** - No need to master complex ad platforms
**Save time** - Launch in 5 minutes vs. hours of manual setup
**Spend smarter** - AI automatically optimizes budgets to top performers
**Scale faster** - Manage unlimited campaigns through simple commands
**Test risk-free** - Public test agent included, no setup required
**Official AdCP Repository**: https://github.com/adcontextprotocol/adcp
**Official AdCP Documentation**: https://docs.adcontextprotocol.org
**Complete Documentation Index**: https://docs.adcontextprotocol.org/llms.txt
## When to Use This Skill
Trigger this skill when users ask about:
**Campaign Management**
- "Create a display ad campaign"
- "Launch Facebook ads for my product"
- "Set up a $5000 video advertising campaign"
- "Pause my underperforming campaigns"
**Ad Discovery & Media Buying**
- "Find advertising inventory for luxury brands"
- "Show me CTV ad placements in major cities"
- "What display ad options are available?"
- "Buy media for a tech startup"
**Creative Management**
- "Upload these banner images"
- "Which creative is performing best?"
- "Add video ads to my campaign"
- "Manage my ad library"
**Performance & Optimization**
- "How is my campaign performing?"
- "Show me ROI by channel"
- "Optimize my ad spend"
- "Reallocate budget to top performers"
- "Track impressions and click-through rates"
**Targeting & Audiences**
- "Target professionals in California"
- "Set up demographic targeting"
- "Create a retargeting campaign"
- "Target by device type and time of day"
## Quick Start
### Launch Your First Campaign (5 Minutes)
**No setup required.** Use the included test agent to try everything:
**Step 1: Discover what's available**
```
"Show me advertising capabilities"
```
Browse available channels, publishers, and formats.
**Step 2: Find ad inventory**
```
"Find display ads for a tech startup, budget $5000"
```
AI searches and shows matching products with pricing.
**Step 3: Launch campaign**
```
"Create campaign with Product prod_123, $5000 budget, targeting California tech professionals"
```
Campaign goes live instantly.
**Step 4: Upload your ads**
```
"Upload these banner images as creatives"
```
Drop files, get instant creative IDs.
**Step 5: Monitor performance**
```
"Show campaign metrics and ROI"
```
Real-time impressions, clicks, CTR, spend.
### Real-World Usage Examples
**Quick campaign launch:**
```
User: "I need to run display ads for my SaaS product"
Agent: [Discovers products] "Found 5 display packages. Want details?"
User: "Create campaign with Product 1, $10k budget, target CTOs"
Agent: [Creates campaign] "Campaign live! ID: mb_abc123"
```
**Performance optimization:**
```
User: "How are my video ads performing?"
Agent: [Shows metrics] "Package A: 2.3% CTR, Package B: 0.8% CTR"
User: "Move $5k from B to A"
Agent: [Reallocates] "Budget updated. Package A now $15k"
```
**Multi-channel campaign:**
```
User: "Launch omnichannel campaign: display in CA, video in NYC, $50k total"
Agent: [Creates packages] "3 packages created across display and video"
```
## How It Works
### Natural Language Understanding
Speak naturally. The skill understands:
- **Budgets**: "$5000", "five thousand dollars", "5k budget"
- **Locations**: "California", "major US cities", "New York and LA"
- **Audiences**: "tech professionals", "age 25-45", "high income"
- **Goals**: "brand awareness", "drive conversions", "increase sales"
### Progressive Workflow
**1. Discovery Phase**
```
"Find video advertising for luxury brands"
```
โ Agent searches inventory
โ Shows matched products with pricing
โ Explains targeting and formats
**2. Campaign Creation**
```
"Create campaign with Product 1, $25k, target professionals"
```
โ Agent creates media buy
โ Sets up targeting overlay
โ Returns campaign ID and status
**3. Creative Management**
```
"Upload my banner ads"
```
โ Agent syncs creatives
โ Assigns to campaign
โ Returns creative IDs
**4. Monitoring & Optimization**
```
"Show performance"
```
โ Agent fetches delivery data
โ Shows metrics by package/creative
โ Suggests optimizations
## Core Operations
### Create Campaign
```javascript
const campaign = await testAgent.createMediaBuy({
buyer_ref: 'campaign-2026-q1',
brand_manifest: { url: 'https://acme.com' },
packages: [{ product_id: 'premium_display', budget: 10000 }]
});
```
### Upload Creatives
```javascript
await testAgent.syncCreatives({
creatives: [{
buyer_ref: 'banner-300x250',
url: 'https://cdn.acme.com/banner.jpg'
}]
});
```
### Monitor Performance
```javascript
const delivery = await testAgent.getMediaBuyDelivery({
media_buy_id: 'mb_abc123'
});
console.log(`CTR: ${delivery.totals.ctr}%, Spend: $${delivery.totals.spend}`);
```
See [REFERENCE.md](REFERENCE.md) for complete API docs and [EXAMPLES.md](EXAMPLES.md) for detailed workflows.
## Core Concepts
### The 8 Media Buy Tasks
AdCP provides 8 standardized tasks for the complete advertising lifecycle. Learn more in the [Media Buy Protocol documentation](https://docs.adcontextprotocol.org/docs/media-buy/).
1. **get_adcp_capabilities** - Discover agent features and portfolio (~1s)
2. **get_products** - Find inventory using natural language (~60s)
3. **list_creative_formats** - View creative specifications (~1s)
4. **create_media_buy** - Launch campaigns (minutes-days, may require approval)
5. **update_media_buy** - Modify campaigns (minutes-days)
6. **sync_creatives** - Upload creative assets (minutes-days)
7. **list_creatives** - Query creative library (~1s)
8. **get_media_buy_delivery** - Track performance (~60s)
**Complete task reference**: https://docs.adcontextprotocol.org/docs/media-buy/task-reference/
### Brand Manifest
Brand context can be provided two ways:
**URL reference** (recommended - agent fetches brand info):
```json
{
"brand_manifest": {
"url": "https://brand.com"
}
}
```
**Inline manifest** (full brand details):
```json
{
"brand_manifest": {
"name": "Brand Name",
"url": "https://brand.com",
"tagline": "Brand tagline",
"colors": { "primary": "#FF0000" },
"logo": { "url": "https://cdn.brand.com/logo.png" }
}
}
```
### Pricing Models
Products support various pricing models:
- **CPM** (Cost Per Mille/Thousand) - Fixed price per 1000 impressions
- **CPM-Auction** - Bid-based pricing for impressions
- **CPCV** (Cost Per Completed View) - Video completions
- **Flat-Fee** - Fixed campaign cost
- **CPP** (Cost Per Point) - Percentage of audience reached
For auction pricing, include `bid_price` in your package.
### Asynchronous Operations
AdCP is **not a real-time protocol**. Operations mRelated in advertising
adspirer-ads-agent
IncludedAdspirer โ AI-powered advertising and performance marketing agent. Manage Google Ads, Meta Ads (Facebook & Instagram), LinkedIn Ads, and TikTok Ads via natural language. 175+ tools for paid media campaign creation, live performance analysis, PPC keyword research with real CPC data, budget optimization, ad creative management, and cross-platform reporting. Create Google Search, Performance Max, Display (Standard + Smart), Demand Gen, and YouTube campaigns; Meta image/video/carousel/lead-gen campaigns; LinkedIn sponsored content/carousel/lead-gen with campaign groups; and TikTok in-feed/Spark Ads/Carousel/App Promotion campaigns. Analyze wasted ad spend, research keywords, optimize bids and ROAS, automate monitoring, detect creative fatigue, and track CPA across channels. Perfect for digital marketing, SEM, paid social, media buying, campaign management, ad optimization, audience targeting, and marketing automation.
adspirer-ads-agent
IncludedAdspirer โ AI-powered advertising and performance marketing agent. Manage Google Ads, Meta Ads (Facebook & Instagram), LinkedIn Ads, and TikTok Ads via natural language. 100+ tools for paid media campaign creation, live performance analysis, PPC keyword research with real CPC data, budget optimization, ad creative management, and cross-platform reporting. Create Search, PMax, display, image, video, and carousel campaigns. Analyze wasted ad spend, research keywords, optimize bids and ROAS, automate monitoring, and track CPA across channels. Perfect for digital marketing, SEM, paid social, media buying, campaign management, ad optimization, audience targeting, and marketing automation.
Facebook/Meta Ads
IncludedAutomate Facebook and Instagram advertising campaigns, audience targeting, and performance optimization