بنقرة واحدة
google-ads
Manage and optimize Google Ads / Adwords — performance, campaigns, spend, conversions.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Manage and optimize Google Ads / Adwords — performance, campaigns, spend, conversions.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Gmail, Calendar, Chat, Classroom, Drive, Docs, Slides, Sheets, Contacts, Tasks, People, Groups, Keep — all via gog CLI.
Check stock prices, crypto quotes, option chains, and market history via Alpaca.
Create, edit, delete, and search calendar events in Apple Calendar on macOS. Use for "add a meeting", "what's on my calendar", or "move my 3pm".
Add, edit, complete, and list reminders on macOS via remindctl. Use for "remind me to…", "show my todos", or "mark X done".
Track live flight status, delays, gates, and position. Use for "track AA100", "is my flight on time?", or "where is BA123 right now?".
Fetch airport weather (METAR, TAF, PIREPs) for flight planning and briefings. Use for "weather at KJFK", "TAF for EGLL", or pre-flight weather checks.
| name | google-ads |
| description | Manage and optimize Google Ads / Adwords — performance, campaigns, spend, conversions. |
| metadata | {"homepage":"https://developers.google.com/google-ads/api/docs/start","dependencies":{"python3":{"description":"Python 3 runtime","check":"which python3"},"google-ads-sdk":{"description":"Google Ads Python SDK","check":"python3 -c \"from google.ads.googleads.client import GoogleAdsClient\"","install":"pip install google-ads"}}} |
Manage Google Ads accounts via API or shell commands.
# Verify google-ads SDK
python3 -c "from google.ads.googleads.client import GoogleAdsClient; print('OK')"
# Check config
cat ~/.google-ads.yaml
query = """
SELECT campaign.name, campaign.status,
metrics.cost_micros, metrics.conversions,
metrics.cost_per_conversion
FROM campaign
WHERE segments.date DURING LAST_30_DAYS
ORDER BY metrics.cost_micros DESC
"""
query = """
SELECT ad_group_criterion.keyword.text,
campaign.name, metrics.cost_micros
FROM keyword_view
WHERE metrics.conversions = 0
AND metrics.cost_micros > 500000000
AND segments.date DURING LAST_90_DAYS
ORDER BY metrics.cost_micros DESC
"""
operations = []
for keyword_id in keywords_to_pause:
operation = client.get_type("AdGroupCriterionOperation")
operation.update.resource_name = f"customers/{customer_id}/adGroupCriteria/{ad_group_id}~{keyword_id}"
operation.update.status = client.enums.AdGroupCriterionStatusEnum.PAUSED
operations.append(operation)
service.mutate_ad_group_criteria(customer_id=customer_id, operations=operations)
| Check | What to Look For |
|---|---|
| Zero-conv keywords | Cost > $500, Conv = 0 -> Wasted spend |
| Empty ad groups | No creative running |
| Policy violations | Yellow warning icons |
| Optimization Score | Below 70% = action needed |
| Conversion tracking | Inactive/no recent data |
## Campaign Performance (Last 30 Days)
| Campaign | Cost | Conv | CPA | Status |
|----------|------|------|-----|--------|
| Branded | $5K | 50 | $100| Good |
| SDK Web | $10K | 2 | $5K | Pause |
## Recommended Actions
1. **PAUSE**: SDK Web campaign ($5K CPA)
2. **INCREASE**: Branded budget (strong performer)
cost_micros = micros (divide by 1,000,000 for dollars)