What problem does it solve? Vue projects often accumulate inconsistent patterns: oversized components, unclear data flow, misused reactivity primitives, and premature optimization. This Skill provides a structured workflow that enforces Vue 3 best practices so generated or refactored code follows predictable, maintainable conventions. ## Core Features & Use Cases - Architecture-First Workflow: Confirms the stack (Vue 3 + Composition API + <script setup lang="ts">) and plans component boundaries before writing code. - Core Reference Library: Ships in-depth references on reactivity, SFC structure, component data flow, and composables that must be applied to every Vue task. - On-Demand Feature Guidance: Loads targeted references for slots, Teleport, Suspense, KeepAlive, transitions, directives, plugins, and state management only when requirements call for them. - Performance Pass: Applies virtualization, v-once/v-memo, and list-abstraction guidance strictly after behavior is verified. - Use Case: Ask the agent to build a CRUD todo feature in Vue; it will split the UI into container, form, list, and filter components, use typed props/emits contracts, extract stateful logic into composables, and only then consider performance tuning. ## Quick Start Use the vue-best-practices skill to build a typed Vue 3 todo list feature with Composition API and script setup.