$npx -y skills add norahe0304-art/30x-seo --skill 30x-seo-ai-visibilityMonitor brand visibility across AI platforms (Google AI Overview, ChatGPT, Claude, Gemini, Perplexity). Track LLM mentions, analyze AI-generated citations, identify AI search opportunities. Use when user says "AI visibility", "LLM mentions", "AI Overview", "ChatGPT visibility", "
| 1 | # SEO AI Visibility Monitor |
| 2 | |
| 3 | Monitor and analyze brand visibility across AI-powered search and LLM platforms using DataForSEO AI Optimization API. |
| 4 | |
| 5 | ## API Configuration |
| 6 | |
| 7 | Credentials stored in `~/.config/dataforseo/auth` (Base64 encoded). |
| 8 | |
| 9 | ```bash |
| 10 | AUTH=$(cat ~/.config/dataforseo/auth) |
| 11 | ``` |
| 12 | |
| 13 | ## Quick Reference |
| 14 | |
| 15 | | Command | What it does | |
| 16 | |---------|-------------| |
| 17 | | `/seo ai-visibility domain <domain>` | Check domain mentions across AI platforms | |
| 18 | | `/seo ai-visibility keyword <keyword>` | See which domains AI cites for a topic | |
| 19 | | `/seo ai-visibility top-domains <keyword>` | Top cited domains for a keyword | |
| 20 | | `/seo ai-visibility top-pages <domain>` | Most cited pages from a domain | |
| 21 | | `/seo ai-visibility compare <domain1> <domain2>` | Compare AI visibility between domains | |
| 22 | | `/seo ai-visibility chatgpt <query>` | Get ChatGPT response for query | |
| 23 | | `/seo ai-visibility claude <query>` | Get Claude response for query | |
| 24 | | `/seo ai-visibility perplexity <query>` | Get Perplexity response for query | |
| 25 | |
| 26 | ## API Endpoints |
| 27 | |
| 28 | ### LLM Mentions Search (Domain/Keyword Monitoring) |
| 29 | ```bash |
| 30 | curl -s -X POST "https://api.dataforseo.com/v3/ai_optimization/llm_mentions/search/live" \ |
| 31 | -H "Authorization: Basic $(cat ~/.config/dataforseo/auth)" \ |
| 32 | -H "Content-Type: application/json" \ |
| 33 | -d '[{ |
| 34 | "target": [{"domain": "example.com"}], |
| 35 | "platform": "google", |
| 36 | "location_code": 2840, |
| 37 | "language_code": "en", |
| 38 | "limit": 100 |
| 39 | }]' |
| 40 | ``` |
| 41 | |
| 42 | ### Top Domains for Keyword |
| 43 | ```bash |
| 44 | curl -s -X POST "https://api.dataforseo.com/v3/ai_optimization/llm_mentions/top_domains/live" \ |
| 45 | -H "Authorization: Basic $(cat ~/.config/dataforseo/auth)" \ |
| 46 | -H "Content-Type: application/json" \ |
| 47 | -d '[{ |
| 48 | "target": [{"keyword": "TARGET_KEYWORD"}], |
| 49 | "platform": "google", |
| 50 | "limit": 20 |
| 51 | }]' |
| 52 | ``` |
| 53 | |
| 54 | ### Top Pages for Domain |
| 55 | ```bash |
| 56 | curl -s -X POST "https://api.dataforseo.com/v3/ai_optimization/llm_mentions/top_pages/live" \ |
| 57 | -H "Authorization: Basic $(cat ~/.config/dataforseo/auth)" \ |
| 58 | -H "Content-Type: application/json" \ |
| 59 | -d '[{ |
| 60 | "target": [{"domain": "example.com"}], |
| 61 | "platform": "google", |
| 62 | "limit": 50 |
| 63 | }]' |
| 64 | ``` |
| 65 | |
| 66 | ### Aggregated Metrics |
| 67 | ```bash |
| 68 | curl -s -X POST "https://api.dataforseo.com/v3/ai_optimization/llm_mentions/aggregated_metrics/live" \ |
| 69 | -H "Authorization: Basic $(cat ~/.config/dataforseo/auth)" \ |
| 70 | -H "Content-Type: application/json" \ |
| 71 | -d '[{ |
| 72 | "target": [{"domain": "example.com"}], |
| 73 | "platform": "google" |
| 74 | }]' |
| 75 | ``` |
| 76 | |
| 77 | ### Cross-Platform Aggregated Metrics |
| 78 | ```bash |
| 79 | curl -s -X POST "https://api.dataforseo.com/v3/ai_optimization/llm_mentions/cross_aggregated_metrics/live" \ |
| 80 | -H "Authorization: Basic $(cat ~/.config/dataforseo/auth)" \ |
| 81 | -H "Content-Type: application/json" \ |
| 82 | -d '[{ |
| 83 | "target": [{"domain": "example.com"}] |
| 84 | }]' |
| 85 | ``` |
| 86 | |
| 87 | ### ChatGPT Response |
| 88 | ```bash |
| 89 | curl -s -X POST "https://api.dataforseo.com/v3/ai_optimization/chat_gpt/llm_responses/live" \ |
| 90 | -H "Authorization: Basic $(cat ~/.config/dataforseo/auth)" \ |
| 91 | -H "Content-Type: application/json" \ |
| 92 | -d '[{ |
| 93 | "prompt": "YOUR_QUERY_HERE" |
| 94 | }]' |
| 95 | ``` |
| 96 | |
| 97 | ### Claude Response |
| 98 | ```bash |
| 99 | curl -s -X POST "https://api.dataforseo.com/v3/ai_optimization/claude/llm_responses/live" \ |
| 100 | -H "Authorization: Basic $(cat ~/.config/dataforseo/auth)" \ |
| 101 | -H "Content-Type: application/json" \ |
| 102 | -d '[{ |
| 103 | "prompt": "YOUR_QUERY_HERE" |
| 104 | }]' |
| 105 | ``` |
| 106 | |
| 107 | ### Gemini Response |
| 108 | ```bash |
| 109 | curl -s -X POST "https://api.dataforseo.com/v3/ai_optimization/gemini/llm_responses/live" \ |
| 110 | -H "Authorization: Basic $(cat ~/.config/dataforseo/auth)" \ |
| 111 | -H "Content-Type: application/json" \ |
| 112 | -d '[{ |
| 113 | "prompt": "YOUR_QUERY_HERE" |
| 114 | }]' |
| 115 | ``` |
| 116 | |
| 117 | ### Perplexity Response |
| 118 | ```bash |
| 119 | curl -s -X POST "https://api.dataforseo.com/v3/ai_optimization/perplexity/llm_responses/live" \ |
| 120 | -H "Authorization: Basic $(cat ~/.config/dataforseo/auth)" \ |
| 121 | -H "Content-Type: application/json" \ |
| 122 | -d '[{ |
| 123 | "prompt": "YOUR_QUERY_HERE" |
| 124 | }]' |
| 125 | ``` |
| 126 | |
| 127 | ## Analysis Modes |
| 128 | |
| 129 | ### 1. Domain AI Visibility Audit |
| 130 | |
| 131 | Check how often a domain is cited by AI: |
| 132 | |
| 133 | ``` |
| 134 | Input: domain (e.g., "example.com") |
| 135 | Output: |
| 136 | - Total AI mentions across platforms |
| 137 | - Questions/queries where cited |
| 138 | - Citation position (first source, etc.) |
| 139 | - Trend over time |
| 140 | - Competitor comparison |
| 141 | ``` |
| 142 | |
| 143 | ### 2. Keyword AI Landscape |
| 144 | |
| 145 | See which domains AI cites for a topic: |
| 146 | |
| 147 | ``` |
| 148 | Input: keyword (e.g., "best project management tools") |
| 149 | Output: |
| 150 | - Top cited domains |
| 151 | - Citation frequency per domain |
| 152 | - Content types that get cited |
| 153 | - Gap analysis (competitors cited, you're not) |
| 154 | ``` |
| 155 | |
| 156 | ### 3. AI Response Analysis |
| 157 | |
| 158 | Get actual AI responses to understand context: |
| 159 | |
| 160 | ``` |
| 161 | Input: query |
| 162 | Output: |
| 163 | - Raw AI |