# 30x Seo Geo Technical

> >

- **Type:** Skill
- **Install:** `agentstack add skill-norahe0304-art-30x-seo-30x-seo-geo-technical`
- **Verified:** Yes — security-reviewed for prompt injection and unsafe behavior
- **Seller:** [norahe0304-art](https://agentstack.voostack.com/s/norahe0304-art)
- **Installs:** 0
- **Category:** [Agent Skills](https://agentstack.voostack.com/c/agent-skills)
- **Latest version:** 0.1.0
- **License:** MIT
- **Upstream author:** [norahe0304-art](https://github.com/norahe0304-art)
- **Source:** https://github.com/norahe0304-art/30x-seo/tree/main/skills/30x-seo-geo-technical

## Install

```sh
agentstack add skill-norahe0304-art-30x-seo-30x-seo-geo-technical
```

Requires the [AgentStack CLI](https://agentstack.voostack.com/docs/cli). Works with Claude Code, Cursor, and any MCP-compatible agent.

## About

# 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** (generate llms.txt):
```markdown
# [Website Name]
> [One-line description]

## Core Pages
- [Homepage](https://example.com/): Website homepage
- [Products](https://example.com/products): Product list
- [About Us](https://example.com/about): Company introduction

## Key Information
- Founded in XXXX
- Serving XXX customers
- Main business: XXX
```

### Step 3: Check Server-Side Rendering

**AI crawlers don't execute JavaScript** - key content must be directly visible in HTML.

Check method:
1. Access page with JavaScript disabled
2. Check if key content is visible

| Status | Description |
|--------|-------------|
| ✅ SSR | Key content in HTML |
| ❌ CSR | Key content requires JS to load |

**Problem Examples**:
```
❌ Product descriptions only appear after JS rendering
❌ Article body depends on React hydration
```

**Fix Recommendations**:
- Use SSR/SSG frameworks (Next.js, Nuxt, Astro)
- Pre-render key pages
- Ensure `` has content

### Step 4: Platform-Specific Check

| Platform | Technical Requirements |
|----------|------------------------|
| **Google AI Overviews** | Traditional SEO basics + Schema |
| **ChatGPT** | GPTBot access + llms.txt |
| **Perplexity** | PerplexityBot access |
| **Bing Copilot** | Bing indexing + IndexNow |

---

## Output

### 1. GEO Technical Report

```markdown
# GEO Technical Report

## AI Crawler Access Status
| Crawler | Status | Issue |
|---------|--------|-------|
| GPTBot | ✅ Allowed | — |
| ClaudeBot | ❌ Blocked | robots.txt line 12 |
| PerplexityBot | ✅ Allowed | — |

## llms.txt Status
❌ Does not exist

## SSR Status
⚠️ Some pages depend on JS

## Issues Summary
1. ClaudeBot is blocked
2. Missing llms.txt
3. /products page content depends on JS
```

### 2. Fix Code

```markdown
# Fix Recommendations

## robots.txt Modification
[Generate modified robots.txt]

## llms.txt Generation
[Generate complete llms.txt]

## SSR Fix Recommendations
- Page /products needs SSR enabled
- Recommend migrating to Next.js SSG
```

---

## Reference: AI Crawler Details

### Complete robots.txt Configuration Example

```
# AI Search Crawlers (Allow)
User-agent: GPTBot
Allow: /

User-agent: OAI-SearchBot
Allow: /

User-agent: ChatGPT-User
Allow: /

User-agent: ClaudeBot
Allow: /

User-agent: PerplexityBot
Allow: /

# AI Training Crawlers (Optional Block)
User-agent: CCBot
Disallow: /

User-agent: anthropic-ai
Disallow: /
```

### Complete llms.txt Format

```markdown
# Site Name
> Brief description of the site

## Main Sections
- [Page Title](url): Description
- [Another Page](url): Description

## Key Facts
- Fact 1
- Fact 2

## Contact
- Email: xxx
- Social: xxx
```

### RSL 1.0 (Really Simple Licensing)

Machine-readable AI licensing terms (2025.12).

Supporters: Reddit, Yahoo, Medium, Quora, Cloudflare, Akamai, Creative Commons

---

## Integration

| Related Skill | Usage |
|---------------|-------|
| seo-technical | Traditional technical SEO checks |
| seo-content-audit | Content quality + AI citability analysis |

[PROTOCOL]: Update this header on changes, then check CLAUDE.md

## Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

- **Author:** [norahe0304-art](https://github.com/norahe0304-art)
- **Source:** [norahe0304-art/30x-seo](https://github.com/norahe0304-art/30x-seo)
- **License:** MIT

Install and usage instructions live in the source repository linked above.

## Pricing

- **Free** — Free

## Security capabilities

Automated source analysis of v0.1.0 — what this tool can access:

- **Network access:** no
- **Filesystem access:** no
- **Shell / process execution:** no
- **Environment & secrets:** no
- **Dynamic code execution:** no

*"Yes" means the capability is present in the source — more access means more to trust, not that it is unsafe.*


## Versions

- **0.1.0** — security scan: passed — Imported from the upstream source.

## Links

- Listing page: https://agentstack.voostack.com/l/skill-norahe0304-art-30x-seo-30x-seo-geo-technical
- Seller: https://agentstack.voostack.com/s/norahe0304-art
- Browse the marketplace: https://agentstack.voostack.com/browse

---
Listed on AgentStack — the marketplace for AI agent skills and MCP servers. Every listing is security-reviewed. Creators keep 70%.
