<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Francis Chelladurai</title>
    <description>The latest articles on DEV Community by Francis Chelladurai (@francisblyxoapp).</description>
    <link>https://dev.to/francisblyxoapp</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3964549%2F2188cdb4-5679-4967-92dc-cb27a75f8725.png</url>
      <title>DEV Community: Francis Chelladurai</title>
      <link>https://dev.to/francisblyxoapp</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/francisblyxoapp"/>
    <language>en</language>
    <item>
      <title>What is AEO (Answer Engine Optimisation) and Why Should Developers Care?</title>
      <dc:creator>Francis Chelladurai</dc:creator>
      <pubDate>Tue, 02 Jun 2026 12:14:29 +0000</pubDate>
      <link>https://dev.to/francisblyxoapp/what-is-aeo-answer-engine-optimisation-and-why-should-developers-care-o29</link>
      <guid>https://dev.to/francisblyxoapp/what-is-aeo-answer-engine-optimisation-and-why-should-developers-care-o29</guid>
      <description>&lt;p&gt;I asked ChatGPT "What's the best accessibility testing tool?" last week. It cited three products. Mine wasn't one of them. My site ranks on page 1 of Google for that exact query.&lt;/p&gt;

&lt;p&gt;That's the problem. Google rankings don't guarantee AI citations. ChatGPT, Perplexity, and Google AI Overviews decide what to cite using different signals than traditional search. This shift has created a new discipline: &lt;strong&gt;Answer Engine Optimisation (AEO)&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;AEO is the practice of structuring web content so that AI-powered search engines can extract, understand, and cite it.&lt;/p&gt;

&lt;h2&gt;
  
  
  How answer engines differ from search engines
&lt;/h2&gt;

&lt;p&gt;Search engines reward &lt;em&gt;relevance&lt;/em&gt;. Answer engines reward &lt;em&gt;extractability&lt;/em&gt;.&lt;/p&gt;

&lt;p&gt;An answer engine ingests your content, extracts factual claims, evaluates authority via structured metadata and external corroboration, synthesises an answer from multiple sources, and cites only the pages that directly contributed. If your content isn't structured for extraction, it gets skipped — regardless of your Google ranking.&lt;/p&gt;

&lt;h2&gt;
  
  
  What AI systems actually look for
&lt;/h2&gt;

&lt;p&gt;Here's what matters for AEO, broken into three categories:&lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Category&lt;/th&gt;
&lt;th&gt;Key Signals&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Structural&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;JSON-LD schema (Article, Product, FAQPage), meta descriptions under 160 chars, clean heading hierarchy, &lt;a href="https://llmstxt.org/" rel="noopener noreferrer"&gt;llms.txt&lt;/a&gt; file, AI crawler permissions in robots.txt, &lt;code&gt;datePublished&lt;/code&gt;/&lt;code&gt;dateModified&lt;/code&gt; freshness signals&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Content&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Q&amp;amp;A headings with concise answers, definition sentences ("X is..."), lists and tables, specific numbers over vague marketing copy, outbound links to authoritative sources (&lt;a href="https://www.w3.org/TR/WCAG22/" rel="noopener noreferrer"&gt;W3C&lt;/a&gt;, &lt;a href="https://platform.openai.com/docs/gptbot" rel="noopener noreferrer"&gt;OpenAI GPTBot docs&lt;/a&gt;), author attribution&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Answerability&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Self-contained answers extractable without context, one clear topic per page, claims backed by visible evidence&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;h2&gt;
  
  
  Before and after
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Low AEO score:&lt;/strong&gt;&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;We offer flexible pricing plans designed to scale with your business. Contact us to learn more.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;&lt;strong&gt;High AEO score:&lt;/strong&gt;&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;Our Professional plan costs $99/month and includes 100 pages per scan, 100 AI tokens, and API access. Annual billing saves 20%. A free Starter plan supports 10 pages per scan with no time limit.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;The second version has specific numbers, answers "how much does it cost?" directly, and stands alone — an AI can extract and cite it without surrounding context.&lt;/p&gt;

