スキル一覧に戻る
eug-subscription

heroui-component

by eug-subscription

0🍴 0📅 2026年1月23日
GitHubで見るManusで実行

SKILL.md


name: heroui-component description: Scaffolds new HeroUI v3 React components using compound component patterns. Enforces named exports, onPress handlers, and direct imports from @heroui/react. Use when creating new UI components.

HeroUI Component Scaffolding Skill

Creates new components following HeroUI v3 Beta 3 compound patterns.

Before Creating Any Component

MANDATORY: Use HeroUI MCP tools first:

  1. mcp_heroui-react_list_components — Check if component exists
  2. mcp_heroui-react_get_component_info — Understand compound anatomy
  3. mcp_heroui-react_get_component_props — Get TypeScript types
  4. mcp_heroui-react_get_component_examples — See correct usage

Decision Tree

Does HeroUI v3 have it?
├─ YES → Import directly from @heroui/react (NO wrappers!)
├─ ALMOST → Extend with tv() variants or composition
└─ NO → Only then build custom (with justification)

Component Template

// src/components/{ComponentName}.tsx

import { Card, Button } from "@heroui/react";
import { tv } from "tailwind-variants";

interface {ComponentName}Props {
    title: string;
    onAction?: () => void;
}

const styles = tv({
    base: "p-4",
    variants: {
        variant: {
            default: "",
            highlighted: "ring-2 ring-primary",
        },
    },
});

export function {ComponentName}({ title, onAction }: {ComponentName}Props) {
    return (
        <Card className={styles()}>
            <Card.Content>
                <h3 className="text-lg font-semibold">{title}</h3>
                {onAction && (
                    <Button onPress={onAction} variant="primary">
                        Action
                    </Button>
                )}
            </Card.Content>
        </Card>
    );
}

Rules (from dev_instruction_v3.md)

RuleExample
Named exports onlyexport function ComponentName()
Use onPress<Button onPress={handler}>
Direct importsimport { Button } from "@heroui/react"
Compound patterns<Card.Content>, <Modal.Body>
Strict typingDefine interface Props
No any typesUse proper TypeScript types

Examples

See resources/ for reference implementations:

  • resources/card-example.tsx — Card compound pattern
  • resources/modal-example.tsx — Modal compound pattern

スコア

総合スコア

50/100

リポジトリの品質指標に基づく評価

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

0/10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

0/5

レビュー

💬

レビュー機能は近日公開予定です