What problem does it solve?
Vue coding sessions can become error-prone when reactive ownership, contracts (props/emits/slots), and verification evidence are unclear, leading to confusing reviews and next-session regressions.
Core Features & Use Cases
- Composition API + reactivity correctness: preserves reactive ownership boundaries using refs/reactive/computed and cleanup-safe watchers.
- Framework-native contract design: typed props/emits, v-model conventions, slot APIs with accessibility semantics, and provide/inject where appropriate.
- Scoped, evidence-driven delivery: requires source-of-truth inspection, defines a smallest changed slice, mandates scoped verification commands, and names rollback paths when blocked or failing.
- Async + forms + accessibility discipline: explicit loading/error/empty/success states, retry/cancellation expectations, and keyboard/role/validation coverage patterns.
Quick Start
Ask your AI tool to deliver a small Vue 3 Composition API change using the Vue Domain Delivery skill, ensuring it inspects the source of truth, performs the declared scoped verification, and provides a rollback path if anything is blocked.