add-component

star 1

새 React 컴포넌트를 생성합니다. shadcn/ui 스타일과 프로젝트 컨벤션을 준수합니다. 사용법: /add-component ComponentName [directory]

stolink By stolink schedule Updated 12/27/2025

name: add-component description: 새 React 컴포넌트를 생성합니다. shadcn/ui 스타일과 프로젝트 컨벤션을 준수합니다. 사용법: /add-component ComponentName [directory]

Add Component

새 React 컴포넌트를 프로젝트 컨벤션에 맞게 생성합니다.

Instructions

  1. 사용자로부터 컴포넌트 이름(PascalCase)과 선택적으로 디렉토리를 받습니다
  2. 기본 디렉토리는 src/components/common/입니다
  3. 다음 파일을 생성합니다:
    • src/components/{directory}/{ComponentName}.tsx
  4. 해당 디렉토리에 index.ts가 있으면 export를 추가합니다

Template

import { cn } from "@/lib/utils";

interface ${ComponentName}Props {
  className?: string;
  children?: React.ReactNode;
}

export function ${ComponentName}({ className, children }: ${ComponentName}Props) {
  return (
    <div className={cn("", className)}>
      {children}
    </div>
  );
}

Checklist

  • Props 인터페이스 정의
  • cn() 유틸리티 사용
  • className prop 지원
  • named export 사용

Examples

/add-component UserAvatar common

src/components/common/UserAvatar.tsx 생성

Install via CLI
npx skills add https://github.com/stolink/stolink_frontend --skill add-component
Repository Details
star Stars 1
call_split Forks 0
navigation Branch main
article Path SKILL.md
More from Creator