Technical SEO Audit
Categories
1. Crawlability
- robots.txt: exists, valid, not blocking important resources
- XML sitemap: exists, referenced in robots.txt, valid format
- Noindex tags: intentional vs accidental
- Crawl depth: important pages within 3 clicks of homepage
- JavaScript rendering: check if critical content requires JS execution
- Crawl budget: for large sites (>10k pages), efficiency matters
AI Crawler Management
As of 2025-2026, AI companies actively crawl the web to train models and power AI search. Managing these crawlers via robots.txt is a critical technical SEO consideration.
Known AI crawlers:
| Crawler |
Company |
robots.txt token |
Purpose |
| GPTBot |
OpenAI |
GPTBot |
Model training |
| ChatGPT-User |
OpenAI |
ChatGPT-User |
Real-time browsing |
| ClaudeBot |
Anthropic |
ClaudeBot |
Model training |
| PerplexityBot |
Perplexity |
PerplexityBot |
Search index + training |
| Bytespider |
ByteDance |
Bytespider |
Model training |
| Google-Extended |
Google |
Google-Extended |
Gemini training (NOT search) |
| CCBot |
Common Crawl |
CCBot |
Open dataset |
Key distinctions:
- Blocking
Google-Extended prevents Gemini training use but does NOT affect Google Search indexing or AI Overviews (those use Googlebot)
- Blocking
GPTBot prevents OpenAI training but does NOT prevent ChatGPT from citing your content via browsing (ChatGPT-User)
- ~3-5% of websites now use AI-specific robots.txt rules
Example — selective AI crawler blocking:
# Allow search indexing, block AI training crawlers
User-agent: GPTBot
Disallow: /
User-agent: Google-Extended
Disallow: /
User-agent: Bytespider
Disallow: /
# Allow all other crawlers (including Googlebot for search)
User-agent: *
Allow: /
Recommendation: Consider your AI visibility strategy before blocking. Being cited by AI systems drives brand awareness and referral traffic. Cross-reference the seo-geo skill for full AI visibility optimization.
2. Indexability
- Canonical tags: self-referencing, no conflicts with noindex
- Duplicate content: near-duplicates, parameter URLs, www vs non-www
- Thin content: pages below minimum word counts per type
- Pagination: rel=next/prev or load-more pattern
- Hreflang: correct for multi-language/multi-region sites
- Index bloat: unnecessary pages consuming crawl budget
3. Security
- HTTPS: enforced, valid SSL certificate, no mixed content
- Security headers:
- Content-Security-Policy (CSP)
- Strict-Transport-Security (HSTS)
- X-Frame-Options
- X-Content-Type-Options
- Referrer-Policy
- HSTS preload: check preload list inclusion for high-security sites
4. URL Structure
- Clean URLs: descriptive, hyphenated, no query parameters for content
- Hierarchy: logical folder structure reflecting site architecture
- Redirects: no chains (max 1 hop), 301 for permanent moves
- URL length: flag >100 characters
- Trailing slashes: consistent usage
5. Mobile Optimization
- Responsive design: viewport meta tag, responsive CSS
- Touch targets: minimum 48x48px with 8px spacing
- Font size: minimum 16px base
- No horizontal scroll
- Mobile-first indexing: Google indexes mobile version. Mobile-first indexing is 100% complete as of July 5, 2024. Google now crawls and indexes ALL websites exclusively with the mobile Googlebot user-agent.
6. Core Web Vitals
- LCP (Largest Contentful Paint): target <2.5s
- INP (Interaction to Next Paint): target <200ms
- INP replaced FID on March 12, 2024. FID was fully removed from all Chrome tools (CrUX API, PageSpeed Insights, Lighthouse) on September 9, 2024. Do NOT reference FID anywhere.
- CLS (Cumulative Layout Shift): target <0.1
- Evaluation uses 75th percentile of real user data
- Use PageSpeed Insights API or CrUX data if MCP available
7. Structured Data
- Detection: JSON-LD (preferred), Microdata, RDFa
- Validation against Google's supported types
- See seo-schema skill for full analysis
8. JavaScript Rendering
- Check if content visible in initial HTML vs requires JS
- Identify client-side rendered (CSR) vs server-side rendered (SSR)
- Flag SPA frameworks (React, Vue, Angular) that may cause indexing issues
- Verify dynamic rendering setup if applicable
JavaScript SEO — Canonical & Indexing Guidance (December 2025)
Google updated its JavaScript SEO documentation in December 2025 with critical clarifications:
- Canonical conflicts: If a canonical tag in raw HTML differs from one injected by JavaScript, Google may use EITHER one. Ensure canonical tags are identical between server-rendered HTML and JS-rendered output.
- noindex with JavaScript: If raw HTML contains
<meta name="robots" content="noindex"> but JavaScript removes it, Google MAY still honor the noindex from raw HTML. Serve correct robots directives in the initial HTML response.
- Non-200 status codes: Google does NOT render JavaScript on pages returning non-200 HTTP status codes. Any content or meta tags injected via JS on error pages will be invisible to Googlebot.
- Structured data in JavaScript: Product, Article, and other structured data injected via JS may face delayed processing. For time-sensitive structured data (especially e-commerce Product markup), include it in the initial server-rendered HTML.
Best practice: Serve critical SEO elements (canonical, meta robots, structured data, title, meta description) in the initial server-rendered HTML rather than relying on JavaScript injection.
9. IndexNow Protocol
- Check if site supports IndexNow for Bing, Yandex, Naver
- Supported by search engines other than Google
- Recommend implementation for faster indexing on non-Google engines
Output
Technical Score: XX/100
Category Breakdown
| Category |
Status |
Score |
| Crawlability |
✅/⚠️/❌ |
XX/100 |
| Indexability |
✅/⚠️/❌ |
XX/100 |
| Security |
✅/⚠️/❌ |
XX/100 |
| URL Structure |
✅/⚠️/❌ |
XX/100 |
| Mobile |
✅/⚠️/❌ |
XX/100 |
| Core Web Vitals |
✅/⚠️/❌ |
XX/100 |
| Structured Data |
✅/⚠️/❌ |
XX/100 |
| JS Rendering |
✅/⚠️/❌ |
XX/100 |
| IndexNow |
✅/⚠️/❌ |
XX/100 |
Critical Issues (fix immediately)
High Priority (fix within 1 week)
Medium Priority (fix within 1 month)
Low Priority (backlog)
DataForSEO Integration (Optional)
If DataForSEO MCP tools are available, use on_page_instant_pages for real page analysis (status codes, page timing, broken links, on-page checks), on_page_lighthouse for Lighthouse audits (performance, accessibility, SEO scores), and domain_analytics_technologies_domain_technologies for technology stack detection.
1---2name: seo-technical3description: Technical SEO audit across 9 categories: crawlability, indexability, security, URL structure, mobile, Core Web Vitals, structured data, JavaScript rendering, and IndexNow protocol. Use when user says "technical SEO", "crawl issues", "robots.txt", "Core Web Vitals", "site speed", or "security headers".4---56# Technical SEO Audit78## Categories910### 1. Crawlability11- robots.txt: exists, valid, not blocking important resources12- XML sitemap: exists, referenced in robots.txt, valid format13- Noindex tags: intentional vs accidental14- Crawl depth: important pages within 3 clicks of homepage15- JavaScript rendering: check if critical content requires JS execution16- Crawl budget: for large sites (>10k pages), efficiency matters1718#### AI Crawler Management1920As of 2025-2026, AI companies actively crawl the web to train models and power AI search. Managing these crawlers via robots.txt is a critical technical SEO consideration.2122**Known AI crawlers:**2324| Crawler | Company | robots.txt token | Purpose |25|---------|---------|-----------------|---------|26| GPTBot | OpenAI | `GPTBot` | Model training |27| ChatGPT-User | OpenAI | `ChatGPT-User` | Real-time browsing |28| ClaudeBot | Anthropic | `ClaudeBot` | Model training |29| PerplexityBot | Perplexity | `PerplexityBot` | Search index + training |30| Bytespider | ByteDance | `Bytespider` | Model training |31| Google-Extended | Google | `Google-Extended` | Gemini training (NOT search) |32| CCBot | Common Crawl | `CCBot` | Open dataset |3334**Key distinctions:**35- Blocking `Google-Extended` prevents Gemini training use but does NOT affect Google Search indexing or AI Overviews (those use `Googlebot`)36- Blocking `GPTBot` prevents OpenAI training but does NOT prevent ChatGPT from citing your content via browsing (`ChatGPT-User`)37- ~3-5% of websites now use AI-specific robots.txt rules3839**Example — selective AI crawler blocking:**40```41# Allow search indexing, block AI training crawlers42User-agent: GPTBot43Disallow: /4445User-agent: Google-Extended46Disallow: /4748User-agent: Bytespider49Disallow: /5051# Allow all other crawlers (including Googlebot for search)52User-agent: *53Allow: /54```5556**Recommendation:** Consider your AI visibility strategy before blocking. Being cited by AI systems drives brand awareness and referral traffic. Cross-reference the `seo-geo` skill for full AI visibility optimization.5758### 2. Indexability59- Canonical tags: self-referencing, no conflicts with noindex60- Duplicate content: near-duplicates, parameter URLs, www vs non-www61- Thin content: pages below minimum word counts per type62- Pagination: rel=next/prev or load-more pattern63- Hreflang: correct for multi-language/multi-region sites64- Index bloat: unnecessary pages consuming crawl budget6566### 3. Security67- HTTPS: enforced, valid SSL certificate, no mixed content68- Security headers:69 - Content-Security-Policy (CSP)70 - Strict-Transport-Security (HSTS)71 - X-Frame-Options72 - X-Content-Type-Options73 - Referrer-Policy74- HSTS preload: check preload list inclusion for high-security sites7576### 4. URL Structure77- Clean URLs: descriptive, hyphenated, no query parameters for content78- Hierarchy: logical folder structure reflecting site architecture79- Redirects: no chains (max 1 hop), 301 for permanent moves80- URL length: flag >100 characters81- Trailing slashes: consistent usage8283### 5. Mobile Optimization84- Responsive design: viewport meta tag, responsive CSS85- Touch targets: minimum 48x48px with 8px spacing86- Font size: minimum 16px base87- No horizontal scroll88- Mobile-first indexing: Google indexes mobile version. **Mobile-first indexing is 100% complete as of July 5, 2024.** Google now crawls and indexes ALL websites exclusively with the mobile Googlebot user-agent.8990### 6. Core Web Vitals91- **LCP** (Largest Contentful Paint): target <2.5s92- **INP** (Interaction to Next Paint): target <200ms93 - INP replaced FID on March 12, 2024. FID was fully removed from all Chrome tools (CrUX API, PageSpeed Insights, Lighthouse) on September 9, 2024. Do NOT reference FID anywhere.94- **CLS** (Cumulative Layout Shift): target <0.195- Evaluation uses 75th percentile of real user data96- Use PageSpeed Insights API or CrUX data if MCP available9798### 7. Structured Data99- Detection: JSON-LD (preferred), Microdata, RDFa100- Validation against Google's supported types101- See seo-schema skill for full analysis102103### 8. JavaScript Rendering104- Check if content visible in initial HTML vs requires JS105- Identify client-side rendered (CSR) vs server-side rendered (SSR)106- Flag SPA frameworks (React, Vue, Angular) that may cause indexing issues107- Verify dynamic rendering setup if applicable108109#### JavaScript SEO — Canonical & Indexing Guidance (December 2025)110111Google updated its JavaScript SEO documentation in December 2025 with critical clarifications:1121131. **Canonical conflicts:** If a canonical tag in raw HTML differs from one injected by JavaScript, Google may use EITHER one. Ensure canonical tags are identical between server-rendered HTML and JS-rendered output.1142. **noindex with JavaScript:** If raw HTML contains `<meta name="robots" content="noindex">` but JavaScript removes it, Google MAY still honor the noindex from raw HTML. Serve correct robots directives in the initial HTML response.1153. **Non-200 status codes:** Google does NOT render JavaScript on pages returning non-200 HTTP status codes. Any content or meta tags injected via JS on error pages will be invisible to Googlebot.1164. **Structured data in JavaScript:** Product, Article, and other structured data injected via JS may face delayed processing. For time-sensitive structured data (especially e-commerce Product markup), include it in the initial server-rendered HTML.117118**Best practice:** Serve critical SEO elements (canonical, meta robots, structured data, title, meta description) in the initial server-rendered HTML rather than relying on JavaScript injection.119120### 9. IndexNow Protocol121- Check if site supports IndexNow for Bing, Yandex, Naver122- Supported by search engines other than Google123- Recommend implementation for faster indexing on non-Google engines124125## Output126127### Technical Score: XX/100128129### Category Breakdown130| Category | Status | Score |131|----------|--------|-------|132| Crawlability | ✅/⚠️/❌ | XX/100 |133| Indexability | ✅/⚠️/❌ | XX/100 |134| Security | ✅/⚠️/❌ | XX/100 |135| URL Structure | ✅/⚠️/❌ | XX/100 |136| Mobile | ✅/⚠️/❌ | XX/100 |137| Core Web Vitals | ✅/⚠️/❌ | XX/100 |138| Structured Data | ✅/⚠️/❌ | XX/100 |139| JS Rendering | ✅/⚠️/❌ | XX/100 |140| IndexNow | ✅/⚠️/❌ | XX/100 |141142### Critical Issues (fix immediately)143### High Priority (fix within 1 week)144### Medium Priority (fix within 1 month)145### Low Priority (backlog)146147## DataForSEO Integration (Optional)148149If DataForSEO MCP tools are available, use `on_page_instant_pages` for real page analysis (status codes, page timing, broken links, on-page checks), `on_page_lighthouse` for Lighthouse audits (performance, accessibility, SEO scores), and `domain_analytics_technologies_domain_technologies` for technology stack detection.