ads-cli

📁 phrazzld/claude-config 📅 Jan 29, 2026
18
总安装量
2
周安装量
#19668
全站排名
安装命令
npx skills add https://github.com/phrazzld/claude-config --skill ads-cli

Agent 安装分布

mcpjam 2
roo 2
kilo 2
claude-code 2
windsurf 2

Skill 文档

Ads CLI

Manage paid ads across Google/Meta/TikTok via one CLI and unified client.

Env vars:

  • GOOGLE_ADS_DEVELOPER_TOKEN
  • GOOGLE_ADS_CLIENT_ID
  • META_APP_ID
  • META_APP_SECRET
  • TIKTOK_ACCESS_TOKEN

Quick start:

python cli.py auth --platform google
python cli.py create-campaign --platform google --objective conversions --budget 50 --targeting "developers"
python cli.py adjust-budget --platform google --campaign-id abc123 --amount "+20%"
python cli.py report --platforms google,meta --date-range 7d --format table
python cli.py pause --platform google --campaign-id abc123

Strategy reference:

  • Read /Users/phaedrus/.claude/skills/paid-ads/SKILL.md for platform selection, structure, targeting, copy, and optimization.

Structure:

  • cli.py defines Click commands.
  • src/google.py, src/meta.py, src/tiktok.py are per-platform wrappers.
  • src/unified.py routes by platform.

Extend:

  • Add new platform wrapper with auth, create_campaign, adjust_budget, get_report, pause_campaign.
  • Register it in UnifiedAdsClient.