Smithery Logo
MCPsSkillsDocsPricing
Login
Smithery Logo

Accelerating the Agent Economy

Resources

DocumentationPrivacy PolicySystem Status

Company

PricingAboutBlog

Connect

© 2026 Smithery. All rights reserved.

    neversight

    shadcn

    neversight/shadcn
    Design
    2

    About

    SKILL.md

    Install

    Install via Skills CLI

    or add to your agent
    • Claude Code
      Claude Code
    • Codex
      Codex
    • OpenClaw
      OpenClaw
    • Cursor
      Cursor
    • Amp
      Amp
    • GitHub Copilot
      GitHub Copilot
    • Gemini CLI
      Gemini CLI
    • Kilo Code
      Kilo Code
    • Junie
      Junie
    • Replit
      Replit
    • Windsurf
      Windsurf
    • Cline
      Cline
    • Continue
      Continue
    • OpenCode
      OpenCode
    • OpenHands
      OpenHands
    • Roo Code
      Roo Code
    • Augment
      Augment
    • Goose
      Goose
    • Trae
      Trae
    • Zencoder
      Zencoder
    • Antigravity
      Antigravity
    ├─
    ├─
    └─

    About

    How to work effectively with shadcn/ui components, always use when adding UI components

    SKILL.md

    shadcn/ui

    Instructions

    This project uses shadcn/ui with the New York style variant. Components are built on Radix UI primitives with Tailwind CSS styling.

    Configuration

    • Style: new-york
    • Base color: neutral
    • Icons: lucide-react
    • Components location: resources/js/components/ui/
    • Utils location: resources/js/lib/utils.ts

    Adding New Components

    Use the shadcn CLI to add components:

    npx shadcn@latest add <component-name>
    

    Examples:

    npx shadcn@latest add table
    npx shadcn@latest add tabs
    npx shadcn@latest add calendar
    

    Do NOT manually create shadcn components - always use the CLI to ensure correct styling and dependencies.

    Available Components

    Components already installed in this project:

    • alert
    • alert-dialog
    • avatar
    • badge
    • breadcrumb
    • button
    • card
    • checkbox
    • collapsible
    • dialog
    • dropdown-menu
    • input, input-otp
    • label
    • navigation-menu
    • select
    • separator
    • sheet
    • sidebar
    • skeleton
    • sonner (toast notifications)
    • spinner
    • toggle, toggle-group
    • tooltip

    Using Components

    Always import from @/components/ui/:

    import { Button } from '@/components/ui/button'; import { Input } from '@/components/ui/input'; import { Label } from '@/components/ui/label'; import { Card, CardContent, CardDescription, CardHeader, CardTitle, } from '@/components/ui/card';

    Button Variants

    {/_ Sizes _/}

    Form Patterns

    Use Label + Input together, with proper error styling:

    import { Label } from '@/components/ui/label'; import { Input } from '@/components/ui/input';
    {errors.email && (

    {errors.email}

    )}

    Dialog Pattern

    import { Dialog, DialogContent, DialogDescription, DialogHeader, DialogTitle, DialogTrigger, } from '@/components/ui/dialog'; Dialog Title Description text goes here. {/* Dialog content */}

    Toast Notifications

    Use Sonner for toast notifications:

    import { toast } from 'sonner';

    // Success toast.success('Changes saved successfully');

    // Error toast.error('Something went wrong');

    // With description toast.success('Project created', { description: 'Your new project is ready to use.', });

    The cn() Utility

    Use cn() from @/lib/utils to merge Tailwind classes conditionally:

    import { cn } from '@/lib/utils';
    {children}

    Icons

    Use Lucide React for icons:

    import { Plus, Trash2, Edit, ChevronRight } from 'lucide-react';
    Recommended Servers
    Svelte
    Svelte
    Astro Docs
    Astro Docs
    vastlint - IAB XML VAST validator and linter
    vastlint - IAB XML VAST validator and linter
    Repository
    neversight/skills_feed