> ## Documentation Index
> Fetch the complete documentation index at: https://docs.klove.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Serve lightweight AI-optimised pages to every AI crawler

> Agentic Pages are lightweight, machine-readable versions of your site served to AI crawlers at the edge — invisible to human visitors and search engines.

Agentic Pages give you one site with two versions. Your human visitors see your existing website, exactly as it is today. When an AI crawler or agent requests the same URL, Klove intercepts that request at the edge and serves a clean, structured, machine-readable page instead — built for how AI systems actually read and cite content.

<Tip>
  Agentic Pages are **99% lighter** than the typical JavaScript-heavy website. Most modern sites render hundreds of thousands of lines of framework boilerplate that AI crawlers can't parse or simply abandon. Agentic Pages strip all of that away and deliver only the structured content AI needs to cite you accurately.
</Tip>

## The problem Agentic Pages solve

Most modern websites are built for human browsers, not AI agents. Client-side rendered frameworks like React, Next.js, and Framer output thousands of lines of generated markup, inline transforms, and base64-encoded assets. AI crawlers don't execute JavaScript — they see an empty shell. Your products, pricing, and differentiators are simply not there to read or cite.

Klove's research finds that nearly **63% of ChatGPT agents abandon a page immediately** on landing, and **85% of the time an AI reads your page, it cites a competitor or a generic source** instead of you.

Agentic Pages fix both problems at the source.

## How it works

Klove runs as a lightweight Cloudflare Worker — approximately 200 lines, zero dependencies — deployed at the edge in front of your existing site. No changes to your codebase. No rebuilds. No risk to production.

When a request hits your domain, the worker checks the User-Agent against a database of 200+ known AI crawlers and agents (GPTBot, OAI-SearchBot, ClaudeBot, PerplexityBot, GoogleBot-Extended, and more). If it detects an AI visitor, it serves the corresponding Agentic Page. Human visitors pass through to your normal site untouched.

```html theme={null}
<!-- Example agentic page — what AI crawlers receive -->
<!DOCTYPE html>
<html lang="en">
<head>
  <title>Acme CRM — Close deals faster</title>
  <meta name="description" content="The CRM that helps sales teams track pipeline and close deals.">
</head>
<body>

  <h1>Acme CRM</h1>
  <p>The CRM built for fast-moving sales teams who want to close more deals, faster.</p>

  <h2>What is Acme CRM?</h2>
  <p>An AI-native CRM that unifies your contacts, pipeline, and conversations in one place.</p>

  <h2>How does Acme CRM help me close more deals?</h2>
  <p>Smart insights surface the deals most likely to win this quarter, so your team focuses on what moves.</p>

  <h2>Can Acme CRM automate follow-ups?</h2>
  <p>Yes. Sequences send the right message at the right time — no manual reminders needed.</p>

  <h2>Does it integrate with my existing tools?</h2>
  <p>Acme connects with Gmail, Slack, and 200+ apps, always kept in sync.</p>

  <h2>How much does Acme CRM cost?</h2>
  <p>Plans start at $29 per seat per month. A 14-day free trial is available.</p>

  <h2>How do I get started?</h2>
  <p>Start a free 14-day trial at acme.com/signup — no credit card required.</p>

  <a href="/signup">Start free trial</a>

</body>
</html>
```

Notice what's absent: no `<script>` tags, no CSS frameworks, no generated class names, no base64 images. Just clean, semantic HTML that AI parsers can read on the very first request.

## What agentic pages contain

Klove's AI-powered workflow generates each agentic page from your existing site content, enriched with the structured formats AI platforms prefer to cite:

<CardGroup cols={2}>
  <Card title="Direct answers" icon="bullseye">
    The core answer lands in the first 100 words. AI prefers sources that answer the question immediately.
  </Card>

  <Card title="FAQ blocks" icon="circle-question">
    Question-and-answer pairs structured around real buyer queries and "people also ask" patterns.
  </Card>

  <Card title="Structured pricing" icon="tag">
    Clearly labelled plan names, prices, and feature lists — the format AI uses when answering commercial queries.
  </Card>

  <Card title="External reviews" icon="star">
    Surfaced review data and third-party mentions that reinforce authority signals AI crawlers weight highly.
  </Card>

  <Card title="Clean HTML" icon="code">
    No scripts, no framework bloat. Semantic heading hierarchy that AI agents can follow.
  </Card>

  <Card title="JSON-LD schema" icon="database">
    FAQ and Product schema that AI parsers read instantly for structured data extraction.
  </Card>
</CardGroup>

## The side-by-side editor

Every agentic page has a side-by-side editor in the Klove dashboard. The left pane shows your current agentic page content; the right pane shows a live preview of what the AI crawler will receive. You can edit, regenerate with AI, or manually adjust any section before publishing.

Changes publish instantly at the edge — no deployment pipeline, no waiting for a build.

## A/B testing per platform

You can serve a **different agentic page version to different AI crawlers**. A page optimised for ChatGPT (which weighs direct answers and authoritative tone) can differ from the version served to Perplexity (which frequently cites structured comparison content and product tables). Configure per-platform variants in the Agentic Pages settings to maximise citation rate on each platform independently.

## Page limits by plan

| Plan           | Agentic Pages |
| -------------- | ------------- |
| **Essentials** | 3 pages       |
| **Pro**        | 20 pages      |
| **Enterprise** | Custom        |

Start with your highest-traffic pages and the pages most relevant to commercial prompts — pricing, product overview, and comparison pages consistently drive the most AI citations.

## Deployment

<Steps>
  <Step title="Connect your edge provider">
    Klove deploys via the Cloudflare API. Provide an API token with Workers permissions and Klove handles the rest automatically.
  </Step>

  <Step title="Select pages to optimise">
    Choose which URLs to create agentic versions for. Klove will crawl each page, render its content, and generate a draft agentic version using AI.
  </Step>

  <Step title="Review and publish">
    Open the side-by-side editor to review the generated content. Edit as needed, then publish. The edge worker goes live immediately.
  </Step>

  <Step title="Monitor AI crawler visits">
    The Agentic Pages dashboard shows every AI bot visit in real time — which crawler, which page, and when — so you know which pages to optimise next.
  </Step>
</Steps>

<Note>
  Serving a different page to AI crawlers is **not cloaking**. Cloaking means deceiving a search engine by hiding content to manipulate rankings. Agentic Pages present the same substance in a format AI systems can parse — no hidden content, no deception. Klove keeps human and AI experiences consistent in message and truth.
</Note>

<CardGroup cols={2}>
  <Card title="Prompt Monitoring" icon="magnifying-glass" href="/features/prompt-monitoring">
    Measure your citation lift after deploying agentic pages
  </Card>

  <Card title="Agent Flows" icon="bolt" href="/features/agent-flows">
    Auto-update agentic pages when monitoring detects a visibility drop
  </Card>
</CardGroup>
