Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计提醒

30x-seo-geo-technical30X SEO GEO technical 搜索

Agent Skill

30x-seo-geo-technical 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

838

周安装

36

GitHub Stars

24

下载量

294
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:30x-seo-geo-technical(30X SEO GEO technical 搜索)
来源仓库:https://github.com/norahe0304-art/30x-seo
仓库路径:skills/30x-seo-geo-technical
安装命令:
npx skills add https://github.com/norahe0304-art/30x-seo --skill 30x-seo-geo-technical
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/norahe0304-art/30x-seo --skill 30x-seo-geo-technical

简介

适用于需要确保网站被主流 AI 搜索引擎正常抓取的场景。

  • 核心能力是分析 robots.txt 配置,30x-seo-geo-technical 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 检测 GPTBot、ClaudeBot 等关键爬虫的访问权限。
  • 通过命令行工具执行技术检查,输出详细的可访问性报告。
  • 安装前请确认是否具备网络访问和配置文件读取权限。

SKILL.md

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:

CrawlerOwnerPurposeRecommendation
GPTBotOpenAIChatGPT Search✅ Allow
OAI-SearchBotOpenAIOpenAI Search✅ Allow
ChatGPT-UserOpenAIChatGPT Browsing✅ Allow
ClaudeBotAnthropicClaude Search✅ Allow
PerplexityBotPerplexityPerplexity AI✅ Allow
CCBotCommon CrawlTraining data⚠️ Optional block
anthropic-aiAnthropicClaude Training⚠️ Optional block
BytespiderByteDanceTikTok 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:

StatusDescription
✅ Exists and completeHas title, description, key page list
⚠️ Exists but incompleteMissing key information
❌ Does not existNeeds creation

Fix Output (generate llms.txt):

# [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
StatusDescription
✅ SSRKey content in HTML
❌ CSRKey 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 <noscript> has content

Step 4: Platform-Specific Check

PlatformTechnical Requirements
Google AI OverviewsTraditional SEO basics + Schema
ChatGPTGPTBot access + llms.txt
PerplexityPerplexityBot access
Bing CopilotBing indexing + IndexNow

Output

1. GEO Technical Report

# 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

# 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

# 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 SkillUsage
seo-technicalTraditional technical SEO checks
seo-content-auditContent quality + AI citability analysis

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

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

36.72%
按下载量换算108

Claude

28.6%
按下载量换算84

Cursor

19.17%
按下载量换算56

Gemini CLI

9.79%
按下载量换算29

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills