Frontend Patterns
Description
--- name: frontend-patterns description: React, Next.js, 상태 관리, 성능 최적화, UI 모범 사례를 위한 프론트엔드 개발 패턴. --- # 프론트엔드 개발 패턴 React, Next.js, 그리고 성능 좋은 사용자 인터페이스를 위한 현대적인 프론트엔드 패턴. ## 컴포넌트 패턴 ### 상속보다 합성 ```typescript // 좋음: 컴포넌트 합성 interface CardProps { children: React.ReactNode variant?: 'default' | 'outlined' } export function Card({ children, variant = 'default' }: CardProps) { return <div className={`card card-${variant}`}>{children}</div> } export function CardHeader({ children }: { chi
Installation
Installs to ~/.claude/skills/revfactory-everything-claude-code-frontend-patterns/SKILL.md
mkdir -p ~/.claude/skills/revfactory-everything-claude-code-frontend-patterns && curl -fsSL https://raw.githubusercontent.com/revfactory/everything-claude-code/HEAD/skills/frontend-patterns.md -o ~/.claude/skills/revfactory-everything-claude-code-frontend-patterns/SKILL.md Restart Claude Code, or start a new session, for it to be picked up.
Full documentation available on GitHub
View Source RepositoryRelated Skills
Algorithmic Art
Create generative art using p5.js with seeded randomness, flow fields, and particle systems
Design Brand Guidelines
Apply Anthropic's official brand colors and typography to artifacts
Design Canvas Design
Create beautiful visual art in PNG and PDF documents using design philosophy
Design Frontend Design
Create distinctive, production-grade frontend interfaces with high design quality
Design Slack Gif Creator
Create animated GIFs optimized for Slack's size constraints
Design Theme Factory
Style artifacts with professional themes including 10 pre-set color/font combinations
Design Related Agents
Codemod Runner
Writes and runs codemod scripts that replace hardcoded visual values with token references in ui/src/index.css
Designguru
Expert Design Guidance & Analysis Specialist who provides professional UI/UX insights, design system guidance,
Html Css
| Web standards for semantic markup, maintainable styling, and accessibility. | - | [wshobson/agents](https://