Loading source
Pulling the file list, source metadata, and syntax-aware rendering for this listing.
Source from repo
Optimize websites for both traditional search engines (Google, Bing) and AI engines (ChatGPT, Perplexity, Gemini)
Files
Skill
Size
Entrypoint
Format
Open file
Syntax-highlighted preview of this file as included in the skill package.
SKILL.md
1---2name: seo-geo3description: |4SEO & GEO (Generative Engine Optimization) for websites.5Analyze keywords, generate schema markup, optimize for AI search engines6(ChatGPT, Perplexity, Gemini, Copilot, Claude) and traditional search (Google, Bing).7Use when user wants to improve search visibility.8triggers:9- "SEO"10- "GEO"11- "search optimization"12- "schema markup"13- "JSON-LD"14- "meta tags"15- "keyword research"16- "search ranking"17- "AI visibility"18- "ChatGPT ranking"19- "Perplexity"20- "Google AI Overview"21- "indexing"22---2324# SEO/GEO Optimization Skill2526Comprehensive SEO and GEO (Generative Engine Optimization) for websites. Optimize for both traditional search engines (Google, Bing) and AI search engines (ChatGPT, Perplexity, Gemini, Copilot, Claude).2728## Quick Reference2930**GEO = Generative Engine Optimization** - Optimizing content to be cited by AI search engines.3132**Key Insight:** AI search engines don't rank pages - they **cite sources**. Being cited is the new "ranking #1".3334## Workflow3536### Step 1: Website Audit3738Get the target URL and analyze current SEO/GEO status.3940**Basic SEO Audit (Free):**41```bash42python3 scripts/seo_audit.py "https://example.com"43```44**Use this for**: Quick technical SEO check (title, meta, H1, robots, sitemap, load time). No API needed.4546---4748**Check Meta Tags:**49```bash50curl -sL "https://example.com" | grep -E "<title>|<meta name=\"description\"|<meta property=\"og:|application/ld\+json" | head -2051```5253**Use this for**: Quick check of essential meta tags and schema markup on any webpage.5455---5657**Check robots.txt:**58```bash59curl -s "https://example.com/robots.txt"60```6162**Use this for**: Verify which bots are allowed/blocked. Critical for ensuring AI search engines can crawl your site.6364---6566**Check sitemap:**67```bash68curl -s "https://example.com/sitemap.xml" | head -5069```7071**Use this for**: Verify sitemap structure and ensure all important pages are included for search engine discovery.7273**Verify AI Bot Access:**74```75# These bots should be allowed in robots.txt:76- Googlebot (Google)77- Bingbot (Bing/Copilot)78- PerplexityBot (Perplexity)79- ChatGPT-User (ChatGPT with browsing)80- ClaudeBot / anthropic-ai (Claude)81- GPTBot (OpenAI)82```8384### Step 2: Keyword Research8586Use **WebSearch** to research target keywords:8788```89WebSearch: "{keyword} keyword difficulty site:ahrefs.com OR site:semrush.com"90WebSearch: "{keyword} search volume 2026"91WebSearch: "site:{competitor.com} {keyword}"92```9394**Analyze:**95- Search volume and difficulty96- Competitor keyword strategies97- Long-tail keyword opportunities98- International keyword conflicts (e.g., "OPC" = industrial automation in English markets)99100### Step 3: GEO Optimization (AI Search Engines)101102Apply the **9 Princeton GEO Methods** (see [references/geo-research.md](./references/geo-research.md)):103104| Method | Visibility Boost | How to Apply |105|--------|-----------------|--------------|106| **Cite Sources** | +40% | Add authoritative citations and references |107| **Statistics Addition** | +37% | Include specific numbers and data points |108| **Quotation Addition** | +30% | Add expert quotes with attribution |109| **Authoritative Tone** | +25% | Use confident, expert language |110| **Easy-to-understand** | +20% | Simplify complex concepts |111| **Technical Terms** | +18% | Include domain-specific terminology |112| **Unique Words** | +15% | Increase vocabulary diversity |113| **Fluency Optimization** | +15-30% | Improve readability and flow |114| ~~Keyword Stuffing~~ | **-10%** | **AVOID - hurts visibility** |115116**Best Combination:** Fluency + Statistics = Maximum boost117118**Generate FAQPage Schema** (+40% AI visibility):119```json120{121"@context": "https://schema.org",122"@type": "FAQPage",123"mainEntity": [{124"@type": "Question",125"name": "What is [topic]?",126"acceptedAnswer": {127"@type": "Answer",128"text": "According to [source], [answer with statistics]."129}130}]131}132```133134**Optimize Content Structure:**135- Use "answer-first" format (direct answer at top)136- Clear H1 > H2 > H3 hierarchy137- Bullet points and numbered lists138- Tables for comparison data139- Short paragraphs (2-3 sentences max)140141### Step 4: Traditional SEO Optimization142143**Meta Tags Template:**144```html145<title>{Primary Keyword} - {Brand} | {Secondary Keyword}</title>146<meta name="description" content="{Compelling description with keyword, 150-160 chars}">147<meta name="keywords" content="{keyword1}, {keyword2}, {keyword3}">148149<!-- Open Graph -->150<meta property="og:title" content="{Title}">151<meta property="og:description" content="{Description}">152<meta property="og:image" content="{Image URL 1200x630}">153<meta property="og:url" content="{Canonical URL}">154<meta property="og:type" content="website">155156<!-- Twitter Cards -->157<meta name="twitter:card" content="summary_large_image">158<meta name="twitter:title" content="{Title}">159<meta name="twitter:description" content="{Description}">160<meta name="twitter:image" content="{Image URL}">161```162163**JSON-LD Schema** (see [references/schema-templates.md](./references/schema-templates.md)):164- WebPage / Article for content pages165- FAQPage for FAQ sections166- Product for product pages167- Organization for about pages168- SoftwareApplication for tools/apps169170**Check Content:**171- [ ] H1 contains primary keyword172- [ ] Images have descriptive alt text173- [ ] Internal links to related content174- [ ] External links have `rel="noopener noreferrer"`175- [ ] Content is mobile-friendly176- [ ] Page loads in < 3 seconds177178### Step 5: Validate & Monitor179180**Schema Validation:**181```bash182# Open Google Rich Results Test183open "https://search.google.com/test/rich-results?url={encoded_url}"184185# Open Schema.org Validator186open "https://validator.schema.org/?url={encoded_url}"187```188189**Check Indexing Status:**190```bash191# Google (use Search Console API or manual check)192open "https://www.google.com/search?q=site:{domain}"193194# Bing195open "https://www.bing.com/search?q=site:{domain}"196```197198**Generate Report:**199```markdown200## SEO/GEO Optimization Report201202### Current Status203- Meta Tags: ✅/❌204- Schema Markup: ✅/❌205- AI Bot Access: ✅/❌206- Mobile Friendly: ✅/❌207- Page Speed: X seconds208209### Recommendations2101. [Priority 1 action]2112. [Priority 2 action]2123. [Priority 3 action]213214### GEO Optimizations Applied215- [ ] FAQPage schema added216- [ ] Statistics included217- [ ] Citations added218- [ ] Answer-first structure219```220221## Platform-Specific Optimization222223See [references/platform-algorithms.md](./references/platform-algorithms.md) for detailed ranking factors.224225### ChatGPT226- Focus on **branded domain authority** (cited 11% more than third-party)227- Update content within **30 days** (3.2x more citations)228- Build **backlinks** (>350K referring domains = 8.4 avg citations)229- Match content style to ChatGPT's response format230231### Perplexity232- Allow **PerplexityBot** in robots.txt233- Use **FAQ Schema** (higher citation rate)234- Host **PDF documents** (prioritized for citation)235- Focus on **semantic relevance** over keywords236237### Google AI Overview (SGE)238- Optimize for **E-E-A-T** (Experience, Expertise, Authority, Trust)239- Use **structured data** (Schema markup)240- Build **topical authority** (content clusters + internal linking)241- Include **authoritative citations** (+132% visibility)242243### Microsoft Copilot / Bing244- Ensure **Bing indexing** (required for citation)245- Optimize for **Microsoft ecosystem** (LinkedIn, GitHub mentions help)246- Page speed **< 2 seconds**247- Clear **entity definitions**248249### Claude AI250- Ensure **Brave Search indexing** (Claude uses Brave, not Google)251- High **factual density** (data-rich content preferred)252- Clear **structural clarity** (easy to extract)253254## Skill Dependencies255256This skill works best with:257- **twitter skill** - Search SEO experts for latest tips258- **reddit skill** - Search r/SEO, r/bigseo for discussions259- **WebSearch** - Keyword research and competitor analysis260261## References262263- [references/platform-algorithms.md](./references/platform-algorithms.md) - Detailed ranking factors for each platform264- [references/geo-research.md](./references/geo-research.md) - Princeton GEO research (9 methods)265- [references/schema-templates.md](./references/schema-templates.md) - JSON-LD templates266- [references/seo-checklist.md](./references/seo-checklist.md) - Complete SEO audit checklist267- [references/tools-and-apis.md](./references/tools-and-apis.md) - Tools and API reference268- [examples/opc-skills-case-study.md](./examples/opc-skills-case-study.md) - Real-world optimization example269