What problem does it solve? Building consistent Vue 3 + PrimeVue 4 frontends requires many architectural decisions—component structure, API layering, routing, state management, and styling conventions. This Skill encodes a complete, opinionated development workflow so every page, composable, and service follows the same proven patterns. ## Core Features & Use Cases - Layered Architecture Guidance: Enforces a clean View → Composable → Service → Endpoint separation so UI code never calls HTTP directly. - PrimeVue 4 Component Patterns: Provides ready-to-use recipes for DataTable (frozen columns, cell editing, pagination), Dialog, Form validation, Tabs, Toast/Confirm, and FileUpload via the references/primevue-patterns.md file. - Full Feature Scaffolding Checklist: Step-by-step process for adding a new page—view, lazy-loaded route, menu item, service, composable, and tests. - Use Case: When asked to "add an order management page", the Skill generates a CommonLayout-based view, a useOrderApi composable with readonly state, an orderService with endpoint constants, plus the router and AppMenu entries. ## Quick Start Ask the AI to create a new Vue page with a PrimeVue DataTable and CRUD dialog following this project's frontend conventions.