antigravity-seo-kit 2.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (135) hide show
  1. package/.agent/agent.md +96 -0
  2. package/.agent/skills/seo/SKILL.md +153 -0
  3. package/.agent/skills/seo/references/cwv-thresholds.md +108 -0
  4. package/.agent/skills/seo/references/eeat-framework.md +214 -0
  5. package/.agent/skills/seo/references/local-schema-types.md +230 -0
  6. package/.agent/skills/seo/references/local-seo-signals.md +218 -0
  7. package/.agent/skills/seo/references/maps-api-endpoints.md +160 -0
  8. package/.agent/skills/seo/references/maps-free-apis.md +176 -0
  9. package/.agent/skills/seo/references/maps-gbp-checklist.md +150 -0
  10. package/.agent/skills/seo/references/maps-geo-grid.md +154 -0
  11. package/.agent/skills/seo/references/quality-gates.md +155 -0
  12. package/.agent/skills/seo/references/schema-types.md +118 -0
  13. package/.agent/skills/seo/schema/templates.json +213 -0
  14. package/.agent/skills/seo/scripts/analyze_visual.py +217 -0
  15. package/.agent/skills/seo/scripts/capture_screenshot.py +181 -0
  16. package/.agent/skills/seo/scripts/fetch_page.py +196 -0
  17. package/.agent/skills/seo/scripts/parse_html.py +201 -0
  18. package/.agent/skills/seo-audit/SKILL.md +278 -0
  19. package/.agent/skills/seo-competitor-pages/SKILL.md +212 -0
  20. package/.agent/skills/seo-content/SKILL.md +230 -0
  21. package/.agent/skills/seo-dataforseo/SKILL.md +418 -0
  22. package/.agent/skills/seo-geo/SKILL.md +305 -0
  23. package/.agent/skills/seo-google/SKILL.md +405 -0
  24. package/.agent/skills/seo-google/assets/templates/cwv-audit-report.md +48 -0
  25. package/.agent/skills/seo-google/assets/templates/gsc-performance-report.md +44 -0
  26. package/.agent/skills/seo-google/assets/templates/indexation-status-report.md +43 -0
  27. package/.agent/skills/seo-google/references/auth-setup.md +154 -0
  28. package/.agent/skills/seo-google/references/ga4-data-api.md +184 -0
  29. package/.agent/skills/seo-google/references/indexing-api.md +107 -0
  30. package/.agent/skills/seo-google/references/keyword-planner-api.md +66 -0
  31. package/.agent/skills/seo-google/references/nlp-api.md +55 -0
  32. package/.agent/skills/seo-google/references/pagespeed-crux-api.md +204 -0
  33. package/.agent/skills/seo-google/references/rate-limits-quotas.md +75 -0
  34. package/.agent/skills/seo-google/references/search-console-api.md +156 -0
  35. package/.agent/skills/seo-google/references/supplementary-apis.md +99 -0
  36. package/.agent/skills/seo-google/references/youtube-api.md +49 -0
  37. package/.agent/skills/seo-google/scripts/crux_history.py +321 -0
  38. package/.agent/skills/seo-google/scripts/ga4_report.py +478 -0
  39. package/.agent/skills/seo-google/scripts/google_auth.py +795 -0
  40. package/.agent/skills/seo-google/scripts/google_report.py +2273 -0
  41. package/.agent/skills/seo-google/scripts/gsc_inspect.py +340 -0
  42. package/.agent/skills/seo-google/scripts/gsc_query.py +378 -0
  43. package/.agent/skills/seo-google/scripts/indexing_notify.py +313 -0
  44. package/.agent/skills/seo-google/scripts/keyword_planner.py +297 -0
  45. package/.agent/skills/seo-google/scripts/nlp_analyze.py +309 -0
  46. package/.agent/skills/seo-google/scripts/pagespeed_check.py +649 -0
  47. package/.agent/skills/seo-google/scripts/youtube_search.py +355 -0
  48. package/.agent/skills/seo-hreflang/SKILL.md +192 -0
  49. package/.agent/skills/seo-image-gen/SKILL.md +211 -0
  50. package/.agent/skills/seo-image-gen/references/cost-tracking.md +47 -0
  51. package/.agent/skills/seo-image-gen/references/gemini-models.md +200 -0
  52. package/.agent/skills/seo-image-gen/references/mcp-tools.md +115 -0
  53. package/.agent/skills/seo-image-gen/references/post-processing.md +192 -0
  54. package/.agent/skills/seo-image-gen/references/presets.md +69 -0
  55. package/.agent/skills/seo-image-gen/references/prompt-engineering.md +411 -0
  56. package/.agent/skills/seo-image-gen/references/seo-image-presets.md +137 -0
  57. package/.agent/skills/seo-image-gen/scripts/batch.py +97 -0
  58. package/.agent/skills/seo-image-gen/scripts/cost_tracker.py +191 -0
  59. package/.agent/skills/seo-image-gen/scripts/edit.py +141 -0
  60. package/.agent/skills/seo-image-gen/scripts/generate.py +149 -0
  61. package/.agent/skills/seo-image-gen/scripts/presets.py +153 -0
  62. package/.agent/skills/seo-image-gen/scripts/setup_mcp.py +151 -0
  63. package/.agent/skills/seo-image-gen/scripts/validate_setup.py +133 -0
  64. package/.agent/skills/seo-images/SKILL.md +176 -0
  65. package/.agent/skills/seo-local/SKILL.md +381 -0
  66. package/.agent/skills/seo-maps/SKILL.md +328 -0
  67. package/.agent/skills/seo-page/SKILL.md +86 -0
  68. package/.agent/skills/seo-plan/SKILL.md +118 -0
  69. package/.agent/skills/seo-plan/assets/agency.md +175 -0
  70. package/.agent/skills/seo-plan/assets/ecommerce.md +167 -0
  71. package/.agent/skills/seo-plan/assets/generic.md +144 -0
  72. package/.agent/skills/seo-plan/assets/local-service.md +160 -0
  73. package/.agent/skills/seo-plan/assets/publisher.md +153 -0
  74. package/.agent/skills/seo-plan/assets/saas.md +135 -0
  75. package/.agent/skills/seo-programmatic/SKILL.md +171 -0
  76. package/.agent/skills/seo-schema/SKILL.md +223 -0
  77. package/.agent/skills/seo-sitemap/SKILL.md +180 -0
  78. package/.agent/skills/seo-technical/SKILL.md +211 -0
  79. package/.agent/workflows/seo-audit.md +17 -0
  80. package/.agent/workflows/seo-competitor-pages.md +12 -0
  81. package/.agent/workflows/seo-content.md +14 -0
  82. package/.agent/workflows/seo-geo.md +12 -0
  83. package/.agent/workflows/seo-google.md +12 -0
  84. package/.agent/workflows/seo-hreflang.md +12 -0
  85. package/.agent/workflows/seo-images.md +13 -0
  86. package/.agent/workflows/seo-local.md +12 -0
  87. package/.agent/workflows/seo-maps.md +11 -0
  88. package/.agent/workflows/seo-page.md +13 -0
  89. package/.agent/workflows/seo-plan.md +13 -0
  90. package/.agent/workflows/seo-programmatic.md +12 -0
  91. package/.agent/workflows/seo-schema.md +11 -0
  92. package/.agent/workflows/seo-sitemap.md +9 -0
  93. package/.agent/workflows/seo-technical.md +18 -0
  94. package/LICENSE +88 -0
  95. package/README.md +122 -0
  96. package/bin/cli.js +117 -0
  97. package/docs/ARCHITECTURE.md +218 -0
  98. package/docs/COMMANDS.md +184 -0
  99. package/docs/INSTALLATION.md +100 -0
  100. package/docs/MCP-INTEGRATION.md +153 -0
  101. package/docs/TROUBLESHOOTING.md +151 -0
  102. package/docs/superpowers/plans/2026-03-13-github-audit-fixes.md +511 -0
  103. package/extensions/banana/README.md +95 -0
  104. package/extensions/banana/docs/BANANA-SETUP.md +86 -0
  105. package/extensions/banana/install.sh +170 -0
  106. package/extensions/banana/references/cost-tracking.md +47 -0
  107. package/extensions/banana/references/gemini-models.md +200 -0
  108. package/extensions/banana/references/mcp-tools.md +115 -0
  109. package/extensions/banana/references/post-processing.md +192 -0
  110. package/extensions/banana/references/presets.md +69 -0
  111. package/extensions/banana/references/prompt-engineering.md +411 -0
  112. package/extensions/banana/references/seo-image-presets.md +137 -0
  113. package/extensions/banana/scripts/batch.py +97 -0
  114. package/extensions/banana/scripts/cost_tracker.py +191 -0
  115. package/extensions/banana/scripts/edit.py +141 -0
  116. package/extensions/banana/scripts/generate.py +149 -0
  117. package/extensions/banana/scripts/presets.py +153 -0
  118. package/extensions/banana/scripts/setup_mcp.py +151 -0
  119. package/extensions/banana/scripts/validate_setup.py +133 -0
  120. package/extensions/banana/uninstall.sh +43 -0
  121. package/extensions/dataforseo/README.md +169 -0
  122. package/extensions/dataforseo/docs/DATAFORSEO-SETUP.md +74 -0
  123. package/extensions/dataforseo/field-config.json +280 -0
  124. package/extensions/dataforseo/install.ps1 +110 -0
  125. package/extensions/dataforseo/install.sh +161 -0
  126. package/extensions/dataforseo/uninstall.ps1 +35 -0
  127. package/extensions/dataforseo/uninstall.sh +39 -0
  128. package/lib/api.js +190 -0
  129. package/lib/fingerprint.js +68 -0
  130. package/lib/installer.js +486 -0
  131. package/lib/utils.js +254 -0
  132. package/package.json +40 -0
  133. package/pyproject.toml +11 -0
  134. package/requirements-google.txt +15 -0
  135. package/requirements.txt +11 -0
