/moai-domain-frontend
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.
$ npx -y skills add modu-ai/moai-adk --skill moai-domain-frontend --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
- Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
- You can call itInvoke it directly when you want it.
- Slash command
/moai-domain-frontend
Context preview
The summary Claude sees to decide when to auto-load this skill.
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.
SKILL.md
moai-domain-frontend.SKILL.mdname: moai-domain-frontend
description: >
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.
when_to_use: >
Use for frontend development: React 19, Next.js 16, Vue 3.5 components,
responsive UIs, TypeScript/JavaScript, state management, hooks, props,
JSX/TSX, DOM, CSS, Tailwind, and client-side browser performance.
license: Apache-2.0
compatibility: Designed for Claude Code
allowed-tools: Read, Grep, Glob
user-invocable: false
metadata:
version: "2.1.0"
category: "domain"
status: "active"
updated: "2026-03-28"
tags: "frontend, react, nextjs, vue, ui, components"
author: "MoAI-ADK Team"
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:
- React: https://react.dev/
- Next.js: https://nextjs.org/docs
- Vue: https://vuejs.org/
---
Version: 2.1.0 Last Updated: 2026-03-28
<!-- moai:evolvable-start id="rationalizations" -->
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) pr
Read more
name: moai-domain-frontend description: > 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. when_to_use: > Use for frontend development: React 19, Next.js 16, Vue 3.5 components, responsive UIs, TypeScript/JavaScript, state management, hooks, props, JSX/TSX, DOM, CSS, Tailwind, and client-side browser performance. license: Apache-2.0 compatibility: Designed for Claude Code allowed-tools: Read, Grep, Glob user-invocable: false metadata: version: "2.1.0" category: "domain" status: "active" updated: "2026-03-28" tags: "frontend, react, nextjs, vue, ui, components" author: "MoAI-ADK Team"
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:
- React: https://react.dev/
- Next.js: https://nextjs.org/docs
- Vue: https://vuejs.org/
---
Version: 2.1.0 Last Updated: 2026-03-28
<!-- moai:evolvable-start id="rationalizations" -->
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) pr
Agentic development harness for Claude Code — SPEC-driven plan/run/sync, TRUST 5 quality gates, model+effort routing, and Claude×GLM multi-LLM cost control. Single Go binary, 16 languages, zero deps.
Repo: modu-ai/moai-adk
Other skills on moai-adk.
- /hns-lsel-applier
Local Self-Evolution Loop (LSEL) APPLY engine — the playback-only consumer of approved decision.json records that drives `.moai/hooks/lsel-apply.sh` for the GOOS-local PROPOSE→APPLY seam closure (SPEC-LSEL-LOCAL-EVOLUTION-001 M3). Reads an approved decision.json, validates the
Open skill - /hns-lsel-curator
Local Self-Evolution Loop (LSEL) curator — the CLUSTER + drain engine for the GOOS-local PROPOSE→APPLY seam closure (SPEC-LSEL-LOCAL-EVOLUTION-001). Companion-offset drain of .moai/lessons-inbox.jsonl with a drain-side severity filter that drops the ~65% Bash-timeout/sandbox
Open skill - /hns-moaiadk-best-practices
moai-adk-go best-practices reference for the 4 harness specialists (cli-template-specialist, quality-specialist, workflow-specialist, hook-ci-specialist). Covers TRUST 5 gates, Go test isolation (t.TempDir, no OTEL env in parallel tests), hardcoding-prevention rules (env
Open skill - /hns-moaiadk-dev-reference
moai-adk-go local dev reference — version management/release process (sec 5), shell-script hook development (sec 7), build & dev commands (sec 10). Load only when performing these specific tasks.
Open skill - /hns-moaiadk-patterns
moai-adk-go domain-patterns reference for the 4 harness specialists (cli-template-specialist, quality-specialist, workflow-specialist, hook-ci-specialist). Covers the CLI/template/config/hook/spec subsystem architecture, key source paths, the Pipeline specialist delegation map,
Open skill - /hns-oss-docs-i18n-rules
HARD i18n rules digest for the oss-docs harness specialists working on moai-adk-go README 4-locale set and the docs-site (adk.mo.ai.kr). Covers the canonical-locale chains, the 4-locale same-PR obligation, Mermaid TD-only, the no-emoji + icon-shortcode rule, emphasis-marker
Open skill

