[Feature Request]: page-level AI manifest endpoint for crawled pages #2115
aagedik
started this conversation in
Feature requests
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
What needs to be done?
Add optional support for discovering and parsing a page-level AI manifest when available.
For example, if a page exists at:
https://example.com/blog/my-post
the crawler could optionally check for:
https://example.com/blog/my-post.ai.json
If present, the manifest could be parsed alongside the HTML and exposed as an optional structured artifact.
The specification is experimental and open for feedback:
https://aigeoradar.com/specifications/aipm
What problem does this solve?
Current AI crawlers primarily rely on HTML parsing, Schema.org, metadata extraction and heuristic processing.
A dedicated page-level manifest could provide:
This may reduce repeated extraction work, simplify retrieval pipelines and provide a deterministic metadata source when publishers choose to expose one.
The feature would remain completely optional and would not affect existing crawling behaviour.
Target users/beneficiaries
Current alternatives/workarounds
Today most systems combine information from:
These are valuable, but none provide a dedicated machine-readable page manifest designed specifically for AI systems.
The proposed manifest is intended to complement—not replace—existing standards.
Proposed approach
The crawler could expose an optional flag such as:
discover_ai_manifest=True
When enabled:
<page>.ai.jsonexists.This keeps the feature lightweight, backwards compatible and entirely optional.
Example implementation:
page.html
page.markdown
page.metadata
page.ai_manifest
All reactions