@@ -0,0 +1,305 @@
1
+ ---
2
+ name: seo-geo
3
+ description: >
4
+ Optimize content for AI Overviews (formerly SGE), ChatGPT web search,
5
+ Perplexity, and other AI-powered search experiences. Generative Engine
6
+ Optimization (GEO) analysis including brand mention signals, AI crawler
7
+ accessibility, llms.txt compliance, passage-level citability scoring, and
8
+ platform-specific optimization. Use when user says "AI Overviews", "SGE",
9
+ "GEO", "AI search", "LLM optimization", "Perplexity", "AI citations",
10
+ "ChatGPT search", or "AI visibility".
11
+ ---
12
+
13
+ # AI Search / GEO Optimization (February 2026)
14
+
15
+ ## Key Statistics
16
+
17
+ | Metric | Value | Source |
18
+ |--------|-------|--------|
19
+ | AI Overviews reach | 1.5 billion users/month across 200+ countries | Google |
20
+ | AI Overviews query coverage | 50%+ of all queries | Industry data |
21
+ | AI-referred sessions growth | 527% (Jan-May 2025) | SparkToro |
22
+ | ChatGPT weekly active users | 900 million | OpenAI |
23
+ | Perplexity monthly queries | 500+ million | Perplexity |
24
+
25
+ ## Critical Insight: Brand Mentions > Backlinks
26
+
27
+ **Brand mentions correlate 3x more strongly with AI visibility than backlinks.**
28
+ (Ahrefs December 2025 study of 75,000 brands)
29
+
30
+ | Signal | Correlation with AI Citations |
31
+ |--------|------------------------------|
32
+ | YouTube mentions | ~0.737 (strongest) |
33
+ | Reddit mentions | High |
34
+ | Wikipedia presence | High |
35
+ | LinkedIn presence | Moderate |
36
+ | Domain Rating (backlinks) | ~0.266 (weak) |
37
+
38
+ **Only 11% of domains** are cited by both ChatGPT and Google AI Overviews for the same query, so platform-specific optimization is essential.
39
+
40
+ ---
41
+
42
+ ## GEO Analysis Criteria (Updated)
43
+
44
+ ### 1. Citability Score (25%)
45
+
46
+ **Optimal passage length: 134-167 words** for AI citation.
47
+
48
+ **Strong signals:**
49
+ - Clear, quotable sentences with specific facts/statistics
50
+ - Self-contained answer blocks (can be extracted without context)
51
+ - Direct answer in first 40-60 words of section
52
+ - Claims attributed with specific sources
53
+ - Definitions following "X is..." or "X refers to..." patterns
54
+ - Unique data points not found elsewhere
55
+
56
+ **Weak signals:**
57
+ - Vague, general statements
58
+ - Opinion without evidence
59
+ - Buried conclusions
60
+ - No specific data points
61
+
62
+ ### 2. Structural Readability (20%)
63
+
64
+ **92% of AI Overview citations come from top-10 ranking pages**, but 47% come from pages ranking below position 5, demonstrating different selection logic.
65
+
66
+ **Strong signals:**
67
+ - Clean H1->H2->H3 heading hierarchy
68
+ - Question-based headings (matches query patterns)
69
+ - Short paragraphs (2-4 sentences)
70
+ - Tables for comparative data
71
+ - Ordered/unordered lists for step-by-step or multi-item content
72
+ - FAQ sections with clear Q&A format
73
+
74
+ **Weak signals:**
75
+ - Wall of text with no structure
76
+ - Inconsistent heading hierarchy
77
+ - No lists or tables
78
+ - Information buried in paragraphs
79
+
80
+ ### 3. Multi-Modal Content (15%)
81
+
82
+ Content with multi-modal elements sees **156% higher selection rates**.
83
+
84
+ **Check for:**
85
+ - Text + relevant images
86
+ - Video content (embedded or linked)
87
+ - Infographics and charts
88
+ - Interactive elements (calculators, tools)
89
+ - Structured data supporting media
90
+
91
+ ### 4. Authority & Brand Signals (20%)
92
+
93
+ **Strong signals:**
94
+ - Author byline with credentials
95
+ - Publication date and last-updated date
96
+ - Citations to primary sources (studies, official docs, data)
97
+ - Organization credentials and affiliations
98
+ - Expert quotes with attribution
99
+ - Entity presence in Wikipedia, Wikidata
100
+ - Mentions on Reddit, YouTube, LinkedIn
101
+
102
+ **Weak signals:**
103
+ - Anonymous authorship
104
+ - No dates
105
+ - No sources cited
106
+ - No brand presence across platforms
107
+
108
+ ### 5. Technical Accessibility (20%)
109
+
110
+ **AI crawlers do NOT execute JavaScript.** Server-side rendering is critical.
111
+
112
+ **Check for:**
113
+ - Server-side rendering (SSR) vs client-only content
114
+ - AI crawler access in robots.txt
115
+ - llms.txt file presence and configuration
116
+ - RSL 1.0 licensing terms
117
+
118
+ ---
119
+
120
+ ## AI Crawler Detection
121
+
122
+ Check `robots.txt` for these AI crawlers:
123
+
124
+ | Crawler | Owner | Purpose |
125
+ |---------|-------|---------|
126
+ | GPTBot | OpenAI | ChatGPT web search |
127
+ | OAI-SearchBot | OpenAI | OpenAI search features |
128
+ | ChatGPT-User | OpenAI | ChatGPT browsing |
129
+ | ClaudeBot | Anthropic | Claude web features |
130
+ | PerplexityBot | Perplexity | Perplexity AI search |
131
+ | CCBot | Common Crawl | Training data (often blocked) |
132
+ | anthropic-ai | Anthropic | Claude training |
133
+ | Bytespider | ByteDance | TikTok/Douyin AI |
134
+ | cohere-ai | Cohere | Cohere models |
135
+
136
+ **Recommendation:** Allow GPTBot, OAI-SearchBot, ClaudeBot, PerplexityBot for AI search visibility. Block CCBot and training crawlers if desired.
137
+
138
+ ---
139
+
140
+ ## llms.txt Standard
141
+
142
+ The emerging **llms.txt** standard provides AI crawlers with structured content guidance.
143
+
144
+ **Location:** `/llms.txt` (root of domain)
145
+
146
+ **Format:**
147
+ ```
148
+ # Title of site
149
+ > Brief description
150
+
151
+ ## Main sections
152
+ - [Page title](url): Description
153
+ - [Another page](url): Description
154
+
155
+ ## Optional: Key facts
156
+ - Fact 1
157
+ - Fact 2
158
+ ```
159
+
160
+ **Check for:**
161
+ - Presence of `/llms.txt`
162
+ - Structured content guidance
163
+ - Key page highlights
164
+ - Contact/authority information
165
+
166
+ ---
167
+
168
+ ## RSL 1.0 (Really Simple Licensing)
169
+
170
+ New standard (December 2025) for machine-readable AI licensing terms.
171
+
172
+ **Backed by:** Reddit, Yahoo, Medium, Quora, Cloudflare, Akamai, Creative Commons
173
+
174
+ **Check for:** RSL implementation and appropriate licensing terms.
175
+
176
+ ---
177
+
178
+ ## Platform-Specific Optimization
179
+
180
+ | Platform | Key Citation Sources | Optimization Focus |
181
+ |----------|---------------------|-------------------|
182
+ | **Google AI Overviews** | Top-10 ranking pages (92%) | Traditional SEO + passage optimization |
183
+ | **ChatGPT** | Wikipedia (47.9%), Reddit (11.3%) | Entity presence, authoritative sources |
184
+ | **Perplexity** | Reddit (46.7%), Wikipedia | Community validation, discussions |
185
+ | **Bing Copilot** | Bing index, authoritative sites | Bing SEO, IndexNow |
186
+
187
+ ---
188
+
189
+ ## Output
190
+
191
+ Generate `GEO-ANALYSIS.md` with:
192
+
193
+ 1. **GEO Readiness Score: XX/100**
194
+ 2. **Platform breakdown** (Google AIO, ChatGPT, Perplexity scores)
195
+ 3. **AI Crawler Access Status** (which crawlers allowed/blocked)
196
+ 4. **llms.txt Status** (present, missing, recommendations)
197
+ 5. **Brand Mention Analysis** (presence on Wikipedia, Reddit, YouTube, LinkedIn)
198
+ 6. **Passage-Level Citability** (optimal 134-167 word blocks identified)
199
+ 7. **Server-Side Rendering Check** (JavaScript dependency analysis)
200
+ 8. **Top 5 Highest-Impact Changes**
201
+ 9. **Schema Recommendations** (for AI discoverability)
202
+ 10. **Content Reformatting Suggestions** (specific passages to rewrite)
203
+
204
+ ---
205
+
206
+ ## Quick Wins
207
+
208
+ 1. Add "What is [topic]?" definition in first 60 words
209
+ 2. Create 134-167 word self-contained answer blocks
210
+ 3. Add question-based H2/H3 headings
211
+ 4. Include specific statistics with sources
212
+ 5. Add publication/update dates
213
+ 6. Implement Person schema for authors
214
+ 7. Allow key AI crawlers in robots.txt
215
+
216
+ ## Medium Effort
217
+
218
+ 1. Create `/llms.txt` file
219
+ 2. Add author bio with credentials + Wikipedia/LinkedIn links
220
+ 3. Ensure server-side rendering for key content
221
+ 4. Build entity presence on Reddit, YouTube
222
+ 5. Add comparison tables with data
223
+ 6. Implement FAQ sections (structured, not schema for commercial sites)
224
+
225
+ ## High Impact
226
+
227
+ 1. Create original research/surveys (unique citability)
228
+ 2. Build Wikipedia presence for brand/key people
229
+ 3. Establish YouTube channel with content mentions
230
+ 4. Implement comprehensive entity linking (sameAs across platforms)
231
+ 5. Develop unique tools or calculators
232
+
233
+ ## DataForSEO Integration (Optional)
234
+
235
+ If DataForSEO MCP tools are available, use `ai_optimization_chat_gpt_scraper` to check what ChatGPT web search returns for target queries (real GEO visibility check) and `ai_opt_llm_ment_search` with `ai_opt_llm_ment_top_domains` for LLM mention tracking across AI platforms.
236
+
237
+ ## Error Handling
238
+
239
+ | Scenario | Action |
240
+ |----------|--------|
241
+ | URL unreachable (DNS failure, connection refused) | Report the error clearly. Do not guess site content. Suggest the user verify the URL and try again. |
242
+ | AI crawlers blocked by robots.txt | Report exactly which crawlers are blocked and which are allowed. Provide specific robots.txt directives to add for enabling AI search visibility. |
243
+ | No llms.txt found | Note the absence and provide a ready-to-use llms.txt template based on the site's content structure. |
244
+ | No structured data detected | Report the gap and provide specific schema recommendations (Article, Organization, Person) for improving AI discoverability. |
245
+
246
+ ## Specialist Role Instructions
247
+
248
+ When operating as a specialist during audits:
249
+
250
+ You are a Generative Engine Optimization (GEO) specialist. When given a URL:
251
+
252
+ 1. Fetch the page and check robots.txt for AI crawler rules
253
+ 2. Check for `/llms.txt` and RSL 1.0 licensing
254
+ 3. Analyze content citability (passage length, structure, directness)
255
+ 4. Evaluate authority signals (authorship, dates, citations, entity presence)
256
+ 5. Assess technical accessibility for AI crawlers (SSR vs CSR)
257
+ 6. Score across 5 dimensions and generate prioritized recommendations
258
+
259
+ ## GEO Health Score (0-100)
260
+
261
+ | Dimension | Weight |
262
+ |-----------|--------|
263
+ | Citability | 25% |
264
+ | Structural Readability | 20% |
265
+ | Multi-Modal Content | 15% |
266
+ | Authority & Brand Signals | 20% |
267
+ | Technical Accessibility | 20% |
268
+
269
+ ## AI Crawlers to Check in robots.txt
270
+
271
+ Allow for AI search visibility: GPTBot, OAI-SearchBot, ClaudeBot, PerplexityBot
272
+ Optional block (training only): CCBot, anthropic-ai, cohere-ai
273
+
274
+ ## Key Citability Signals
275
+
276
+ - Optimal passage length: **134-167 words** for AI citation
277
+ - Direct answers in first 40-60 words of each section
278
+ - Question-based H2/H3 headings
279
+ - Specific statistics with source attribution
280
+ - Self-contained answer blocks (extractable without context)
281
+
282
+ ## Brand Mention Correlation with AI Citations
283
+
284
+ | Signal | Correlation |
285
+ |--------|-------------|
286
+ | YouTube mentions | ~0.737 (strongest) |
287
+ | Reddit presence | High |
288
+ | Wikipedia entity | High |
289
+ | Domain Rating (backlinks) | ~0.266 (weak) |
290
+
291
+ Only 11% of domains are cited by both ChatGPT and Google AI Overviews, so platform optimization matters.
292
+
293
+ ## DataForSEO Integration (Optional)
294
+
295
+ If DataForSEO MCP tools are available, use `ai_optimization_chat_gpt_scraper` for live ChatGPT visibility and `ai_opt_llm_ment_search` for LLM mention tracking.
296
+
297
+ ## Output Format
298
+
299
+ Provide a structured report with:
300
+ - GEO Readiness Score (0-100) with dimension breakdown
301
+ - AI Crawler Access Status (allowed/blocked per crawler)
302
+ - llms.txt status (present/missing/malformed)
303
+ - Brand mention analysis (Wikipedia, Reddit, YouTube, LinkedIn)
304
+ - Top 5 highest-impact changes with effort estimates
305
+ - Platform-specific scores (Google AIO, ChatGPT, Perplexity, Bing Copilot)