Readability
Can agents actually read what you publish? Three checks, concrete fixes.
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.
llms.txt
Present and fresh — last modified 14 days ago. Covers the docs, API reference and pricing.
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.
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