&lt;h2&gt;
  
  
  Five mistakes developers make
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;1. Client-side only rendering.&lt;/strong&gt; AI crawlers fetch HTML and don't always execute JavaScript. Use SSR or SSG for content pages. In Next.js, keep content in server components.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;2. Content hidden in tabs/accordions.&lt;/strong&gt; Collapsed UI content may not get indexed. Render critical content (FAQs, pricing) as visible HTML.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;3. Missing JSON-LD.&lt;/strong&gt; No structured data means AI systems have to guess what your page is about. Add Article, Product, or FAQPage schema and validate with &lt;a href="https://search.google.com/test/rich-results" rel="noopener noreferrer"&gt;Google's Rich Results Test&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;4. No llms.txt.&lt;/strong&gt; This &lt;a href="https://llmstxt.org/" rel="noopener noreferrer"&gt;newer standard&lt;/a&gt; gives AI crawlers a structured summary of your site. Most sites don't have one — add it in 10 minutes:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight markdown"&gt;&lt;code&gt;&lt;span class="gh"&gt;# Your Product&lt;/span&gt;
&lt;span class="gt"&gt;&amp;gt; One-line description.&lt;/span&gt;

&lt;span class="gu"&gt;## Key Pages&lt;/span&gt;
&lt;span class="p"&gt;-&lt;/span&gt; &lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="nv"&gt;Home&lt;/span&gt;&lt;span class="p"&gt;](&lt;/span&gt;&lt;span class="sx"&gt;https://example.com&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;: Overview
&lt;span class="p"&gt;-&lt;/span&gt; &lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="nv"&gt;Pricing&lt;/span&gt;&lt;span class="p"&gt;](&lt;/span&gt;&lt;span class="sx"&gt;https://example.com/pricing&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;: Plans and pricing
&lt;span class="p"&gt;-&lt;/span&gt; &lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="nv"&gt;Docs&lt;/span&gt;&lt;span class="p"&gt;](&lt;/span&gt;&lt;span class="sx"&gt;https://example.com/docs&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;: Documentation
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;5. AI crawlers blocked in robots.txt.&lt;/strong&gt; Explicitly allow them:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight robot_framework"&gt;&lt;code&gt;User-agent: GPTBot&lt;span class="w"&gt;
&lt;/span&gt;&lt;span class="err"&gt;Allow:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="err"&gt;/&lt;/span&gt;&lt;span class="w"&gt;

&lt;/span&gt;&lt;span class="err"&gt;User-agent:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="err"&gt;Claude-Web&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;span class="err"&gt;Allow:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="err"&gt;/&lt;/span&gt;&lt;span class="w"&gt;

&lt;/span&gt;&lt;span class="err"&gt;User-agent:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="err"&gt;PerplexityBot&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;span class="err"&gt;Allow:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="err"&gt;/&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  How to test your AEO right now
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;Pick a question your page should answer&lt;/li&gt;
&lt;li&gt;Ask ChatGPT or Perplexity that exact question&lt;/li&gt;
&lt;li&gt;Check if your site is cited&lt;/li&gt;
&lt;li&gt;If not, compare your page to the cited sources — they'll almost always have structured data, specific numbers, and self-contained answers that yours is missing&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Tools like &lt;a href="https://blyxo.app/features/ai-discoverability" rel="noopener noreferrer"&gt;Blyxo&lt;/a&gt; can automate this across your whole site, but the manual test above takes 30 seconds and is usually eye-opening.&lt;/p&gt;

&lt;h2&gt;
  
  
  TL;DR
&lt;/h2&gt;

&lt;p&gt;SEO optimises for &lt;em&gt;ranking&lt;/em&gt;. AEO optimises for &lt;em&gt;citation&lt;/em&gt;. You need both. Start with these five actions:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Add JSON-LD to every page&lt;/li&gt;
&lt;li&gt;Create &lt;code&gt;/llms.txt&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;Allow AI crawlers in robots.txt&lt;/li&gt;
&lt;li&gt;Add FAQ sections with self-contained answers&lt;/li&gt;
&lt;li&gt;Replace vague copy with specific facts&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Have you checked whether ChatGPT cites your site? Try it and let me know what you find in the comments.&lt;/p&gt;

</description>
      <category>ai</category>
      <category>seo</category>
      <category>webdev</category>
      <category>a11y</category>
    </item>
  </channel>
</rss>
