How-To

How to Improve AI Visibility

The practical playbook — steps ordered by impact. P0 items are critical blockers. Work down the list.

P0 CriticalP1 HighP2 MediumP3 Moderate
P0

Unblock AI crawlers in robots.txt

30 minutesImpact: Critical

Check your robots.txt for rules blocking GPTBot, Google-Extended, anthropic-ai, PerplexityBot, or similar AI crawler user agents. If any are blocked with Disallow: /, open access. This is the single most common issue and the one with the highest leverage — a blocked crawler can't learn what you offer at all.

# Remove or modify rules like these:
User-agent: GPTBot
Disallow: /

User-agent: Google-Extended
Disallow: /

# Replace with:
User-agent: GPTBot
Allow: /
P0

Add Product and Offer schema to all product pages

2–8 hours (developer)Impact: Critical for ecommerce

Product schema with Offer (price, currency, availability) gives AI systems explicit, machine-readable facts about what you sell. Without it, AI has to infer from page text — and often gets it wrong or doesn't cite you. This is the most common P0 finding on ecommerce sites.

<script type="application/ld+json">
{
  "@context": "https://schema.org",
  "@type": "Product",
  "name": "Product Name",
  "brand": { "@type": "Brand", "name": "Your Brand" },
  "sku": "SKU-001",
  "gtin13": "9780000000000",
  "offers": {
    "@type": "Offer",
    "price": "99.00",
    "priceCurrency": "USD",
    "availability": "https://schema.org/InStock"
  }
}
</script>
P1

Add Organization schema to your homepage

1 hourImpact: High

Organization schema tells AI systems who you are — your name, website, what you do, and how to categorise you. Include sameAs links to your LinkedIn, G2, Crunchbase, and other profiles to build entity consistency across sources.

{
  "@context": "https://schema.org",
  "@type": "Organization",
  "name": "Your Company",
  "url": "https://yoursite.com",
  "description": "What you do in one clear sentence",
  "sameAs": [
    "https://www.linkedin.com/company/yourcompany",
    "https://g2.com/products/yourproduct"
  ]
}
P1

Create and publish your llms.txt file

30 minutes (use our generator)Impact: High

An llms.txt file at yoursite.com/llms.txt gives AI engines a structured index of your most important pages, grouped by section. Use our free generator — it reads your sitemap and builds the file automatically.

Generate your llms.txt →
P1

Add FAQ schema to key pages

2–4 hoursImpact: High

FAQPage schema wraps the questions and answers on your page in machine-readable format. AI systems pull directly from FAQ schema when answering buyer queries. Identify the top 5–10 questions buyers ask about your product and add them with structured answers to your homepage, product pages, and pricing page.

{
  "@context": "https://schema.org",
  "@type": "FAQPage",
  "mainEntity": [{
    "@type": "Question",
    "name": "What does [product] do?",
    "acceptedAnswer": {
      "@type": "Answer",
      "text": "Specific, clear answer..."
    }
  }]
}
P2

Create comparison and use-case content

1–2 days (content)Impact: Medium

AI systems pull from pages that directly answer comparison and use-case queries. Create pages that address: '[Your product] vs [Competitor]', 'Best [category] for [use case]', and '[Your product] for [audience type]'. These are the queries buyers ask AI during the consideration phase — and where most sites have zero content.

P2

Check and fix GTIN/barcode coverage on products

1–4 hoursImpact: Medium — required for Google Merchant Center

GTIN (Global Trade Item Number) is required for Google Merchant Center eligibility and is a strong AI product-matching signal. For physical products, ensure every product page has a valid GTIN (UPC, EAN, or ISBN) in both the HTML and Product schema. Missing GTINs block ~74% of products from Merchant Center.

P2

Build citation presence on key platforms

Ongoing — 2–3 hours initial setupImpact: Medium — compounds over time

AI systems retrieve from sources they trust. Create and optimise your presence on the platforms most relevant to your category: G2 or Capterra (SaaS), TrustPilot or Reviews.io (ecommerce), Clutch (agencies), Product Hunt (new products), LinkedIn company page. Ensure your company description, category, and audience language is consistent across all of them.

P3

Add AggregateRating schema to pages with reviews

1–2 hoursImpact: Moderate

AggregateRating schema makes your review scores machine-readable — AI systems can reference them when discussing your product's trustworthiness. Add it to product pages, your homepage (if you have overall company reviews), and any page that displays star ratings.

Not sure which of these apply to your site?

Run the free AI visibility audit. It detects all of these issues automatically across up to 100 pages and tells you exactly which ones apply to your site, in priority order.

Get Your Personalised Findings →