@dryui/ui 0.1.7 → 0.1.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/skills/dryui/SKILL.md
CHANGED
|
@@ -104,7 +104,15 @@ The test: search your markup for raw `<input`, `<select>`, `<dialog>`, `<button>
|
|
|
104
104
|
|
|
105
105
|
## Quick Start
|
|
106
106
|
|
|
107
|
-
|
|
107
|
+
**1. Install this skill** — you're reading it, so it's already loaded. This is the most important step.
|
|
108
|
+
|
|
109
|
+
**2. Add the MCP server** for live API lookup and code validation:
|
|
110
|
+
|
|
111
|
+
- Claude Code: `claude plugin marketplace add rob-balfre/dryui && claude plugin install dryui@dryui` (installs skill + MCP in one step)
|
|
112
|
+
- Codex: `$skill-installer install https://github.com/rob-balfre/dryui/tree/main/packages/ui/skills/dryui` then `codex mcp add dryui -- npx -y @dryui/mcp`
|
|
113
|
+
- Copilot/Cursor/Windsurf: `npx degit rob-balfre/dryui/packages/ui/skills/dryui .agents/skills/dryui` + add MCP config (see https://dryui.dev/tools)
|
|
114
|
+
|
|
115
|
+
**3. Run the install planner** — it detects your project and returns a tailored step-by-step plan:
|
|
108
116
|
|
|
109
117
|
```
|
|
110
118
|
npx -y @dryui/cli install --toon
|
|
@@ -2,3 +2,9 @@ interface:
|
|
|
2
2
|
display_name: 'DryUI'
|
|
3
3
|
short_description: 'Zero-dependency Svelte 5 component library patterns'
|
|
4
4
|
default_prompt: 'Use $dryui to build with correct compound components, theming, accessibility, and composition patterns.'
|
|
5
|
+
|
|
6
|
+
dependencies:
|
|
7
|
+
tools:
|
|
8
|
+
- type: 'mcp'
|
|
9
|
+
value: 'dryui'
|
|
10
|
+
description: 'DryUI component lookup, validation, composition guidance, and project planning'
|