SEO & GEO(生成式引擎優化)網站優化。分析關鍵字、產生結構化標記、針對 AI 搜尋引擎(ChatGPT、Perplexity、Gemini、Copilot、Claude)與傳統搜尋(Google、Bing)進行優化。當使用者想要提升搜尋能見度、搜尋優化、搜尋排名、AI 能見度、ChatGPT 排名、Google AI Overview、索引、JSON-LD、中繼標籤或關鍵字研究時使用。
SEO/GEO 優化技能
全面的 SEO 與 GEO(生成式引擎優化)網站優化。同時針對傳統搜尋引擎(Google、Bing)與 AI 搜尋引擎(ChatGPT、Perplexity、Gemini、Copilot、Claude)進行優化。
快速參考
GEO = 生成式引擎優化 - 優化內容以被 AI 搜尋引擎引用。
關鍵洞察: AI 搜尋引擎不排名頁面 - 它們引用來源。被引用就是新的「排名第一」。
工作流程
步驟 1:網站審查
取得目標網址並分析目前的 SEO/GEO 狀態。
基本 SEO 審查(免費):
python3 scripts/seo_audit.py "https://example.com"
用途: 快速技術 SEO 檢查(標題、meta、H1、robots、sitemap、載入時間)。無需 API。
檢查 Meta 標籤:
curl -sL "https://example.com" | grep -E "<title>|<meta name=\"description\"|<meta property=\"og:|application/ld\+json" | head -20
用途: 快速檢查任何網頁上的必要 meta 標籤與結構化標記。
檢查 robots.txt:
curl -s "https://example.com/robots.txt"
用途: 確認哪些機器人被允許/封鎖。對於確保 AI 搜尋引擎能爬取您的網站至關重要。
檢查 Sitemap:
curl -s "https://example.com/sitemap.xml" | head -50
用途: 確認 Sitemap 結構,確保所有重要頁面都包含在內,以便搜尋引擎發現。
確認 AI 機器人存取權限:
# 這些機器人應在 robots.txt 中被允許:
- Googlebot (Google)
- Bingbot (Bing/Copilot)
- PerplexityBot (Perplexity)
- ChatGPT-User (ChatGPT with browsing)
- ClaudeBot / anthropic-ai (Claude)
- GPTBot (OpenAI)
步驟 2:關鍵字研究
使用 WebSearch 研究目標關鍵字:
WebSearch: "{keyword} keyword difficulty site:ahrefs.com OR site:semrush.com"
WebSearch: "{keyword} search volume 2026"
WebSearch: "site:{competitor.com} {keyword}"
分析:
- 搜尋量與難度
- 競爭對手關鍵字策略
- 長尾關鍵字機會
- 國際關鍵字衝突(例如 "OPC" 在英文市場是工業自動化)
步驟 3:GEO 優化(AI 搜尋引擎)
應用 9 項普林斯頓 GEO 方法(參見 references/geo-research.md):
| 方法 | 能見度提升 | 如何應用 |
|---|---|---|
| 引用來源 | +40% | 加入權威引用與參考資料 |
| 加入統計數據 | +37% | 包含具體數字與數據點 |
| 加入引述 | +30% | 加入專家引述並標註來源 |
| 權威語氣 | +25% | 使用自信、專業的語言 |
| 易於理解 | +20% | 簡化複雜概念 |
| 專業術語 | +18% | 包含領域特定術語 |
| 獨特詞彙 | +15% | 增加詞彙多樣性 |
| 流暢度優化 | +15-30% | 改善可讀性與流暢度 |
| -10% | 避免 - 損害能見度 |
最佳組合: 流暢度 + 統計數據 = 最大提升
產生 FAQPage 結構化標記(+40% AI 能見度):
{
"@context": "https://schema.org",
"@type": "FAQPage",
"mainEntity": [{
"@type": "Question",
"name": "什麼是 [主題]?",
"acceptedAnswer": {
"@type": "Answer",
"text": "根據 [來源],[答案並包含統計數據]。"
}
}]
}
優化內容結構:
- 使用「答案優先」格式(頂端直接給出答案)
- 清晰的 H1 > H2 > H3 層級
- 項目符號與編號列表
- 比較數據使用表格
- 短段落(最多 2-3 句)
步驟 4:傳統 SEO 優化
Meta 標籤範本:
<title>{主要關鍵字} - {品牌} | {次要關鍵字}</title>
<meta name="description" content="{具吸引力的描述,包含關鍵字,150-160 字元}">
<meta name="keywords" content="{關鍵字1}, {關鍵字2}, {關鍵字3}">
<!-- Open Graph -->
<meta property="og:title" content="{標題}">
<meta property="og:description" content="{描述}">
<meta property="og:image" content="{圖片網址 1200x630}">
<meta property="og:url" content="{標準網址}">
<meta property="og:type" content="website">
<!-- Twitter Cards -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="{標題}">
<meta name="twitter:description" content="{描述}">
<meta name="twitter:image" content="{圖片網址}">
JSON-LD 結構化標記(參見 references/schema-templates.md):
- WebPage / Article 用於內容頁面
- FAQPage 用於常見問題區塊
- Product 用於產品頁面
- Organization 用於關於頁面
- SoftwareApplication 用於工具/應用程式
檢查內容:
- [ ] H1 包含主要關鍵字
- [ ] 圖片有描述性替代文字
- [ ] 內部連結到相關內容
- [ ] 外部連結使用
rel="noopener noreferrer" - [ ] 內容適合行動裝置
- [ ] 頁面載入時間 < 3 秒
步驟 5:驗證與監控
結構化標記驗證:
# 開啟 Google 豐富結果測試
open "https://search.google.com/test/rich-results?url={encoded_url}"
# 開啟 Schema.org 驗證器
open "https://validator.schema.org/?url={encoded_url}"
檢查索引狀態:
# Google(使用 Search Console API 或手動檢查)
open "https://www.google.com/search?q=site:{domain}"
# Bing
open "https://www.bing.com/search?q=site:{domain}"
產生報告:
## SEO/GEO 優化報告
### 目前狀態
- Meta 標籤:✅/❌
- 結構化標記:✅/❌
- AI 機器人存取:✅/❌
- 行動裝置友善:✅/❌
- 頁面速度:X 秒
### 建議
1. [優先級 1 行動]
2. [優先級 2 行動]
3. [優先級 3 行動]
### 已套用的 GEO 優化
- [ ] 加入 FAQPage 結構化標記
- [ ] 包含統計數據
- [ ] 加入引用
- [ ] 答案優先結構
平台特定優化
詳細排名因素請參見 references/platform-algorithms.md。
ChatGPT
- 專注於品牌域名權威(比第三方被引用率高 11%)
- 30 天內更新內容(引用次數多 3.2 倍)
- 建立反向連結(超過 35 萬個引用域名 = 平均 8.4 次引用)
- 內容風格符合 ChatGPT 的回應格式
Perplexity
- 在 robots.txt 中允許 PerplexityBot
- 使用 FAQ 結構化標記(較高引用率)
- 託管 PDF 文件(優先引用)
- 專注於語意相關性而非關鍵字
Google AI Overview (SGE)
- 優化 E-E-A-T(經驗、專業、權威、信任)
- 使用結構化資料(Schema 標記)
- 建立主題權威(內容集群 + 內部連結)
- 包含權威引用(能見度提升 132%)
Microsoft Copilot / Bing
- 確保 Bing 索引(引用必要條件)
- 優化 Microsoft 生態系(LinkedIn、GitHub 提及有幫助)
- 頁面速度 < 2 秒
- 清晰的實體定義
Claude AI
- 確保 Brave Search 索引(Claude 使用 Brave,非 Google)
- 高事實密度(偏好資料豐富的內容)
- 清晰的結構清晰度(易於提取)
技能相依性
此技能與以下技能搭配最佳:
- twitter 技能 - 搜尋 SEO 專家取得最新技巧
- reddit 技能 - 搜尋 r/SEO、r/bigseo 討論
- WebSearch - 關鍵字研究與競爭者分析
參考資料
- references/platform-algorithms.md - 各平台詳細排名因素
- references/geo-research.md - 普林斯頓 GEO 研究(9 種方法)
- references/schema-templates.md - JSON-LD 範本
- references/seo-checklist.md - 完整 SEO 審查清單
- references/tools-and-apis.md - 工具與 API 參考
- examples/opc-skills-case-study.md - 實際優化範例






