Agent skill

setup-shadcn

Set up Shadcn/UI based on Base UI headless components

Stars 163
Forks 31

Install this agent skill to your Project

npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/data/setup-shadcn

SKILL.md

Set up Shadcn/UI with Base UI

This skill sets up Shadcn/UI using Base UI headless components instead of the default Radix UI primitives.

Why Base UI?

Base UI (from MUI) provides unstyled, accessible React components similar to Radix UI. This approach gives you Shadcn's styling conventions while using Base UI's headless primitives.

Setup Steps

1. Initialize Shadcn/UI

Run the default init command to create basic configuration files:

bash
pnpx shadcn@latest init

Let the user to choose preferred base color (neutral, gray, zinc, stone, slate)

2. Install Base UI

Install the Base UI package. Ensure to use @base-ui/react (not @base-ui-components/react)

bash
pnpm add @base-ui/react

3. Remove Radix UI Dependencies

After initialization, remove any Radix UI packages that were installed:

bash
pnpm remove @radix-ui/react-*

Or selectively remove only the primitives you'll replace with Base UI equivalents.

4. Update components.json

Modify components.json to reflect the Base UI approach:

json
{
  "$schema": "https://ui.shadcn.com/schema.json",
  "style": "base-{vega|nova|maia|lyra|mira}",
  // ...
  "iconLibrary": "lucide"
}

Ask the user which style to pick from the available Base UI styles.

Notes

  • Not all Radix primitives have direct Base UI equivalents - check Base UI documentation for available components
  • Base UI components may have slightly different APIs; adjust component implementations accordingly
  • Refer to Base UI documentation for component usage details

Didn't find tool you were looking for?

Be as detailed as possible for better results