dima-support/silverstripe-llms-txt

Generate llms.txt with important page URLs for LLMs.

Installs: 142

Dependents: 0

Suggesters: 0

Security: 0

Stars: 1

Watchers: 0

Forks: 0

Open Issues: 1

Type:silverstripe-vendormodule

pkg:composer/dima-support/silverstripe-llms-txt

1.4 2026-02-09 12:55 UTC

This package is auto-updated.

Last update: 2026-02-09 12:57:06 UTC


README

Generate an llms.txt file in your project’s public webroot that lists pages from the wilr sitemap. This file can be consumed by external systems (e.g. LLM indexers) to discover public-facing content on your site.

What it does

  • Takes the urls from the wilr sitemaps extension and places them in a generated llms.txt file inside /public folder
  • Writes one absolute URL per line to public/llms.txt (or your configured web root).
  • Provides a build task you can run via sake or schedule via cron.

Requirements

  • Silverstripe 6.0+
  • PHP version compatible with your Silverstripe version
  • A project using the public webroot structure (default on SS6+). If your webroot differs, configure the path (see Configuration below).

Installation

Install via Composer:

composer require dima-support/silverstripe-llms-txt

After installation, rebuild your project:

# Rebuild database, regenerate config, and clear caches
vendor/bin/sake dev/build flush=all

# (Optional but helpful) refresh autoloaders
composer dump-autoload

If you deploy with an immutable filesystem (e.g., on Platform-as-a-Service), ensure your instance can write to the public webroot or use a writable alternative path (see Configuration).

Usage

Run the provided build task to generate/update the file:

vendor/bin/sake dev/tasks/generate-llms-txt

This will:

  • Query all SiteTree records that are Published and searchable
  • Build a list of canonical absolute URLs
  • Write them to <public>/llms.txt

You can re-run the task anytime—it's idempotent.

Scheduling (cron)

Generate llms.txt on a schedule (e.g., every hour):

# command
0 * * * * cd /path/to/project && /usr/bin/env php vendor/bin/sake dev/tasks/generate-llms-txt > /dev/null 2>&1

Adjust frequency to suit your publishing cadence.

Configuration

By default, the task writes to the detected public webroot (typically public/llms.txt). You can override the output path and other options in your YAML config:

# app/_config/llms-txt.yml
Task\LLMsTxt\GenerateLLMsTxtTask:
  output_path: 'public/llms.txt'   # Relative to project root, or absolute path
  # base_url: 'https://example.com' # Force a base URL if not auto-detected
  # include_drafts: false           # Safety net, should remain false
  # additional_filters: []          # Add extra ORM filters if needed

If your project uses a non-standard webroot, be sure output_path points to the actual public document root served by your web server.

Output

  • Location: <public>/llms.txt
  • Format: One URL per line (LF line endings)
  • Example:
https://example.com/
https://example.com/about-us/
https://example.com/blog/
https://example.com/blog/how-we-work/