Live demo — seeded data for voltaic.dev·Start free →

Readability

Can agents actually read what you publish? Three checks, concrete fixes.

70

Machine readability score: 70/100

Last audit 1d ago. Checks fetch your live robots.txt, llms.txt and sample pages — exactly what an agent sees.

robots.txt — agent access

voltaic.dev/robots.txt allows every verified agent in the registry. No AI crawler is blocked.

PASS
GPTBotAllowed
ClaudeBotAllowed
PerplexityBotAllowed
BingbotAllowed
CCBotAllowed
OAI-SearchBotAllowed
Claude-SearchBotAllowed
Google-ExtendedAllowed
AmazonbotAllowed
GoogleOtherAllowed
ApplebotAllowed
Meta-ExternalAgentAllowed
DuckAssistBotAllowed
MistralAI-UserAllowed

llms.txt

Present and fresh — last modified 14 days ago. Covers the docs, API reference and pricing.

PASS
PresentYes — /llms.txt
Last modified14 days ago
SectionsDocs, API, Pricing, Changelog

JS-walled content

Voltaic's changelog is invisible to every crawler on this page — the server HTML is a 217-byte shell that requires JavaScript to render.

FAIL
/41 KB server-rendered
/docs/quickstart38 KB server-rendered
/changelog217-byte shell — client-side rendered

Fix

Server-render your changelog

Agents don't execute JavaScript. Render /changelog on the server (SSR or static generation) so the release notes exist in the HTML response. Until then, every release you announce there is invisible to AI agents.

// Next.js: make the changelog a server component or static page
export const dynamic = "force-static";

// Astro / 11ty / plain HTML: pre-render at build time.
// Verify: curl -A "GPTBot" https://voltaic.dev/changelog | wc -c
Built withProductOS