diff --git a/packages/website/docs/api/02-css/01-create.md b/packages/website/docs/api/02-css/01-create.md
index 777bf4a2..6d1a7b07 100644
--- a/packages/website/docs/api/02-css/01-create.md
+++ b/packages/website/docs/api/02-css/01-create.md
@@ -4,7 +4,7 @@
:::warning
-On web the style compiler and static types do not yet enforce constraints on the properties and values that can be used (e.g., various short-form properties are disallowed). This is a work in progress that depends on improvements to StyleX.
+On web the style compiler and static types do not yet enforce constraints on the properties and values that can be used (e.g., various short-form properties are disallowed). This is a work in progress.
:::
diff --git a/packages/website/docs/learn/01-installation.md b/packages/website/docs/learn/01-installation.md
index 2c1c01bd..042c1370 100644
--- a/packages/website/docs/learn/01-installation.md
+++ b/packages/website/docs/learn/01-installation.md
@@ -29,3 +29,15 @@ For native support, please make sure the following peer dependencies are install
```
npm install react react-native
```
+
+## How to use AI to code with React Strict DOM
+
+When using AI assistants like Claude or ChatGPT to help write React Strict DOM code, provide our **LLM guide** as context for more accurate results.
+
+**How to use:**
+
+1. Copy the contents of the llm.txt file.
+2. Provide it as context in your conversation with the AI assistant.
+3. Then ask your coding questions.
+
+This guide contains condensed, AI-optimized documentation covering React Strict DOM's syntax, styling system, common patterns, and key differences from React DOM. Providing this context helps AI assistants generate code using the React Strict DOM APIs and avoids common mistakes.
diff --git a/packages/website/docusaurus.config.js b/packages/website/docusaurus.config.js
index 7d5b6a12..1390eceb 100644
--- a/packages/website/docusaurus.config.js
+++ b/packages/website/docusaurus.config.js
@@ -16,7 +16,7 @@ const config = {
// Set the // pathname under which your site is served
// For GitHub pages deployment, it is often '//'
baseUrl: '/react-strict-dom/',
- trailingSlash: true,
+ trailingSlash: undefined,
onBrokenLinks: 'throw',
onBrokenMarkdownLinks: 'warn',
// GitHub pages deployment config.
diff --git a/packages/website/static/llms.txt b/packages/website/static/llms.txt
new file mode 100644
index 00000000..66cc1a7d
--- /dev/null
+++ b/packages/website/static/llms.txt
@@ -0,0 +1,449 @@
+# React Strict DOM (RSD) - LLM Guide
+
+React Strict DOM is a cross-platform JavaScript library that provides React components based on web standards (W3C, React DOM). Write once using HTML, CSS, and DOM APIs that work on web and React Native (Android/iOS).
+
+**Key characteristics:**
+- Strict subset of React DOM and Web APIs
+- Under 2 KB runtime on web, generates atomic CSS
+- Renders platform-native UI elements
+- Unified types across platforms (e.g., `HTMLElement`)
+
+## Installation
+
+```bash
+npm install react-strict-dom
+```
+
+**Dependencies:** `react` + `react-dom` (web) or `react-native` (native)
+
+**Setup (required):**
+- Babel: `react-strict-dom/babel-preset`
+- PostCSS: `react-strict-dom/postcss-plugin` (web)
+- Import CSS file with `@react-strict-dom` directive
+- Root element: `data-layoutconformance="strict"`
+
+## Core Differences from React DOM
+
+```jsx
+// React DOM
+import React from 'react';
+function App() {
+ return