Token导航 LogoToken导航TokenDH.com
研究检索external-servicegithub未标认证来源可访问clear审计通过

shadcn-ui-expertshadcn/ui UI expert 浏览器

Agent Skill

用于辅助界面设计、视觉规范、排版、配色、布局和交互体验优化。它适合让 Agent 根据产品场景整理页面结构、生成 UI 方案、检查视觉一致性或改进组件层级。使用时需要结合现有品牌、设计系统和用户任务,不应只堆装饰元素;涉及真实页面改动时,应通过截图或浏览器预览检查文本溢出、对齐和响应式表现。

总安装

10,135

周安装

410

GitHub Stars

1

下载量

3,182
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:shadcn-ui-expert(shadcn/ui UI expert 浏览器)
来源仓库:https://github.com/majesteitbart/talentmatcher
仓库路径:skills/shadcn-ui-expert
安装命令:
npx skills add https://github.com/majesteitbart/talentmatcher --skill shadcn-ui-expert
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/majesteitbart/talentmatcher --skill shadcn-ui-expert

简介

使用 shadcn-ui、Tailwind CSS 和 Radix UI 原语构建可访问的 React 组件。

  • 支持 50 多个跨表单、布局、对话框、表格、数据显示和反馈模式的预构建组件,可通过 CLI 或自然语言请求安装
  • 适用于 Next.js、Vite、Remix、Astro、Laravel、Gatsby 和 React Router;与 shadcn MCP 服务器集成以进行组件发现
  • 所有组件均使用 Tailwind CSS 进行样式设置,并具有内置深色模式、CSS 变量主题和用于自定义的组件变体
  • Form组件与React Hook Form和Zod集成进行验证;基于组合的架构鼓励组合小组件而不是修改大组件
  • 通过 Radix UI 原语内置辅助功能和键盘导航;除了 Radix 依赖项之外,没有运行时开销

SKILL.md

shadcn-ui Expert

shadcn-ui is a collection of beautifully-designed, accessible React components built with TypeScript, Tailwind CSS, and Radix UI primitives. This skill guides you through component selection, implementation, customization, and best practices.

Quick Start

Installation

First, initialize shadcn-ui in your project:

npx shadcn-ui@latest init

This creates a components.json file for configuration. Choose your framework:

  • Next.js (App Router recommended)
  • Vite
  • Remix
  • Astro
  • Laravel
  • Gatsby
  • React Router
  • TanStack Router/Start

Installing Components

Use the CLI to install individual components:

# Install a button component
npx shadcn-ui@latest add button

# Install form components
npx shadcn-ui@latest add form input select checkbox

# Install a data table
npx shadcn-ui@latest add data-table

Or ask me directly to "add a login form" - I can use the MCP server to handle installation with natural language.

Component Categories

Form & Input Components

Use for: Data collection, user input, validation

  • form - Complex forms with React Hook Form
  • input - Text fields
  • textarea - Multi-line text
  • select - Dropdown selections
  • checkbox - Boolean inputs
  • radio-group - Single selection from options
  • switch - Toggle boolean states
  • date-picker - Date selection
  • combobox - Searchable select with autocomplete

Layout & Navigation

Use for: App structure, navigation flows, content organization

  • sidebar - Collapsible side navigation
  • tabs - Tabbed content
  • accordion - Collapsible sections
  • breadcrumb - Navigation path
  • navigation-menu - Dropdown menus
  • scroll-area - Custom scrollable regions

Overlays & Dialogs

Use for: Modals, confirmations, floating content

  • dialog - Modal dialogs
  • alert-dialog - Confirmation prompts
  • drawer - Mobile-friendly side panels
  • popover - Floating popovers
  • tooltip - Hover information
  • dropdown-menu - Menu dropdowns
  • context-menu - Right-click menus

Data Display

Use for: Showing structured data

  • table - Basic HTML tables
  • data-table - Advanced tables with sorting/filtering/pagination
  • avatar - User profile images
  • badge - Status labels
  • card - Content containers

Feedback & Status

Use for: User feedback, loading states, alerts

  • alert - Alert messages
  • toast - Notifications
  • progress - Progress bars
  • skeleton - Loading placeholders
  • spinner - Loading indicators

Component Selection Guide

Ask yourself these questions to choose the right component:

  1. What is the user interacting with?

- Text input → use input - Choosing from options → use select or combobox - Yes/no decision → use checkbox or switch - Multiple fields → use form

  1. How should it be displayed?

- Inline with other content → input, select - Centered on screen → dialog - Slide from side → drawer - Information tooltip → tooltip

  1. What's the context?

- Inside a form → use field component with form - Standalone button → use button - Inside a table → use table row cell or data-table

  1. Does it need validation?

- Yes → combine form + field + React Hook Form - No → use simple components (input, select)

Common Implementation Patterns

Basic Form with Validation

import { useForm } from "react-hook-form"
import { zodResolver } from "@hookform/resolvers/zod"
import * as z from "zod"
import { Button } from "@/components/ui/button"
import { Form, FormField, FormItem, FormLabel, FormControl } from "@/components/ui/form"
import { Input } from "@/components/ui/input"

const formSchema = z.object({
  email: z.string().email(),
  password: z.string().min(8),
})

