Spent an afternoon making my site more AI friendly. The next day AI traffic went 12x
I did a super detailed audit of our new landing page to see how AI agent ready it was. Scored 9/100 (it's two weeks old website so no feelings hurt).
So I spent an afternoon fixing all the issues on the audit report. The next day we got this spike in AI traffic and it continued for the days after.
I'm still monitoring whether these agent visits can bring us actual human users. But seeing the chart move that fast off a few hours of work is really promising so I wanted to share out checklist.
Here's exactly what I fixed, in order:
- AI Accessibility
- Publish a
robots.txtthat explicitly allowlists major AI bots (GPTBot, ChatGPT-User, ClaudeBot, PerplexityBot, Google-Extended, CCBot) - Add a
Content-Signaldirective and a sitemap reference insiderobots.txt - Serve a
sitemap.xmlwithlastmodon every URL - Publish
llms.txt(short) andllms-full.txt(comprehensive), per llmstxt.org - Add an
AGENTS.mdto guide coding agents through your product - Render pages server-side, not as a client-only SPA (SPAs return blank HTML; agents read HTML, not JavaScript)
- Publish a
- Brand Identity
- Embed sitewide JSON-LD
Organization+WebSiteschema (name, url, logo, description) - Match the brand string exactly across
<title>,og:title, and Organizationname(inconsistencies split your brand authority across duplicates) - Ship full Open Graph + Twitter Card metadata
- Embed sitewide JSON-LD
- Content Readability
- Write real semantic HTML sections with proper headings and body text (agents can only quote what they can parse)
- Load web fonts with
display: swap
- Quotability
- Embed
FAQPageJSON-LD wherever you have Q&A content - Chunk content into structured blocks (easier for agents to lift quotable snippets)
- Embed
- Platform Fit
- Combine your AI bot allowlist, Content-Signal,
llms.txt, and FAQ schema to cover per-platform signals
- Combine your AI bot allowlist, Content-Signal,
- Site Hygiene
- Set
<link rel="canonical">on every page - Include meta description, keywords, and authors
- Ship a full favicon set (favicon.ico, apple-icon, 192px, 512px)
- Configure
robotsdirectives (index, follow, max-image-preview: large)
- Set