Skip to main content
Deno 2 is finally here 🎉️
Learn more

lume_plugin_llms

A Lume plugin that automatically generates a llms.txt file — a proposed standard to help LLMs discover and understand your site’s content (llmstxt.org).

📦 Usage

Import and use in your Lume config:

import lume from "lume/mod.ts";
import llms from "https://deno.land/x/lume_plugin_llms/mod.ts";

const site = lume();
site.use(llms());

export default site;