Topic Title
\nClear 2-3 sentence summary
\n{"instruction": "What is Generative Engine Optimization (GEO) and how does it differ from traditional SEO?", "input": "", "output": "# Generative Engine Optimization (GEO)\n\n**Definition**: GEO is the practice of optimizing content to appear in AI-generated responses from systems like ChatGPT, Google AI Overview, Perplexity, and Claude.\n\n## Key Differences from Traditional SEO\n\n| Aspect | Traditional SEO | GEO |\n|--------|----------------|-----|\n| **Target** | Search engine results pages (SERPs) | AI-generated answers |\n| **Metrics** | Rankings, CTR, impressions | Citation frequency, source attribution |\n| **Content Style** | Keyword-focused | Comprehensive, authoritative |\n| **Structure** | Meta tags, headings | Semantic clarity, factual density |\n\n## Core GEO Strategies\n\n1. **Establish Topical Authority**\n - Create comprehensive pillar pages\n - Interlink related content\n - Cover topics exhaustively\n\n2. **Optimize for Citation**\n - Use clear, quotable statements\n - Include data, statistics, and facts\n - Cite authoritative sources\n\n3. **Structured Data Implementation**\n - JSON-LD schema markup\n - FAQ schema\n - HowTo schema\n - Organization schema\n\n4. **Content Format**\n - Use definition patterns: \"X is...\"\n - Include step-by-step instructions\n - Provide comparison tables\n - Add concrete examples\n\n## Implementation in n8n\n\n```json\n{\n \"nodes\": [\n {\n \"name\": \"Analyze Content for GEO\",\n \"type\": \"n8n-nodes-base.code\",\n \"parameters\": {\n \"jsCode\": \"// Check GEO optimization score\\nconst content = $json.content;\\nconst score = {\\n hasDefinitions: /is a|refers to|means/i.test(content),\\n hasStats: /\\\\d+%|\\\\d+ percent/i.test(content),\\n hasSteps: /step \\\\d|first,|then,/i.test(content)\\n};\\nreturn { score };\"\n }\n }\n ]\n}\n```", "metadata": {"topic": "GEO", "type": "concept", "priority": "high"}} {"instruction": "How do I optimize content for Answer Engine Optimization (AEO) to appear in featured snippets?", "input": "", "output": "# Answer Engine Optimization (AEO) Guide\n\n**AEO** focuses on structuring content to directly answer user questions, targeting featured snippets and voice search results.\n\n## Featured Snippet Types & Optimization\n\n### 1. Paragraph Snippets (Most Common)\n- Target \"what is\", \"why\", \"how does\" queries\n- Provide 40-60 word direct answers\n- Place answer immediately after the H2\n\n**Example Structure**:\n```html\n
Answer Engine Optimization (AEO) is the process of optimizing content \nto provide direct answers to user queries, increasing visibility in \nfeatured snippets, voice search results, and AI-generated responses.
\n```\n\n### 2. List Snippets\n- Use numbered or bulleted lists\n- Include 4-8 items\n- Start each item with action verbs\n\n### 3. Table Snippets\n- Use comparison tables\n- Include clear headers\n- Limit to 3-4 columns\n\n## AEO Implementation Checklist\n\n- [ ] Identify question-based keywords\n- [ ] Structure content with clear Q&A format\n- [ ] Use schema markup (FAQPage, HowTo)\n- [ ] Optimize for voice search (conversational)\n- [ ] Include \"People Also Ask\" targets\n\n## n8n Workflow for AEO Analysis\n\n```json\n{\n \"name\": \"AEO Content Analyzer\",\n \"nodes\": [\n {\n \"name\": \"Fetch Content\",\n \"type\": \"n8n-nodes-base.httpRequest\",\n \"parameters\": {\n \"url\": \"={{ $json.pageUrl }}\"\n }\n },\n {\n \"name\": \"Check FAQ Schema\",\n \"type\": \"n8n-nodes-base.code\",\n \"parameters\": {\n \"jsCode\": \"const html = $json.body;\\nconst hasFAQSchema = html.includes('FAQPage');\\nreturn { hasFAQSchema };\"\n }\n }\n ]\n}\n```\n\n## Voice Search Optimization Tips\n\n1. Use natural, conversational language\n2. Target long-tail question queries\n3. Optimize for local intent (\"near me\")\n4. Provide concise, speakable answers (< 30 words)", "metadata": {"topic": "AEO", "type": "guide", "priority": "high"}} {"instruction": "Explain LLM SEO strategies for getting cited by AI chatbots like ChatGPT and Claude", "input": "", "output": "# LLM SEO: Optimizing for AI Chatbot Citations\n\n**LLM SEO** is the emerging practice of optimizing content so Large Language Models cite your website in their responses.\n\n## How LLMs Choose Sources\n\n1. **Training Data**: Content that was in training datasets\n2. **RAG Systems**: Real-time retrieval from indexed sources\n3. **Authority Signals**: Domain reputation, backlinks, mentions\n4. **Content Quality**: Accuracy, depth, recency\n\n## Core LLM SEO Strategies\n\n### 1. Establish Entity Authority\n- Build Wikipedia presence\n- Get mentioned in authoritative sources\n- Create comprehensive \"About\" pages\n- Use consistent NAP (Name, Address, Phone)\n\n### 2. Create Citation-Worthy Content\n\n**Best Practices**:\n- Include original research and data\n- Provide unique insights not available elsewhere\n- Use clear, quotable statements\n- Update content regularly\n\n**Example Citation-Worthy Format**:\n```\nAccording to [Your Brand] research, 73% of marketers now \nprioritize AI search optimization in their 2025 strategy.\n```\n\n### 3. Technical Optimization\n\n```json\n{\n \"@context\": \"https://schema.org\",\n \"@type\": \"Article\",\n \"author\": {\n \"@type\": \"Organization\",\n \"name\": \"Your Brand\",\n \"url\": \"https://yourdomain.com\"\n },\n \"datePublished\": \"2024-01-15\",\n \"dateModified\": \"2024-12-01\"\n}\n```\n\n### 4. Content Structure for LLM Parsing\n\n- Use clear hierarchical headings\n- Include TL;DR summaries at the top\n- Provide structured data (tables, lists)\n- Add glossary definitions\n\n## Measurement & Tracking\n\n| Metric | Tool | Target |\n|--------|------|--------|\n| Brand mentions in AI | Manual sampling | Track monthly |\n| Knowledge Panel presence | Google Search | Establish/maintain |\n| Authoritative backlinks | Ahrefs/Semrush | Increase 10%/quarter |\n\n## n8n Workflow: Monitor AI Citations\n\n```json\n{\n \"name\": \"AI Citation Monitor\",\n \"nodes\": [\n {\n \"name\": \"Query ChatGPT\",\n \"type\": \"n8n-nodes-base.openAi\",\n \"parameters\": {\n \"prompt\": \"Who are the leading experts in {{ $json.topic }}?\"\n }\n },\n {\n \"name\": \"Check for Brand Mention\",\n \"type\": \"n8n-nodes-base.if\",\n \"parameters\": {\n \"conditions\": {\n \"string\": [{\n \"value1\": \"={{ $json.response }}\",\n \"operation\": \"contains\",\n \"value2\": \"Your Brand\"\n }]\n }\n }\n }\n ]\n}\n```", "metadata": {"topic": "LLM_SEO", "type": "strategy", "priority": "high"}} {"instruction": "How do I create an automated SEO audit workflow in n8n?", "input": "", "output": "# Automated SEO Audit Workflow in n8n\n\nBuild a comprehensive SEO audit system that checks on-page, technical, and content factors.\n\n## Complete n8n Workflow\n\n```json\n{\n \"name\": \"Automated SEO Audit\",\n \"nodes\": [\n {\n \"name\": \"Start\",\n \"type\": \"n8n-nodes-base.manualTrigger\",\n \"position\": [250, 300]\n },\n {\n \"name\": \"Set URLs\",\n \"type\": \"n8n-nodes-base.set\",\n \"parameters\": {\n \"values\": {\n \"string\": [\n {\"name\": \"targetUrl\", \"value\": \"https://example.com\"}\n ]\n }\n },\n \"position\": [450, 300]\n },\n {\n \"name\": \"Fetch Page\",\n \"type\": \"n8n-nodes-base.httpRequest\",\n \"parameters\": {\n \"url\": \"={{ $json.targetUrl }}\",\n \"options\": {\"timeout\": 30000}\n },\n \"position\": [650, 300]\n },\n {\n \"name\": \"SEO Analysis\",\n \"type\": \"n8n-nodes-base.code\",\n \"parameters\": {\n \"jsCode\": \"const html = $json.body;\\nconst url = $json.targetUrl;\\n\\n// Extract SEO elements\\nconst titleMatch = html.match(/Clear 2-3 sentence summary
\nContent...
\n