MO

moai-domain-frontend

Expert assistant for modern web UI development using React, Next.js, and Vue.

Install

mkdir -p .claude/skills/moai-domain-frontend && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/4877" && unzip -o skill.zip -d .claude/skills/moai-domain-frontend && rm skill.zip

Installs to .claude/skills/moai-domain-frontend

Activation

This is the description your AI agent reads to decide when to run this skill — the better it matches your request, the more reliably it fires.

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.
244 chars · catalog description✓ has a “when” trigger
Advanced

Key capabilities

  • Implement React 19 server components
  • Build Next.js 16 App Router routes
  • Develop Vue 3.5 composables
  • Create component libraries using CVA
  • Optimize frontend performance and bundle size

How it works

The skill applies modern framework patterns and architectural best practices to build responsive UIs, manage state, and optimize performance.

Inputs & outputs

You give it
UI/UX requirement or component specification
You get back
Frontend code implementation

When to use moai-domain-frontend

  • Building components
  • Optimizing web performance
  • Implementing state management
  • Creating responsive UIs

About this skill

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

<!-- moai:evolvable-start id="rationalizations" -->

Common Rationalizations

RationalizationReality
"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.
<!-- moai:evolvable-end --> <!-- moai:evolvable-start id="red-flags" -->

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
<!-- moai:evolvable-end --> <!-- moai:evolvable-start id="verification" -->

Verification

  • All interactive elements have accessible names (aria-label or visible text)
  • Components handle loading, error, and empty states
  • No TypeScript any in new or modified code (show grep results)
  • Bundle size impact measured for new dependencies (show analyzer output)
  • User-provided content rendered with proper escaping or sanitization
  • Components under 300 lines or decomposed with clear sub-component boundaries
<!-- moai:evolvable-end -->

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.

When not to use it

  • When building non-web applications
  • When using legacy frameworks incompatible with modern patterns

Limitations

  • Requires adherence to framework-specific version patterns
  • Performance optimization requires measurement

How it compares

It enforces modern architectural standards and performance patterns rather than generic component implementation.

Compared to similar skills

moai-domain-frontend side by side with the closest alternatives in the catalog.

SkillInstallsUpdatedSafetyDifficulty
moai-domain-frontend (this skill)13moNo flagsAdvanced
perf-web-optimization15moReviewIntermediate
astro03moReviewIntermediate
frontend-developer04moNo flagsIntermediate

Try saying

Example prompts that trigger this skill in your AI assistant.

You might also like

perf-web-optimization

tech-leads-club

Optimize web performance: Core Web Vitals (LCP, CLS, INP), bundle size, images, caching. Use when site is slow, optimizing for Lighthouse scores, reducing bundle size, fixing layout shifts, or improving Time to Interactive. Triggers on: web performance, Core Web Vitals, LCP, CLS, INP, FID, bundle size, page speed, slow site.

10

astro

Anhvu1107

ALWAYS use this when the request matches Astro: Build content-focused websites with Astro — zero JS by default, islands architecture, multi-framework components, and Markdown/MDX support.

00

frontend-developer

bonnguyenitc

Use when building web UI, designing component architecture, or reviewing frontend code — regardless of framework (React, Vue, Svelte, etc.)

00

optimize

aladicf

Diagnose and fix UI performance across loading speed, rendering, animations, images, and bundle size. Use when the user mentions slow, laggy, janky, performance, bundle size, load time, or wants a faster, smoother experience.

00

roier-seo

davila7

Technical SEO auditor and fixer. Runs Lighthouse/PageSpeed audits on websites or local dev servers, analyzes SEO/performance/accessibility scores, and automatically implements fixes for meta tags, structured data, Core Web Vitals, and accessibility issues.

424

ai-model-web

TencentCloudBase

Use this skill when developing browser/Web applications (React/Vue/Angular, static websites, SPAs) that need AI capabilities. Features text generation (generateText) and streaming (streamText) via @cloudbase/js-sdk. Built-in models include Hunyuan (hunyuan-2.0-instruct-20251111 recommended) and DeepSeek (deepseek-v3.2 recommended). NOT for Node.js backend (use ai-model-nodejs), WeChat Mini Program (use ai-model-wechat), or image generation (Node SDK only).

13

Search skills

Search the agent skills registry