llms-full.txt.liquid
The llms-full.txt.liquid template renders the llms-full.txt file, which is hosted at the /llms-full.txt URL.
/llms-full.txt is an agent-discovery file and an alternate URL for /agents.md, which is the canonical agent-discovery document. By default, /llms-full.txt mirrors the content of /agents.md, so agents and crawlers that request it still find a usable, agent-facing description of the store. As a result, this template isn't included in any themes by default.
The llms-full.txt file is served at the bare primary domain, without a locale or Shopify Markets subfolder prefix. It has no localized counterpart.
The llms-full.txt file is served at the bare primary domain, without a locale or Shopify Markets subfolder prefix. It has no localized counterpart.
Anchor to When to use this templateWhen to use this template
In most cases you don't need a separate llms-full.txt.liquid template. If you want to customize the agent-discovery content for every URL at once, then add an agents.md.liquid template instead — /llms-full.txt falls back to it automatically.
Add an llms-full.txt.liquid template only when you want /llms-full.txt to diverge from /agents.md. The template lookup order for /llms-full.txt is:
llms-full.txt.liquid(if present)agents.md.liquid(if present)- The Shopify-generated default
So a dedicated llms-full.txt.liquid takes precedence for /llms-full.txt only, while /agents.md and /llms.txt are unaffected.
Anchor to LocationLocation
The llms-full.txt.liquid template is located in the templates directory of the theme:
If your theme doesn't already contain the llms-full.txt.liquid template, then you can add it with the following steps:
Desktop
-
From your Shopify admin, go to Online Store > Themes.
-
Find the theme that you want to edit, and then click ... > Edit code.
Mobile
-
From the Shopify app, tap Store.
-
In the Sales channels section, tap Online Store.
-
Tap Manage all themes.
-
Find the theme that you want to edit, and then tap ... > Edit code.
-
From your Shopify admin, go to Online Store > Themes.
-
Find the theme that you want to edit, and then click ... > Edit code.
- In the left sidebar, locate the Templates folder.
- Right-click on the Templates folder.
- Click New File from the context menu.
- Name the file
llms-full.txt.liquid. - Press Enter to create the file.
Anchor to ContentContent
This template can't be a JSON template. It must be llms-full.txt.liquid.
The template accepts standard text or Markdown and Liquid. Like agents.md.liquid, it has access to the agents object for auto-populated UCP and agent-interaction metadata, alongside the standard global Liquid objects. For the full list of agents properties, refer to agents.md.liquid.
For example:
templates/llms-full.txt.liquid
Anchor to UsageUsage
To customize the agent-discovery content for /agents.md, /llms.txt, and /llms-full.txt together, edit agents.md.liquid. Use llms-full.txt.liquid only when /llms-full.txt needs content that differs from /agents.md.