LLM content visibility tags

New <llms-only> and <llms-ignore> tags let you provide additional context for AI assistants while keeping your documentation site (for human readers) clean and focused.

Use <llms-only> to show content exclusively to AI assistants via LLM endpoints (like /llms.txt) while hiding it from your documentation site:

docs/getting-started.mdx
1<llms-only>
2 This technical context is only visible to AI assistants via LLM endpoints.
3</llms-only>

Use <llms-ignore> to show content only on your documentation site while excluding it from LLM endpoints:

docs/getting-started.mdx
1<llms-ignore>
2 <Callout intent="info">
3 This callout appears on your documentation site but not in LLM endpoints.
4 </Callout>
5</llms-ignore>

Learn more about controlling content visibility for humans and agents.