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
docs: add skills.sh support for SKILL.md distribution
- Move SKILL.md from packages/0/ to skills/vuetify0/ (skills.sh format)
- Add frontmatter with name, description, license, metadata
- Update ai-tools.md with npx skills add vuetifyjs/0
- Update copy-markdown.ts to use new SKILL.md path
> [!ASKAI] When should I use llms.txt vs llms-full.txt?
37
37
38
38
## Usage
39
39
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
+
Install SKILL.md via [skills.sh](https://skills.sh) — works with Claude Code, Cursor, Windsurf, Codex, and [35+ agents](https://github.com/vercel-labs/skills#supported-agents):
41
41
42
-
::: code-group
42
+
```bash
43
+
npx skills add vuetifyjs/0
44
+
```
45
+
46
+
### For Humans
43
47
44
-
```md I'm a Human
45
48
**Claude Code / Codex** — Add Vuetify MCP for structured API access:
46
-
> claude mcp add --transport http vuetify-mcp https://mcp.vuetifyjs.com/mcp
49
+
50
+
```bash
51
+
claude mcp add --transport http vuetify-mcp https://mcp.vuetifyjs.com/mcp
52
+
```
47
53
48
54
Or fetch docs directly in your session:
49
-
> WebFetch https://0.vuetifyjs.com/llms-full.txt
55
+
56
+
```txt
57
+
WebFetch https://0.vuetifyjs.com/llms-full.txt
58
+
```
50
59
51
60
**Cursor / Windsurf** — Add to .cursorrules or configure MCP:
52
-
> @https://0.vuetifyjs.com/llms.txt
61
+
62
+
```txt
63
+
@https://0.vuetifyjs.com/llms.txt
64
+
```
53
65
54
66
See [Vuetify MCP](/guide/tooling/vuetify-mcp) for IDE configuration.
55
67
56
68
**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.
69
+
70
+
```txt
71
+
Read https://0.vuetifyjs.com/llms-full.txt and help me build a multi-select dropdown.
- Selection system (createSingle, createGroup, createStep)
75
95
- Registry & Trinity patterns
96
+
- Code style (shallowRef, function declarations)
76
97
- Common mistakes to avoid
77
-
```
78
-
79
-
:::
80
98
81
99
## What's Included
82
100
@@ -89,7 +107,7 @@ See [Vuetify MCP](/guide/tooling/vuetify-mcp) for IDE configuration.
89
107
90
108
**llms-full.txt** includes the complete content of every documentation page, stripped of Vue components and frontmatter for cleaner LLM consumption.
91
109
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.
110
+
**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. Install it via [skills.sh](https://skills.sh) (`npx skills add vuetifyjs/0`) to make it available across Claude Code, Cursor, Windsurf, and 35+ other agents.
0 commit comments