This is a comprehensive skill for Vuetify's headless Vue 3 primitive layer, covering 36 components and 63 composables that handle selection state, form validation, data tables, focus management, and accessibility patterns. The decision table alone will save you from writing custom logic for common problems like multi-select, wizards, virtual scrolling, or autocomplete. It enforces compound component patterns where the root owns state and children communicate via context, which keeps things clean but requires you to think in that paradigm. The skill includes strong opinions on reactivity (shallowRef for primitives, avoid computed unless caching matters) and points you toward the Vuetify MCP server for live schemas instead of guessing at APIs. Worth noting this is logic only, zero styling, so you'll pair it with Paper or another design system when you need actual UI.
npx skills add https://github.com/vuetifyjs/0 --skill vuetify0