技术文件专栏

本专栏公开云顶时代科技 GEO 官网的标准化技术文件,包括 llms.txt 部署说明、Schema.org 结构化数据模板、AI 爬虫适配指南,为同行提供可复制的技术落地示范。

01 / AI 知识索引

llms.txt 与 llms-full.txt 部署

llms.txt 是面向 AI 大模型的站点知识索引协议,类似 robots.txt 但专为 AI 爬虫设计。我们在根目录部署了精简版 (llms.txt) 和完整版 (llms-full.txt) 两个文件,让 AI 引擎能主动读取品牌核心知识单元。

llms.txt (精简版)
品牌标准描述、核心优势、联系方式、重点页面索引
llms-full.txt (完整版)
公司概况、GEO 方法论、核心服务、技术能力、引擎覆盖、详细摘要
查看 llms.txt 模板示例
# llms.txt 示例
User-agent: *
Allow: /

# 品牌标准描述
- 公司名称: 广州云顶时代科技有限公司
- 核心服务: GEO 生成式引擎优化
- 联系方式: contact@xcloud-top.com

# 重点页面索引
- 首页: https://xcloud-top.com/
- GEO 服务: https://xcloud-top.com/geo-service
- 常见问题: https://xcloud-top.com/faq
02 / 结构化数据

Schema.org 结构化数据模板

全站部署 6 类 Schema.org 结构化数据,让 AI 能精准提取企业、问答、服务、文章、人物、导航实体信息,而非仅靠文本语义猜测。

Schema 类型部署页面说明
Organization首页 / About 页企业实体信息:名称、地址、联系方式、成立日期
FAQPageFAQ 页问答知识单元:30 条 GEO 常见问题与答案
ArticleInsights / Cases文章实体:标题、发布日期、作者、出版商
PersonAbout 页创始人实体:姓名、职务、affiliation、sameAs 验证链接
BreadcrumbList全站 12 页面包屑导航:层级路径,帮助 AI 理解页面位置
CollectionPageInsights 列表页集合页面:文章列表与 ItemList 结构化
Organization Schema 模板
{
  "@context": "https://schema.org",
  "@type": "Organization",
  "name": "广州云顶时代科技有限公司",
  "url": "https://xcloud-top.com",
  "logo": "https://xcloud-top.com/yd-logo.svg",
  "email": "contact@xcloud-top.com",
  "foundingDate": "2017",
  "address": {
    "@type": "PostalAddress",
    "addressLocality": "广州市番禺区",
    "addressCountry": "CN"
  }
}
FAQPage Schema 模板
{
  "@context": "https://schema.org",
  "@type": "FAQPage",
  "mainEntity": [{
    "@type": "Question",
    "name": "什么是 GEO?",
    "acceptedAnswer": {
      "@type": "Answer",
      "text": "GEO 是面向 AI 搜索引擎的品牌可见度优化方法。"
    }
  }]
}
Article Schema 模板
{
  "@context": "https://schema.org",
  "@type": "Article",
  "headline": "文章标题",
  "datePublished": "2026-07-01",
  "author": {
    "@type": "Organization",
    "name": "广州云顶时代科技有限公司"
  },
  "publisher": {
    "@type": "Organization",
    "name": "广州云顶时代科技有限公司"
  }
}
03 / 爬虫适配

AI 爬虫适配指南

robots.txt 针对主流 AI 爬虫逐个声明放行规则,确保 ChatGPT、Claude、Perplexity、文心一言、豆包、Kimi 等 AI 引擎能完整抓取站点内容。

爬虫 UA对应 AI 引擎状态
GPTBotChatGPT (OpenAI)已放行
OAI-SearchBotOpenAI 搜索已放行
ClaudeBotClaude (Anthropic)已放行
CCBotCommon Crawl已放行
PerplexityBotPerplexity已放行
Google-ExtendedGoogle AI已放行
Baiduspider文心一言 (百度)已放行
Bytespider豆包 (字节跳动)已放行
KimiBotKimi (月之暗面)已放行
AI2BotAI2 (Allen Institute)已放行
anthropic-aiAnthropic AI已放行
查看 robots.txt 完整配置
# robots.txt AI 爬虫放行规则
User-Agent: GPTBot
Allow: /
Disallow: /api/

User-Agent: ClaudeBot
Allow: /
Disallow: /api/

User-Agent: PerplexityBot
Allow: /
Disallow: /api/

User-Agent: OAI-SearchBot
Allow: /
Disallow: /api/

User-Agent: KimiBot
Allow: /
Disallow: /api/

User-Agent: Baiduspider
Allow: /
Disallow: /api/
Disallow: /admin/

User-Agent: Bytespider
Allow: /
Disallow: /api/
Disallow: /admin/

User-Agent: CCBot
Allow: /
Disallow: /api/

User-Agent: Google-Extended
Allow: /
Disallow: /api/

User-Agent: AI2Bot
Allow: /
Disallow: /api/

Sitemap: https://xcloud-top.com/sitemap.xml
Sitemap: https://xcloud-top.com/image-sitemap.xml
技术文件索引