Make your site discoverable by ChatGPT, Claude, Perplexity and every modern AI assistant. Generates a valid llms.txt file following the official spec.
llms.txt live on the right → copy or download → upload to your site root.
llms.txt is a proposed standard introduced by Jeremy Howard and Answer.AI for making a website's content efficiently discoverable by large language models. It is a single markdown file placed at the root of your site — e.g., https://yoursite.com/llms.txt — that gives AI assistants a curated index of your most important pages.
AI search is now a meaningful share of all web queries. ChatGPT, Claude, Perplexity, and Google's AI Overviews answer billions of questions monthly by browsing the web. They cite sources that present clean, structured, well-organized content. A single llms.txt file dramatically increases the chance your site gets cited as a source.
/llms.txtpublic/ or static/curl https://yoursite.com/llms.txtllms-full.txt with the full body content inlinedThis tool runs on top of the @mystoq/seo-toolkit npm package. Same engine, programmatic API:
// npm install @mystoq/seo-toolkit import { generateLlmsTxt } from '@mystoq/seo-toolkit'; const llms = generateLlmsTxt({ title: 'Your Site', summary: 'One-line description.', sections: [...] });