Install AI References
Add AI reference tags to your website's head section to enable AI crawler discovery.
This is the most important setup step — it tells AI crawlers where to find your Geordy-generated files.
What Are AI References?
AI References are two small code blocks that go inside your website's <head> tag that tell AI crawlers where to find your Geordy-generated files:
- A link-rel block (HTML tags referencing each generated format)
- A JSON-LD manifest (structured dataset description)
Once added, Geordy automatically keeps them current as your site evolves.
Install via HTML Head
Open Install → Tags (HTML)
Copy the Link Tags
Paste into Your Website's <head>
Save and Publish
Example Link-Rel Block
Geordy AI References
<link rel="alternate" type="application/yaml" href="https://geo.example.com/config.yaml" />
<link rel="alternate" type="text/markdown" href="https://geo.example.com/docs.md" />
<link rel="llms-txt" href="https://geo.example.com/llms.txt" />
<link rel="alternate" type="application/ld+json" href="https://geo.example.com/schema.json" />
<link rel="alternate" type="application/rss+xml" href="https://geo.example.com/feed.rss" />
End Geordy AI References Verification
- View your site's source code and confirm the link-rel tags appear
- Visit one of the referenced URLs (e.g.
/llms.txt) — it should open successfully
For WordPress, Webflow, or Squarespace users, see Platform-Specific Guides.

Install via JSON-LD Manifest
Open Install → JSON-LD
Copy the Manifest Script
Paste into Your Website's <head>
Save and Publish
This manifest describes your entire dataset using @context and hasPart fields from Schema.org, giving AI systems a structured entry point.
Example JSON-LD Manifest
{
"@context": "https://schema.org",
"@type": "Dataset",
"name": "Example.com Structured Data",
"description": "AI-optimized structured content for example.com",
"url": "https://geo.example.com",
"hasPart": [
{
"@type": "DataDownload",
"encodingFormat": "application/yaml",
"contentUrl": "https://geo.example.com/config.yaml"
},
{
"@type": "DataDownload",
"encodingFormat": "text/plain",
"contentUrl": "https://geo.example.com/llms.txt"
}
]
}Verification
Use your browser's "View Source" and search for @type: Dataset to confirm the manifest is live. You can also use validation tools to verify the JSON-LD structure.
