Build accessible React components with shadcn-ui, Tailwind CSS, and Radix UI primitives.
Works with
Supports 50+ pre-built components across forms, layouts, dialogs, tables, data display, and feedback patterns, installable via CLI or natural language requests
Works with Next.js, Vite, Remix, Astro, Laravel, Gatsby, and React Router; integrates with shadcn MCP server for component discovery
All components use Tailwind CSS for styling with built-in dark mode, CSS variable theming, and component v
AI-first code editor with Composer
Before installing skills in Cursor, ensure your development environment meets these requirements:
node --versionshadcn-ui-expertExecute the skills CLI command in your project's root directory to begin installation:
Fetches shadcn-ui-expert from majesteitbart/talentmatcher and configures it for Cursor.
The CLI shows a list of agents. Use arrow keys and space to select Cursor:
Confirm successful installation by checking the skill directory location:
Restart Cursor to activate shadcn-ui-expert. Access via /shadcn-ui-expert in your agent's command palette.
We perform automated surface-level scans (Gen AI Scanner, Socket, Snyk) during installation. These checks detect common vulnerabilities but do not guarantee complete security. Always review skill source code and verify the publisher's reputation before production use.
Skills execute code in your environment. Always review source, verify the publisher, and test in isolation before production.
Submit your Claude Code skill and start earning
Automate repetitive workflows and reduce manual effort
Example
Generate reports, summarize documents, draft communications
Save 3-5 hours per week on routine tasks
Learn new skills, understand complex topics, get expert guidance
Example
Explain concepts, provide examples, suggest learning resources
Accelerate learning and skill development by 2x
Enhance output quality through reviews, suggestions, and refinements
Example
Review drafts, suggest improvements, catch errors
Improve work quality by 30-40% with less effort
0
total installs
0
this week
1
GitHub stars
0
upvotes
Run in your terminal
0
installs
0
this week
1
stars
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.
First, initialize shadcn-ui in your project:
npx shadcn-ui@latest init
This creates a components.json file for configuration. Choose your framework:
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.
Use for: Data collection, user input, validation
form - Complex forms with React Hook Forminput - Text fieldstextarea - Multi-line textselect - Dropdown selectionscheckbox - Boolean inputsradio-group - Single selection from optionsswitch - Toggle boolean statesdate-picker - Date selectioncombobox - Searchable select with autocompleteUse for: App structure, navigation flows, content organization
sidebar - Collapsible side navigationtabs - Tabbed contentaccordion - Collapsible sectionsbreadcrumb - Navigation pathnavigation-menu - Dropdown menusscroll-area - Custom scrollable regionsUse for: Modals, confirmations, floating content
dialog - Modal dialogsalert-dialog - Confirmation promptsdrawer - Mobile-friendly side panelspopover - Floating popoverstooltip - Hover informationdropdown-menu - Menu dropdownscontext-menu - Right-click menusUse for: Showing structured data
table - Basic HTML tablesdata-table - Advanced tables with sorting/filtering/paginationavatar - User profile imagesbadge - Status labelscard - Content containersUse for: User feedback, loading states, alerts
alert - Alert messagestoast - Notificationsprogress - Progress barsskeleton - Loading placeholdersspinner - Loading indicatorsAsk yourself these questions to choose the right component:
What is the user interacting with?
inputselect or comboboxcheckbox or switchformHow should it be displayed?
input, selectdialogdrawertooltipWhat's the context?
field component with formbuttondata-tableDoes it need validation?
form + field + React Hook Forminput, select)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="[email protected]" {...field} />
</FormControl>
</FormItem>
)}
/>
<Button type="submit">Submit</Button>
</form>
</Form>
)
}
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><Prerequisites
Time Estimate
15-45 minutes depending on use case complexity
Steps
Common Pitfalls
✓ Do
✗ Don't
💡 Pro Tips
✓ Use when
Use when skill capabilities match your task, clear ROI on time saved, and you can validate outputs. Best for repetitive tasks, learning, and quality improvement.
✗ Avoid when
Avoid when task requires deep expertise you can't validate, involves sensitive decisions, or when learning process is more valuable than speed of completion.
sickn33/antigravity-awesome-skills
erichowens/some_claude_skills
erichowens/some_claude_skills
anthropics/claude-code
mblode/agent-skills
github/awesome-copilot
Keeps context tight: shadcn-ui-expert is the kind of skill you can hand to a new teammate without a long onboarding doc.
shadcn-ui-expert is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.
Useful defaults in shadcn-ui-expert — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.
shadcn-ui-expert has been reliable in day-to-day use. Documentation quality is above average for community skills.
shadcn-ui-expert is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.
Keeps context tight: shadcn-ui-expert is the kind of skill you can hand to a new teammate without a long onboarding doc.
shadcn-ui-expert has been reliable in day-to-day use. Documentation quality is above average for community skills.
Keeps context tight: shadcn-ui-expert is the kind of skill you can hand to a new teammate without a long onboarding doc.
Useful defaults in shadcn-ui-expert — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.
We added shadcn-ui-expert from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.
showing 1-10 of 48