Frontend Development Specialist
Quick Reference
Modern Frontend Development - Comprehensive patterns for React 19, Next.js 16, Vue 3.5.
Core Capabilities:
- React 19: Server components, concurrent features, cache(), Suspense
- Next.js 16: App Router, Server Actions, ISR, Route handlers
- Vue 3.5: Composition API, TypeScript, Pinia state management
- Component Architecture: Design systems, compound components, CVA
- Performance: Code splitting, dynamic imports, memoization, Framer Motion animations
When to Use:
- Modern web application development
- Component library creation
- Frontend performance optimization
- UI/UX with accessibility
Patterns
Framework Patterns
React 19 Patterns:
- Server Components, Concurrent features, cache() API, Form handling
Next.js 16 Patterns:
- App Router, Server Actions, ISR, Route Handlers, Parallel Routes
Vue 3.5 Patterns:
- Composition API, Composables, Reactivity, Pinia, Provide/Inject
Architecture Patterns
Component Architecture:
- Design tokens, CVA variants, Compound components, Accessibility
State Management:
- Zustand, Redux Toolkit, React Context, Pinia
Performance Optimization:
- Code splitting, Dynamic imports, Image optimization, Memoization
AI-Assisted Frontend Patterns:
- Visual reference strategy, Playwright verification, motion design, reasoning-level tuning
Vercel React Best Practices:
- 45 rules across 8 categories from Vercel Engineering
- Eliminating waterfalls, bundle optimization, server-side performance
- Client-side data fetching, re-render optimization, rendering performance
Implementation Quickstart
React 19 Server Component
Create an async page component that uses the cache function from React to memoize data fetching. Import Suspense for loading states. Define a getData function that fetches from the API endpoint with an id parameter and returns JSON. In the page component, wrap the DataDisplay component with Suspense using a Skeleton fallback, and pass the awaited getData result as the data prop.
Next.js Server Action
Create a server action file with the use server directive. Import revalidatePath from next/cache and z from zod for validation. Define a schema with title (minimum 1 character) and content (minimum 10 characters). The createPost function accepts FormData, validates with safeParse, returns errors on failure, creates the post in the database, and calls revalidatePath for the posts page.
Vue Composable
Create a useUser composable that accepts a userId ref parameter. Define user as a nullable ref, loading as a boolean ref, and fullName as a computed property that concatenates firstName and lastName. Use watchEffect to set loading true, fetch the user data asynchronously, assign to user ref, and set loading false. Return the user, loading, and fullName refs.
CVA Component
Import cva and VariantProps from class-variance-authority. Define buttonVariants with base classes for inline-flex, items-center, justify-center, rounded-md, and font-medium. Add variants object with variant options for default (primary background with hover) and outline (border with hover accent). Add size options for sm (h-9, px-3, text-sm), default (h-10, px-4), and lg (h-11, px-8). Set defaultVariants for variant and size. Export a Button component that applies the variants to a button element className.
Works Well With
- moai-domain-backend - Full-stack development
- moai-library-shadcn - Component library integration
- moai-domain-uiux - UI/UX design principles
.claude/rules/moai/languages/typescript.md - TypeScript patterns (auto-loaded via paths frontmatter)
- moai-workflow-testing - Frontend testing
Technology Stack
Frameworks: React 19, Next.js 16, Vue 3.5, Nuxt 3
Languages: TypeScript 5.9+, JavaScript ES2024
Styling: Tailwind CSS 3.4+, CSS Modules, shadcn/ui
Animation: Framer Motion
State: Zustand, Redux Toolkit, Pinia
Testing: Vitest, Testing Library, Playwright
Verification: Playwright (visual inspection, functional testing)
Resources
Official documentation:
Version: 2.1.0
Last Updated: 2026-03-28
Common Rationalizations
| Rationalization |
Reality |
| "Accessibility can be added after launch" |
Post-launch accessibility is a rewrite, not an addition. Semantic HTML and ARIA are foundational, not decorative. |
| "This component is too simple to need its own test" |
Simple components compose into complex UIs. A broken simple component cascades failures everywhere it is used. |
| "Server components are always faster" |
Server components add network round trips. Client components with proper caching can outperform naive server components. Measure, do not assume. |
| "I will just use any as the TypeScript type for now" |
any disables the type checker for everything downstream. One any infects the entire call chain. |
| "Global CSS is fine for this project" |
Global CSS creates specificity conflicts as the project grows. Scoped styles (CSS modules, Tailwind) prevent collisions. |
Red Flags
- Component renders user-provided HTML without sanitization (XSS vector)
- TypeScript
any type used in component props or state definitions
- No loading or error states defined for async data fetching components
- Accessibility attributes (aria-label, role) missing from interactive elements
- Bundle size increased by more than 50KB without justification
- Component has more than 300 lines without extraction into sub-components
Verification
Refactor Notes
Refactor scope (deferred to future sub-SPEC):
- Reduce body to routing/delegation content pointing at moai-ref-react-patterns and moai-library-nextra
- Extract framework-specific deep-dives into Level-3 modules
- Remove content that duplicates coverage in library and reference skills
This skill is retained in v3.0 but its body will be restructured in a follow-up SPEC.
1---2name: moai-domain-frontend3description: Frontend development specialist covering React 19, Next.js 16, Vue 3.5, and modern UI/UX patterns with component architecture. Use when building web UIs, implementing components, optimizing frontend performance, or integrating state management.4license: Apache-2.05---6
7# Frontend Development Specialist
8
9## Quick Reference
10
11Modern Frontend Development - Comprehensive patterns for React 19, Next.js 16, Vue 3.5.
12
13Core Capabilities:
14
15- React 19: Server components, concurrent features, cache(), Suspense
16- Next.js 16: App Router, Server Actions, ISR, Route handlers
17- Vue 3.5: Composition API, TypeScript, Pinia state management
18- Component Architecture: Design systems, compound components, CVA
19- Performance: Code splitting, dynamic imports, memoization, Framer Motion animations
20
21When to Use:
22
23- Modern web application development
24- Component library creation
25- Frontend performance optimization
26- UI/UX with accessibility
27
28---
29
30## Patterns
31
32### Framework Patterns
33
34React 19 Patterns:
35
36- Server Components, Concurrent features, cache() API, Form handling
37
38Next.js 16 Patterns:
39
40- App Router, Server Actions, ISR, Route Handlers, Parallel Routes
41
42Vue 3.5 Patterns:
43
44- Composition API, Composables, Reactivity, Pinia, Provide/Inject
45
46### Architecture Patterns
47
48Component Architecture:
49
50- Design tokens, CVA variants, Compound components, Accessibility
51
52State Management:
53
54- Zustand, Redux Toolkit, React Context, Pinia
55
56Performance Optimization:
57
58- Code splitting, Dynamic imports, Image optimization, Memoization
59
60AI-Assisted Frontend Patterns:
61
62- Visual reference strategy, Playwright verification, motion design, reasoning-level tuning
63
64Vercel React Best Practices:
65
66- 45 rules across 8 categories from Vercel Engineering
67- Eliminating waterfalls, bundle optimization, server-side performance
68- Client-side data fetching, re-render optimization, rendering performance
69
70---
71
72## Implementation Quickstart
73
74### React 19 Server Component
75
76Create an async page component that uses the cache function from React to memoize data fetching. Import Suspense for loading states. Define a getData function that fetches from the API endpoint with an id parameter and returns JSON. In the page component, wrap the DataDisplay component with Suspense using a Skeleton fallback, and pass the awaited getData result as the data prop.
77
78### Next.js Server Action
79
80Create a server action file with the use server directive. Import revalidatePath from next/cache and z from zod for validation. Define a schema with title (minimum 1 character) and content (minimum 10 characters). The createPost function accepts FormData, validates with safeParse, returns errors on failure, creates the post in the database, and calls revalidatePath for the posts page.
81
82### Vue Composable
83
84Create a useUser composable that accepts a userId ref parameter. Define user as a nullable ref, loading as a boolean ref, and fullName as a computed property that concatenates firstName and lastName. Use watchEffect to set loading true, fetch the user data asynchronously, assign to user ref, and set loading false. Return the user, loading, and fullName refs.
85
86### CVA Component
87
88Import cva and VariantProps from class-variance-authority. Define buttonVariants with base classes for inline-flex, items-center, justify-center, rounded-md, and font-medium. Add variants object with variant options for default (primary background with hover) and outline (border with hover accent). Add size options for sm (h-9, px-3, text-sm), default (h-10, px-4), and lg (h-11, px-8). Set defaultVariants for variant and size. Export a Button component that applies the variants to a button element className.
89
90---
91
92## Works Well With
93
94- moai-domain-backend - Full-stack development
95- moai-library-shadcn - Component library integration
96- moai-domain-uiux - UI/UX design principles
97- `.claude/rules/moai/languages/typescript.md` - TypeScript patterns (auto-loaded via paths frontmatter)
98- moai-workflow-testing - Frontend testing
99
100---
101
102## Technology Stack
103
104Frameworks: React 19, Next.js 16, Vue 3.5, Nuxt 3
105
106Languages: TypeScript 5.9+, JavaScript ES2024
107
108Styling: Tailwind CSS 3.4+, CSS Modules, shadcn/ui
109
110Animation: Framer Motion
111
112State: Zustand, Redux Toolkit, Pinia
113
114Testing: Vitest, Testing Library, Playwright
115
116Verification: Playwright (visual inspection, functional testing)
117
118---
119
120## Resources
121
122Official documentation:
123
124- React: https://react.dev/
125- Next.js: https://nextjs.org/docs
126- Vue: https://vuejs.org/
127
128---
129
130Version: 2.1.0
131Last Updated: 2026-03-28
132
133<!-- moai:evolvable-start id="rationalizations" -->
134## Common Rationalizations
135
136| Rationalization | Reality |
137|---|---|
138| "Accessibility can be added after launch" | Post-launch accessibility is a rewrite, not an addition. Semantic HTML and ARIA are foundational, not decorative. |
139| "This component is too simple to need its own test" | Simple components compose into complex UIs. A broken simple component cascades failures everywhere it is used. |
140| "Server components are always faster" | Server components add network round trips. Client components with proper caching can outperform naive server components. Measure, do not assume. |
141| "I will just use any as the TypeScript type for now" | any disables the type checker for everything downstream. One any infects the entire call chain. |
142| "Global CSS is fine for this project" | Global CSS creates specificity conflicts as the project grows. Scoped styles (CSS modules, Tailwind) prevent collisions. |
143
144<!-- moai:evolvable-end -->
145
146<!-- moai:evolvable-start id="red-flags" -->
147## Red Flags
148
149- Component renders user-provided HTML without sanitization (XSS vector)
150- TypeScript `any` type used in component props or state definitions
151- No loading or error states defined for async data fetching components
152- Accessibility attributes (aria-label, role) missing from interactive elements
153- Bundle size increased by more than 50KB without justification
154- Component has more than 300 lines without extraction into sub-components
155
156<!-- moai:evolvable-end -->
157
158<!-- moai:evolvable-start id="verification" -->
159## Verification
160
161- [ ] All interactive elements have accessible names (aria-label or visible text)
162- [ ] Components handle loading, error, and empty states
163- [ ] No TypeScript `any` in new or modified code (show grep results)
164- [ ] Bundle size impact measured for new dependencies (show analyzer output)
165- [ ] User-provided content rendered with proper escaping or sanitization
166- [ ] Components under 300 lines or decomposed with clear sub-component boundaries
167
168<!-- moai:evolvable-end -->
169
170## Refactor Notes
171
172**Refactor scope** (deferred to future sub-SPEC):
173- Reduce body to routing/delegation content pointing at moai-ref-react-patterns and moai-library-nextra
174- Extract framework-specific deep-dives into Level-3 modules
175- Remove content that duplicates coverage in library and reference skills
176
177This skill is retained in v3.0 but its body will be restructured in a follow-up SPEC.