export function LoginForm() {
  const form = useForm<z.infer<typeof formSchema>>({
    resolver: zodResolver(formSchema),
  })

  function onSubmit(values: z.infer<typeof formSchema>) {
    console.log(values)
  }

  return (
    <Form {...form}>
      <form onSubmit={form.handleSubmit(onSubmit)} className="space-y-8">
        <FormField
          control={form.control}
          name="email"
          render={({ field }) => (
            <FormItem>
              <FormLabel>Email</FormLabel>
              <FormControl>
                <Input placeholder="you@example.com" {...field} />
              </FormControl>
            </FormItem>
          )}
        />
        <Button type="submit">Submit</Button>
      </form>
    </Form>
  )
}

Dialog Pattern

import { Button } from "@/components/ui/button"
import {
  Dialog,
  DialogContent,
  DialogDescription,
  DialogHeader,
  DialogTitle,
  DialogTrigger,
} from "@/components/ui/dialog"

export function DeleteDialog() {
  return (
    <Dialog>
      <DialogTrigger asChild>
        <Button variant="destructive">Delete</Button>
      </DialogTrigger>
      <DialogContent>
        <DialogHeader>
          <DialogTitle>Are you sure?</DialogTitle>
          <DialogDescription>
            This action cannot be undone.
          </DialogDescription>
        </DialogHeader>
        <div className="flex gap-3 justify-end">
          <Button variant="outline">Cancel</Button>
          <Button variant="destructive">Delete</Button>
        </div>
      </DialogContent>
    </Dialog>
  )
}

Styling & Customization

All components use Tailwind CSS for styling. Customize appearance through:

1. Tailwind Classes

Add classes directly to components:

<Button className="w-full text-lg">Full Width</Button>
<Input className="rounded-lg border-2" />

2. CSS Variables (Theme Colors)

shadcn/ui uses CSS variables for theming. Edit app/globals.css:

@layer base {
  :root {
    --primary: 222.2 47.4% 11.2%;
    --secondary: 210 40% 96%;
  }
}

3. Dark Mode

Enable dark mode in your framework:

  • Next.js: Configure in next.config.js
  • Vite: Add dark class detection in tailwind.config.js
  • Components automatically respond to dark class

4. Component Variants

Many components have built-in variants:

<Button variant="outline" />
<Button variant="ghost" />
<Button variant="destructive" />
<Badge variant="secondary" />

Composition & Best Practices

1. Composition Over Customization

Combine small components rather than modifying large ones:

// ✅ Good: Compose components
<Card>
  <CardHeader>
    <CardTitle>Title</CardTitle>
  </CardHeader>
  <CardContent>
    <Form>...</Form>
  </CardContent>
</Card>

// ❌ Avoid: Over-modifying single component
<CustomDialog withHeader={true} withForm={true} />

2. Use Type Safety

Leverage TypeScript for prop safety:

import { Button } from "@/components/ui/button"
import type { ButtonProps } from "@/components/ui/button"

type CustomButtonProps = ButtonProps & {
  label: string
}

3. Accessibility Built-in

shadcn/ui uses Radix UI primitives with accessibility built-in:

  • Keyboard navigation
  • ARIA attributes
  • Screen reader support
  • Focus management

Just use components correctly; accessibility comes free.

4. Performance

  • Components are small and modular
  • Tree-shakeable
  • No runtime overhead beyond Radix UI
  • Use React.memo for frequently-rerendered components if needed

Framework-Specific Notes

Next.js

  • Use shadcn-ui@latest add form for React Hook Form integration
  • Combine with Server Actions for form submissions
  • Dark mode works via next-themes

Vite

  • Ensure tailwind.config.js includes component paths
  • Use Vite's HMR for fast development

Remix

  • Forms work with remix form actions
  • Use route transitions for optimistic updates

Common Customization Tasks

Changing Primary Color

Edit components.json during init or manually update CSS variables in globals.css.

Adding Custom Components

Create your own components in components/ui/ following shadcn/ui patterns:

// components/ui/my-component.tsx
import * as React from "react"

export interface MyComponentProps
  extends React.HTMLAttributes<HTMLDivElement> {}

const MyComponent = React.forwardRef<HTMLDivElement, MyComponentProps>(
  ({ className, ...props }, ref) => (
    <div
      ref={ref}
      className={className}
      {...props}
    />
  )
)
MyComponent.displayName = "MyComponent"

export { MyComponent }

Theming for Multiple Brands

Use CSS variable layers:

.brand-a {
  --primary: 220 90% 56%;
  --secondary: 0 0% 100%;
}

.brand-b {
  --primary: 0 100% 50%;
  --secondary: 200 100% 50%;
}

Validation & Forms

With React Hook Form + Zod

Best practice for complex forms with client-side validation:

npm install react-hook-form zod @hookform/resolvers

With TanStack Form

Alternative for advanced form requirements:

npm install @tanstack/react-form

Ask me for specific form patterns (login, signup, multi-step, etc.)

Troubleshooting

Components Not Styling Correctly

  • ✅ Verify Tailwind is configured in tailwind.config.js
  • ✅ Check components.json has correct path setting
  • ✅ Run npm install after adding components

TypeScript Errors

  • ✅ Ensure components are imported from /components/ui/name
  • ✅ Components have proper TypeScript support built-in

Form Validation Not Working

  • ✅ Install zod and @hookform/resolvers
  • ✅ Use zodResolver with useForm

Next Steps

For detailed guidance on specific tasks:

Resources

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Claude Code

28.95%
按下载量换算921

Antigravity

23.39%
按下载量换算744

OpenCode

19.8%
按下载量换算630

Gemini CLI

12.25%
按下载量换算390

windsurf

8.12%
按下载量换算258

Codex

3.23%
按下载量换算103

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills