You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: apps/docs/build/generate-llms-full.ts
+3Lines changed: 3 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -226,6 +226,9 @@ function generateLlmsTxt (pages: PageInfo[]): string {
226
226
lines.push('')
227
227
}
228
228
229
+
// AI Resources section
230
+
lines.push('## AI Resources','',`- [SKILL.md](${BASE_URL}/SKILL.md): Compact reference with patterns, anti-patterns, and TypeScript types for AI coding assistants`,`- [Vuetify MCP](${BASE_URL}/guide/tooling/vuetify-mcp): Model Context Protocol server for structured API access`,'')
> [!ASKAI] When should I use llms.txt vs llms-full.txt?
36
37
37
-
## Usage Examples
38
+
## Usage
38
39
39
-
### ChatGPT / Claude.ai
40
+
Whether you're a developer prompting an AI assistant or an agent consuming v0 documentation programmatically, choose the approach that fits your workflow.
40
41
41
-
Paste the URL directly in chat:
42
+
::: code-group
42
43
43
-
```txt
44
-
Read https://0.vuetifyjs.com/llms-full.txt and help me build a multi-select dropdown using v0 composables.
45
-
```
46
-
47
-
### Cursor / Windsurf
44
+
```md I'm a Human
45
+
**Claude Code / Codex** — Add Vuetify MCP for structured API access:
46
+
> claude mcp add --transport http vuetify-mcp https://mcp.vuetifyjs.com/mcp
48
47
49
-
Add to your project's `.cursorrules` or AI context:
48
+
Or fetch docs directly in your session:
49
+
> WebFetch https://0.vuetifyjs.com/llms-full.txt
50
50
51
-
```txt
52
-
@https://0.vuetifyjs.com/llms.txt
53
-
```
51
+
**Cursor / Windsurf** — Add to .cursorrules or configure MCP:
52
+
> @https://0.vuetifyjs.com/llms.txt
54
53
55
-
### Claude Code
54
+
See [Vuetify MCP](/guide/tooling/vuetify-mcp) for IDE configuration.
56
55
57
-
Fetch the documentation in your session:
56
+
**ChatGPT / Claude.ai** — Paste the URL in chat:
57
+
> Read https://0.vuetifyjs.com/llms-full.txt and help me build a multi-select dropdown.
**llms-full.txt** includes the complete content of every documentation page, stripped of Vue components and frontmatter for cleaner LLM consumption.
76
91
92
+
**SKILL.md** is a compact reference optimized for AI coding assistants. It focuses on practical usage patterns, the selection/registry systems, common mistakes, and TypeScript integration — ideal for project-level context files.
93
+
77
94
## How It Works
78
95
79
96
Both files are auto-generated at build time by [generate-llms-full.ts](https://github.com/vuetifyjs/0/blob/master/apps/docs/build/generate-llms-full.ts):
0 commit comments