30x-seo-geo-technicallisted
Install: claude install-skill square-lupus579/30x-seo
# GEO Technical (AI Search Technical Check)
## What This Skill Does
Check website's **technical accessibility** for AI search engines, find issues and help fix them.
**Does NOT do**:
- Content quality analysis → use `seo-content-audit` (E-E-A-T + AI citability)
---
## Process
### Step 1: Check AI Crawler Access
Read `robots.txt` and check if these crawlers are allowed:
| Crawler | Owner | Purpose | Recommendation |
|---------|-------|---------|----------------|
| GPTBot | OpenAI | ChatGPT Search | ✅ Allow |
| OAI-SearchBot | OpenAI | OpenAI Search | ✅ Allow |
| ChatGPT-User | OpenAI | ChatGPT Browsing | ✅ Allow |
| ClaudeBot | Anthropic | Claude Search | ✅ Allow |
| PerplexityBot | Perplexity | Perplexity AI | ✅ Allow |
| CCBot | Common Crawl | Training data | ⚠️ Optional block |
| anthropic-ai | Anthropic | Claude Training | ⚠️ Optional block |
| Bytespider | ByteDance | TikTok AI | ⚠️ Optional block |
**Problem Examples**:
```
❌ GPTBot blocked → ChatGPT can't cite your content
❌ PerplexityBot blocked → Perplexity can't cite you
```
**Fix Output**:
```
# robots.txt modification suggestion
User-agent: GPTBot
Allow: /
User-agent: ClaudeBot
Allow: /
User-agent: PerplexityBot
Allow: /
```
### Step 2: Check llms.txt
Check if `/llms.txt` exists:
| Status | Description |
|--------|-------------|
| ✅ Exists and complete | Has title, description, key page list |
| ⚠️ Exists but incomplete | Missing key information |
| ❌ Does not exist | Needs creation |
**Fix Output**