shadcn/ui
A framework for building ui, components and design systems. Components are added as source code to the user's project via the CLI.
IMPORTANT: Default shadcn runner: bunx --bun shadcn@latest. In pnpm repos, use pnpm dlx shadcn@latest; with npm, npx shadcn@latest; with Yarn, yarn dlx shadcn@latest. Detect via packageManager, then lockfile. Examples use Bun; substitute the project runner throughout, including the info --json step below.
Current Project Context
Select the package runner using the IMPORTANT line above, then load the
project config and installed components with <runner> info --json. With the
default Bun runner the context is already injected below:
!`bunx --bun shadcn@latest info --json`
The resulting JSON contains the project config and installed components. If
the injected result below is an error (e.g. Bun is not installed), run
<runner> info --json with your selected runner instead. Use
<runner> docs <component> to get documentation and example URLs for any
component.
Principles
- Use existing components first. Use
bunx --bun shadcn@latest search to check registries before writing custom UI. Check community registries too.
- Compose, don't reinvent. Settings page = Tabs + Card + form controls. Dashboard = Sidebar + Card + Chart + Table.
- Use built-in variants before custom styles.
variant="outline", size="sm", etc.
- Use semantic colors.
bg-primary, text-muted-foreground — never raw values like bg-blue-500.
Critical Rules
These rules are always enforced. Each links to a file with Incorrect/Correct code pairs.
Styling & Tailwind → styling.md
className for layout, not styling. Never override component colors or typography.
- No
space-x-* or space-y-*. Use flex with gap-*. For vertical stacks, flex flex-col gap-*.
- Use
size-* when width and height are equal. size-10 not w-10 h-10.
- Use
truncate shorthand. Not overflow-hidden text-ellipsis whitespace-nowrap.
- No manual
dark: color overrides. Use semantic tokens (bg-background, text-muted-foreground).
- Use
cn() for conditional classes. Don't write manual template literal ternaries.
- No manual
z-index on overlay components. Dialog, Sheet, Popover, etc. handle their own stacking.
Forms & Inputs → forms.md
- Forms use
FieldGroup + Field. Never use raw div with space-y-* or grid gap-* for form layout.
InputGroup uses InputGroupInput/InputGroupTextarea. Never raw Input/Textarea inside InputGroup.
- Buttons inside inputs use
InputGroup + InputGroupAddon.
- Option sets (2–7 choices) use
ToggleGroup. Don't loop Button with manual active state.
FieldSet + FieldLegend for grouping related checkboxes/radios. Don't use a div with a heading.
- Field validation uses
data-invalid + aria-invalid. data-invalid on Field, aria-invalid on the control. For disabled: data-disabled on Field, disabled on the control.
- Items always inside their Group.
SelectItem → SelectGroup. DropdownMenuItem → DropdownMenuGroup. CommandItem → CommandGroup.
- Use
asChild (radix) or render (base) for custom triggers. Check base field from bunx --bun shadcn@latest info. → base-vs-radix.md
- Dialog, Sheet, and Drawer always need a Title.
DialogTitle, SheetTitle, DrawerTitle required for accessibility. Use className="sr-only" if visually hidden.
- Use full Card composition.
CardHeader/CardTitle/CardDescription/CardContent/CardFooter. Don't dump everything in CardContent.
- Button has no
isPending/isLoading. Compose with Spinner + data-icon + disabled.
TabsTrigger must be inside TabsList. Never render triggers directly in Tabs.
Avatar always needs AvatarFallback. For when the image fails to load.
Use Components, Not Custom Markup → composition.md
- Use existing components before custom markup. Check if a component exists before writing a styled
div.
- Callouts use
Alert. Don't build custom styled divs.
- Empty states use
Empty. Don't build custom empty state markup.
- Toast follows the project base. Use
toast from the toast component for
Base UI projects. Use toast() from sonner for Radix and React Aria
projects.
- Use
Separator instead of <hr> or <div className="border-t">.
- Use
Skeleton for loading placeholders. No custom animate-pulse divs.
- Use
Badge instead of custom styled spans.
- Icons in
Button use data-icon. data-icon="inline-start" or data-icon="inline-end" on the icon.
- No sizing classes on icons inside components. Components handle icon sizing via CSS. No
size-4 or w-4 h-4.
- Pass icons as objects, not string keys.
icon={CheckIcon}, not a string lookup.
Chat & Messaging → chat.md
- Chat UI composes the chat primitives. Conversations use
MessageScroller, rows use Message, surfaces use Bubble. Never hand-rolled bubble divs or a raw scroll container.
MessageScroller owns scroll behavior. Streaming follow, anchoring, and jump-to-latest (MessageScrollerButton) are built in. Don't write a useStickToBottom/ResizeObserver hook.
- Attachments use
Attachment; system notes and dividers use Marker. Not Item cards or Separator + a label.
CLI
- Never decode preset codes or build preset URLs manually. Use
bunx --bun shadcn@latest preset decode <code>, preset url <code>, or preset open <code>. For project-aware preset detection, use bunx --bun shadcn@latest preset resolve.
- Apply preset codes directly with the CLI. Use
bunx --bun shadcn@latest apply <code> for existing projects, or bunx --bun shadcn@latest init --preset <code> when initializing.
Key Patterns
These are the most common patterns that differentiate correct shadcn/ui code. For edge cases, see the linked rule files above.
// Form layout: FieldGroup + Field, not div + Label.
<FieldGroup>
<Field>
<FieldLabel htmlFor="email">Email</FieldLabel>
<Input id="email" />
</Field>
</FieldGroup>
// Validation: data-invalid on Field, aria-invalid on the control.
<Field data-invalid>
<FieldLabel>Email</FieldLabel>
<Input aria-invalid />
<FieldDescription>Invalid email.</FieldDescription>
</Field>
// Icons in buttons: data-icon, no sizing classes.
<Button>
<SearchIcon data-icon="inline-start" />
Search
</Button>
// Spacing: gap-*, not space-y-*.
<div className="flex flex-col gap-4"> // correct
<div className="space-y-4"> // wrong
// Equal dimensions: size-*, not w-* h-*.
<Avatar className="size-10"> // correct
<Avatar className="w-10 h-10"> // wrong
// Status colors: Badge variants or semantic tokens, not raw colors.
<Badge variant="secondary">+20.1%</Badge> // correct
<span className="text-emerald-600">+20.1%</span> // wrong
Component Selection
| Need |
Use |
| Button/action |
Button with appropriate variant |
| Form inputs |
Input, Select, Combobox, Switch, Checkbox, RadioGroup, Textarea, InputOTP, Slider |
| Toggle between 2–5 options |
ToggleGroup + ToggleGroupItem |
| Data display |
Table, Card, Badge, Avatar |
| Navigation |
Sidebar, NavigationMenu, Breadcrumb, Tabs, Pagination |
| Overlays |
Dialog (modal), Sheet (side panel), Drawer (bottom sheet), AlertDialog (confirmation) |
| Feedback |
toast (Base UI), sonner (Radix/Aria), Alert, Progress, Skeleton, Spinner |
| Command palette |
Command inside Dialog |
| Charts |
Chart (wraps Recharts) |
| Layout |
Card, Separator, Resizable, ScrollArea, Accordion, Collapsible |
| Empty states |
Empty |
| Menus |
DropdownMenu, ContextMenu, Menubar |
| Tooltips/info |
Tooltip, HoverCard, Popover |
| Chat / conversation UI |
MessageScroller, Message, Bubble, Attachment, Marker |
Key Fields
The injected project context contains these key fields:
aliases → use the actual alias prefix for imports (e.g. @/, ~/), never hardcode.
isRSC → when true, components using useState, useEffect, event handlers, or browser APIs need "use client" at the top of the file. Always reference this field when advising on the directive.
tailwindVersion → "v4" uses @theme inline blocks; "v3" uses tailwind.config.js.
tailwindCssFile → the global CSS file where custom CSS variables are defined. Always edit this file, never create a new one.
style → component visual treatment (e.g. nova, vega).
base → primitive library (radix or base). Affects component APIs and available props.
iconLibrary → determines icon imports. Use lucide-react for lucide, @tabler/icons-react for tabler, etc. Never assume lucide-react.
resolvedPaths → exact file-system destinations for components, utils, hooks, etc.
framework → routing and file conventions (e.g. Next.js App Router vs Vite SPA).
packageManager → use this for any non-shadcn dependency installs (e.g. pnpm add date-fns vs npm install date-fns).
preset → resolved preset code and values for the current project. Use bunx --bun shadcn@latest preset resolve --json when you only need preset information.
See cli.md — info command for the full field reference.
Component Docs, Examples, and Usage
Run bunx --bun shadcn@latest docs <component> to get the URLs for a component's documentation, examples, and API reference. Fetch these URLs to get the actual content.
bunx --bun shadcn@latest docs button dialog select
When creating, fixing, debugging, or using a component, always run bunx --bun shadcn@latest docs and fetch the URLs first. This ensures you're working with the correct API and usage patterns rather than guessing.
Workflow
- Get project context — already injected above. Run
bunx --bun shadcn@latest info again if you need to refresh.
- Check installed components first — before running
add, always check the components list from project context or list the resolvedPaths.ui directory. Don't import components that haven't been added, and don't re-add ones already installed.
- Find components —
bunx --bun shadcn@latest search.
- Get docs and examples — run
bunx --bun shadcn@latest docs <component> to get URLs, then fetch them. Use bunx --bun shadcn@latest view to browse registry items you haven't installed. To preview changes to installed components, use bunx --bun shadcn@latest add --diff.
- Install or update —
bunx --bun shadcn@latest add. When updating existing components, use --dry-run and --diff to preview changes first (see Updating Components below).
- Fix imports in third-party components — After adding components from community registries (e.g.
@bundui, @magicui), check the added non-UI files for hardcoded import paths like @/components/ui/.... These won't match the project's actual aliases. Use bunx --bun shadcn@latest info to get the correct ui alias (e.g. @workspace/ui/components) and rewrite the imports accordingly. The CLI rewrites imports for its own UI files, but third-party registry components may use default paths that don't match the project.
- Review added components — After adding a component or block from any registry, always read the added files and verify they are correct. Check for missing sub-components (e.g.
SelectItem without SelectGroup), missing imports, incorrect composition, or violations of the Critical Rules. Also replace any icon imports with the project's iconLibrary from the project context (e.g. if the registry item uses lucide-react but the project uses hugeicons, swap the imports and icon names accordingly). Fix all issues before moving on.
- Registry must be explicit — When the user asks to add a block or component, do not guess the registry. If no registry is specified (e.g. user says "add a login block" without specifying
@shadcn, @tailark, owner/repo, etc.), ask which registry to use. Never default to a registry on behalf of the user.
- Switching presets — Ask the user first: overwrite, partial, merge, or skip?
- Inspect current preset:
bunx --bun shadcn@latest preset resolve. Use --json when you need structured values.
- Inspect incoming preset:
bunx --bun shadcn@latest preset decode <code>. Use preset url <code> or preset open <code> to share or open the preset builder.
- Overwrite:
bunx --bun shadcn@latest apply <code>. Overwrites detected components, fonts, and CSS variables.
- Partial:
bunx --bun shadcn@latest apply <code> --only theme,font. Updates only the selected preset parts without reinstalling UI components. Supported values are theme and font; comma-separated combinations are allowed. icon is intentionally not supported, because icon changes may require full component reinstall and transforms.
- Merge:
bunx --bun shadcn@latest init --preset <code> --force --no-reinstall, then run bunx --bun shadcn@latest info to list installed components, then for each installed component use --dry-run and --diff to smart merge it individually.
- Skip:
bunx --bun shadcn@latest init --preset <code> --force --no-reinstall. Only updates config and CSS, leaves components as-is.
- Important: Always run preset commands inside the user's project directory.
apply only works in an existing project with a components.json file. The CLI automatically preserves the current base (base vs radix) from components.json. If you must use a scratch/temp directory (e.g. for --dry-run comparisons), pass --base <current-base> explicitly — preset codes do not encode the base.
Updating Components
When the user asks to update a component from upstream while keeping their local changes, use --dry-run and --diff to intelligently merge. NEVER fetch raw files from GitHub manually — always use the CLI.
- Run
bunx --bun shadcn@latest add <component> --dry-run to see all files that would be affected.
- For each file, run
bunx --bun shadcn@latest add <component> --diff <file> to see what changed upstream vs local.
- Decide per file based on the diff:
- No local changes → safe to overwrite.
- Has local changes → read the local file, analyze the diff, and apply upstream updates while preserving local modifications.
- User says "just update everything" → use
--overwrite, but confirm first.
- Never use
--overwrite without the user's explicit approval.
Quick Reference
# Create a new project.
bunx --bun shadcn@latest init --name my-app --preset base-nova
bunx --bun shadcn@latest init --name my-app --preset a2r6bw --template vite
# Create a monorepo project.
bunx --bun shadcn@latest init --name my-app --preset base-nova --monorepo
bunx --bun shadcn@latest init --name my-app --preset base-nova --template next --monorepo
# Initialize existing project.
bunx --bun shadcn@latest init --preset base-nova
bunx --bun shadcn@latest init --defaults # shortcut: --template=next --preset=nova (base style implied)
# Apply a preset to an existing project.
bunx --bun shadcn@latest apply a2r6bw
bunx --bun shadcn@latest apply a2r6bw --only theme
bunx --bun shadcn@latest apply a2r6bw --only font
bunx --bun shadcn@latest apply a2r6bw --only theme,font
# Inspect preset codes and project preset state.
bunx --bun shadcn@latest preset decode a2r6bw
bunx --bun shadcn@latest preset url a2r6bw
bunx --bun shadcn@latest preset open a2r6bw
bunx --bun shadcn@latest preset resolve
bunx --bun shadcn@latest preset resolve --json
# Add components.
bunx --bun shadcn@latest add button card dialog
bunx --bun shadcn@latest add @magicui/shimmer-button
bunx --bun shadcn@latest add owner/repo/item
bunx --bun shadcn@latest add --all
# Preview changes before adding/updating.
bunx --bun shadcn@latest add button --dry-run
bunx --bun shadcn@latest add button --diff button.tsx
bunx --bun shadcn@latest add @acme/form --view button.tsx
bunx --bun shadcn@latest add owner/repo/item --dry-run
# Search registries.
bunx --bun shadcn@latest search @shadcn -q "sidebar"
bunx --bun shadcn@latest search @tailark -q "stats"
bunx --bun shadcn@latest search owner/repo -q "login"
bunx --bun shadcn@latest search # all configured registries
bunx --bun shadcn@latest search @shadcn -q "menu" -t ui # filter by item type
# Get component docs and example URLs.
bunx --bun shadcn@latest docs button dialog select
# View registry item details (for items not yet installed).
bunx --bun shadcn@latest view @shadcn/button
bunx --bun shadcn@latest view owner/repo/item
Named presets: nova, vega, maia, lyra, mira, luma
Templates: next, vite, start, react-router, astro (all support --monorepo) and laravel (not supported for monorepo)
Preset codes: Version-prefixed base62 strings (e.g. a2r6bw or b0), from ui.shadcn.com.
Detailed References
Layout note: this skill vendors the upstream shadcn skill layout, so long-form
material lives in top-level cli.md, registry.md, customization.md, and rules/
instead of references/. This is intentional: it keeps future upstream updates mergeable.
Do not "fix" it by moving files into references/.
- rules/forms.md — FieldGroup, Field, InputGroup, ToggleGroup, FieldSet, validation states
- rules/composition.md — Groups, overlays, Card, Tabs, Avatar, Alert, Empty, Toast, Separator, Skeleton, Badge, Button loading
- rules/chat.md — MessageScroller, Message, Bubble, Attachment, Marker; streaming, anchoring, jump-to-latest
- rules/icons.md — data-icon, icon sizing, passing icons as objects
- rules/styling.md — Semantic colors, variants, className, spacing, size, truncate, dark mode, cn(), z-index
- rules/base-vs-radix.md — asChild vs render, Select, ToggleGroup, Slider, Accordion
- cli.md — Commands, flags, presets, templates
- registry.md — Authoring source registries,
include, item definitions, dependencies, GitHub registry rules
- customization.md — Theming, CSS variables, extending components
1---2name: shadcn3description: Manage shadcn/ui components: add, search, fix, style and compose, with registry and component docs. Applies to any project with a components.json. Triggers on "shadcn init" or a --preset code.4---56# shadcn/ui78A framework for building ui, components and design systems. Components are added as source code to the user's project via the CLI.910> **IMPORTANT:** Default shadcn runner: `bunx --bun shadcn@latest`. In pnpm repos, use `pnpm dlx shadcn@latest`; with npm, `npx shadcn@latest`; with Yarn, `yarn dlx shadcn@latest`. Detect via `packageManager`, then lockfile. Examples use Bun; substitute the project runner throughout, including the `info --json` step below.1112## Current Project Context1314Select the package runner using the IMPORTANT line above, then load the15project config and installed components with `<runner> info --json`. With the16default Bun runner the context is already injected below:1718```json19!`bunx --bun shadcn@latest info --json`20```2122The resulting JSON contains the project config and installed components. If23the injected result below is an error (e.g. Bun is not installed), run24`<runner> info --json` with your selected runner instead. Use25`<runner> docs <component>` to get documentation and example URLs for any26component.27## Principles28291. **Use existing components first.** Use `bunx --bun shadcn@latest search` to check registries before writing custom UI. Check community registries too.302. **Compose, don't reinvent.** Settings page = Tabs + Card + form controls. Dashboard = Sidebar + Card + Chart + Table.313. **Use built-in variants before custom styles.** `variant="outline"`, `size="sm"`, etc.324. **Use semantic colors.** `bg-primary`, `text-muted-foreground` — never raw values like `bg-blue-500`.3334## Critical Rules3536These rules are **always enforced**. Each links to a file with Incorrect/Correct code pairs.3738### Styling & Tailwind → [styling.md](./rules/styling.md)3940- **`className` for layout, not styling.** Never override component colors or typography.41- **No `space-x-*` or `space-y-*`.** Use `flex` with `gap-*`. For vertical stacks, `flex flex-col gap-*`.42- **Use `size-*` when width and height are equal.** `size-10` not `w-10 h-10`.43- **Use `truncate` shorthand.** Not `overflow-hidden text-ellipsis whitespace-nowrap`.44- **No manual `dark:` color overrides.** Use semantic tokens (`bg-background`, `text-muted-foreground`).45- **Use `cn()` for conditional classes.** Don't write manual template literal ternaries.46- **No manual `z-index` on overlay components.** Dialog, Sheet, Popover, etc. handle their own stacking.4748### Forms & Inputs → [forms.md](./rules/forms.md)4950- **Forms use `FieldGroup` + `Field`.** Never use raw `div` with `space-y-*` or `grid gap-*` for form layout.51- **`InputGroup` uses `InputGroupInput`/`InputGroupTextarea`.** Never raw `Input`/`Textarea` inside `InputGroup`.52- **Buttons inside inputs use `InputGroup` + `InputGroupAddon`.**53- **Option sets (2–7 choices) use `ToggleGroup`.** Don't loop `Button` with manual active state.54- **`FieldSet` + `FieldLegend` for grouping related checkboxes/radios.** Don't use a `div` with a heading.55- **Field validation uses `data-invalid` + `aria-invalid`.** `data-invalid` on `Field`, `aria-invalid` on the control. For disabled: `data-disabled` on `Field`, `disabled` on the control.5657### Component Structure → [composition.md](./rules/composition.md)5859- **Items always inside their Group.** `SelectItem` → `SelectGroup`. `DropdownMenuItem` → `DropdownMenuGroup`. `CommandItem` → `CommandGroup`.60- **Use `asChild` (radix) or `render` (base) for custom triggers.** Check `base` field from `bunx --bun shadcn@latest info`. → [base-vs-radix.md](./rules/base-vs-radix.md)61- **Dialog, Sheet, and Drawer always need a Title.** `DialogTitle`, `SheetTitle`, `DrawerTitle` required for accessibility. Use `className="sr-only"` if visually hidden.62- **Use full Card composition.** `CardHeader`/`CardTitle`/`CardDescription`/`CardContent`/`CardFooter`. Don't dump everything in `CardContent`.63- **Button has no `isPending`/`isLoading`.** Compose with `Spinner` + `data-icon` + `disabled`.64- **`TabsTrigger` must be inside `TabsList`.** Never render triggers directly in `Tabs`.65- **`Avatar` always needs `AvatarFallback`.** For when the image fails to load.6667### Use Components, Not Custom Markup → [composition.md](./rules/composition.md)6869- **Use existing components before custom markup.** Check if a component exists before writing a styled `div`.70- **Callouts use `Alert`.** Don't build custom styled divs.71- **Empty states use `Empty`.** Don't build custom empty state markup.72- **Toast follows the project base.** Use `toast` from the `toast` component for73 Base UI projects. Use `toast()` from `sonner` for Radix and React Aria74 projects.75- **Use `Separator`** instead of `<hr>` or `<div className="border-t">`.76- **Use `Skeleton`** for loading placeholders. No custom `animate-pulse` divs.77- **Use `Badge`** instead of custom styled spans.7879### Icons → [icons.md](./rules/icons.md)8081- **Icons in `Button` use `data-icon`.** `data-icon="inline-start"` or `data-icon="inline-end"` on the icon.82- **No sizing classes on icons inside components.** Components handle icon sizing via CSS. No `size-4` or `w-4 h-4`.83- **Pass icons as objects, not string keys.** `icon={CheckIcon}`, not a string lookup.8485### Chat & Messaging → [chat.md](./rules/chat.md)8687- **Chat UI composes the chat primitives.** Conversations use `MessageScroller`, rows use `Message`, surfaces use `Bubble`. Never hand-rolled bubble `div`s or a raw scroll container.88- **`MessageScroller` owns scroll behavior.** Streaming follow, anchoring, and jump-to-latest (`MessageScrollerButton`) are built in. Don't write a `useStickToBottom`/`ResizeObserver` hook.89- **Attachments use `Attachment`; system notes and dividers use `Marker`.** Not `Item` cards or `Separator` + a label.9091### CLI9293- **Never decode preset codes or build preset URLs manually.** Use `bunx --bun shadcn@latest preset decode <code>`, `preset url <code>`, or `preset open <code>`. For project-aware preset detection, use `bunx --bun shadcn@latest preset resolve`.94- **Apply preset codes directly with the CLI.** Use `bunx --bun shadcn@latest apply <code>` for existing projects, or `bunx --bun shadcn@latest init --preset <code>` when initializing.9596## Key Patterns9798These are the most common patterns that differentiate correct shadcn/ui code. For edge cases, see the linked rule files above.99100```tsx101// Form layout: FieldGroup + Field, not div + Label.102<FieldGroup>103 <Field>104 <FieldLabel htmlFor="email">Email</FieldLabel>105 <Input id="email" />106 </Field>107</FieldGroup>108109// Validation: data-invalid on Field, aria-invalid on the control.110<Field data-invalid>111 <FieldLabel>Email</FieldLabel>112 <Input aria-invalid />113 <FieldDescription>Invalid email.</FieldDescription>114</Field>115116// Icons in buttons: data-icon, no sizing classes.117<Button>118 <SearchIcon data-icon="inline-start" />119 Search120</Button>121122// Spacing: gap-*, not space-y-*.123<div className="flex flex-col gap-4"> // correct124<div className="space-y-4"> // wrong125126// Equal dimensions: size-*, not w-* h-*.127<Avatar className="size-10"> // correct128<Avatar className="w-10 h-10"> // wrong129130// Status colors: Badge variants or semantic tokens, not raw colors.131<Badge variant="secondary">+20.1%</Badge> // correct132<span className="text-emerald-600">+20.1%</span> // wrong133```134135## Component Selection136137| Need | Use |138| -------------------------- | --------------------------------------------------------------------------------------------------- |139| Button/action | `Button` with appropriate variant |140| Form inputs | `Input`, `Select`, `Combobox`, `Switch`, `Checkbox`, `RadioGroup`, `Textarea`, `InputOTP`, `Slider` |141| Toggle between 2–5 options | `ToggleGroup` + `ToggleGroupItem` |142| Data display | `Table`, `Card`, `Badge`, `Avatar` |143| Navigation | `Sidebar`, `NavigationMenu`, `Breadcrumb`, `Tabs`, `Pagination` |144| Overlays | `Dialog` (modal), `Sheet` (side panel), `Drawer` (bottom sheet), `AlertDialog` (confirmation) |145| Feedback | `toast` (Base UI), `sonner` (Radix/Aria), `Alert`, `Progress`, `Skeleton`, `Spinner` |146| Command palette | `Command` inside `Dialog` |147| Charts | `Chart` (wraps Recharts) |148| Layout | `Card`, `Separator`, `Resizable`, `ScrollArea`, `Accordion`, `Collapsible` |149| Empty states | `Empty` |150| Menus | `DropdownMenu`, `ContextMenu`, `Menubar` |151| Tooltips/info | `Tooltip`, `HoverCard`, `Popover` |152| Chat / conversation UI | `MessageScroller`, `Message`, `Bubble`, `Attachment`, `Marker` |153154## Key Fields155156The injected project context contains these key fields:157158- **`aliases`** → use the actual alias prefix for imports (e.g. `@/`, `~/`), never hardcode.159- **`isRSC`** → when `true`, components using `useState`, `useEffect`, event handlers, or browser APIs need `"use client"` at the top of the file. Always reference this field when advising on the directive.160- **`tailwindVersion`** → `"v4"` uses `@theme inline` blocks; `"v3"` uses `tailwind.config.js`.161- **`tailwindCssFile`** → the global CSS file where custom CSS variables are defined. Always edit this file, never create a new one.162- **`style`** → component visual treatment (e.g. `nova`, `vega`).163- **`base`** → primitive library (`radix` or `base`). Affects component APIs and available props.164- **`iconLibrary`** → determines icon imports. Use `lucide-react` for `lucide`, `@tabler/icons-react` for `tabler`, etc. Never assume `lucide-react`.165- **`resolvedPaths`** → exact file-system destinations for components, utils, hooks, etc.166- **`framework`** → routing and file conventions (e.g. Next.js App Router vs Vite SPA).167- **`packageManager`** → use this for any non-shadcn dependency installs (e.g. `pnpm add date-fns` vs `npm install date-fns`).168- **`preset`** → resolved preset code and values for the current project. Use `bunx --bun shadcn@latest preset resolve --json` when you only need preset information.169170See [cli.md — `info` command](./cli.md) for the full field reference.171172## Component Docs, Examples, and Usage173174Run `bunx --bun shadcn@latest docs <component>` to get the URLs for a component's documentation, examples, and API reference. Fetch these URLs to get the actual content.175176```bash177bunx --bun shadcn@latest docs button dialog select178```179180**When creating, fixing, debugging, or using a component, always run `bunx --bun shadcn@latest docs` and fetch the URLs first.** This ensures you're working with the correct API and usage patterns rather than guessing.181182## Workflow1831841. **Get project context** — already injected above. Run `bunx --bun shadcn@latest info` again if you need to refresh.1852. **Check installed components first** — before running `add`, always check the `components` list from project context or list the `resolvedPaths.ui` directory. Don't import components that haven't been added, and don't re-add ones already installed.1863. **Find components** — `bunx --bun shadcn@latest search`.1874. **Get docs and examples** — run `bunx --bun shadcn@latest docs <component>` to get URLs, then fetch them. Use `bunx --bun shadcn@latest view` to browse registry items you haven't installed. To preview changes to installed components, use `bunx --bun shadcn@latest add --diff`.1885. **Install or update** — `bunx --bun shadcn@latest add`. When updating existing components, use `--dry-run` and `--diff` to preview changes first (see [Updating Components](#updating-components) below).1896. **Fix imports in third-party components** — After adding components from community registries (e.g. `@bundui`, `@magicui`), check the added non-UI files for hardcoded import paths like `@/components/ui/...`. These won't match the project's actual aliases. Use `bunx --bun shadcn@latest info` to get the correct `ui` alias (e.g. `@workspace/ui/components`) and rewrite the imports accordingly. The CLI rewrites imports for its own UI files, but third-party registry components may use default paths that don't match the project.1907. **Review added components** — After adding a component or block from any registry, **always read the added files and verify they are correct**. Check for missing sub-components (e.g. `SelectItem` without `SelectGroup`), missing imports, incorrect composition, or violations of the [Critical Rules](#critical-rules). Also replace any icon imports with the project's `iconLibrary` from the project context (e.g. if the registry item uses `lucide-react` but the project uses `hugeicons`, swap the imports and icon names accordingly). Fix all issues before moving on.1918. **Registry must be explicit** — When the user asks to add a block or component, **do not guess the registry**. If no registry is specified (e.g. user says "add a login block" without specifying `@shadcn`, `@tailark`, `owner/repo`, etc.), ask which registry to use. Never default to a registry on behalf of the user.1929. **Switching presets** — Ask the user first: **overwrite**, **partial**, **merge**, or **skip**?193 - **Inspect current preset**: `bunx --bun shadcn@latest preset resolve`. Use `--json` when you need structured values.194 - **Inspect incoming preset**: `bunx --bun shadcn@latest preset decode <code>`. Use `preset url <code>` or `preset open <code>` to share or open the preset builder.195 - **Overwrite**: `bunx --bun shadcn@latest apply <code>`. Overwrites detected components, fonts, and CSS variables.196 - **Partial**: `bunx --bun shadcn@latest apply <code> --only theme,font`. Updates only the selected preset parts without reinstalling UI components. Supported values are `theme` and `font`; comma-separated combinations are allowed. `icon` is intentionally not supported, because icon changes may require full component reinstall and transforms.197 - **Merge**: `bunx --bun shadcn@latest init --preset <code> --force --no-reinstall`, then run `bunx --bun shadcn@latest info` to list installed components, then for each installed component use `--dry-run` and `--diff` to [smart merge](#updating-components) it individually.198 - **Skip**: `bunx --bun shadcn@latest init --preset <code> --force --no-reinstall`. Only updates config and CSS, leaves components as-is.199 - **Important**: Always run preset commands inside the user's project directory. `apply` only works in an existing project with a `components.json` file. The CLI automatically preserves the current base (`base` vs `radix`) from `components.json`. If you must use a scratch/temp directory (e.g. for `--dry-run` comparisons), pass `--base <current-base>` explicitly — preset codes do not encode the base.200201## Updating Components202203When the user asks to update a component from upstream while keeping their local changes, use `--dry-run` and `--diff` to intelligently merge. **NEVER fetch raw files from GitHub manually — always use the CLI.**2042051. Run `bunx --bun shadcn@latest add <component> --dry-run` to see all files that would be affected.2062. For each file, run `bunx --bun shadcn@latest add <component> --diff <file>` to see what changed upstream vs local.2073. Decide per file based on the diff:208 - No local changes → safe to overwrite.209 - Has local changes → read the local file, analyze the diff, and apply upstream updates while preserving local modifications.210 - User says "just update everything" → use `--overwrite`, but confirm first.2114. **Never use `--overwrite` without the user's explicit approval.**212213## Quick Reference214215```bash216# Create a new project.217bunx --bun shadcn@latest init --name my-app --preset base-nova218bunx --bun shadcn@latest init --name my-app --preset a2r6bw --template vite219220# Create a monorepo project.221bunx --bun shadcn@latest init --name my-app --preset base-nova --monorepo222bunx --bun shadcn@latest init --name my-app --preset base-nova --template next --monorepo223224# Initialize existing project.225bunx --bun shadcn@latest init --preset base-nova226bunx --bun shadcn@latest init --defaults # shortcut: --template=next --preset=nova (base style implied)227228# Apply a preset to an existing project.229bunx --bun shadcn@latest apply a2r6bw230bunx --bun shadcn@latest apply a2r6bw --only theme231bunx --bun shadcn@latest apply a2r6bw --only font232bunx --bun shadcn@latest apply a2r6bw --only theme,font233234# Inspect preset codes and project preset state.235bunx --bun shadcn@latest preset decode a2r6bw236bunx --bun shadcn@latest preset url a2r6bw237bunx --bun shadcn@latest preset open a2r6bw238bunx --bun shadcn@latest preset resolve239bunx --bun shadcn@latest preset resolve --json240241# Add components.242bunx --bun shadcn@latest add button card dialog243bunx --bun shadcn@latest add @magicui/shimmer-button244bunx --bun shadcn@latest add owner/repo/item245bunx --bun shadcn@latest add --all246247# Preview changes before adding/updating.248bunx --bun shadcn@latest add button --dry-run249bunx --bun shadcn@latest add button --diff button.tsx250bunx --bun shadcn@latest add @acme/form --view button.tsx251bunx --bun shadcn@latest add owner/repo/item --dry-run252253# Search registries.254bunx --bun shadcn@latest search @shadcn -q "sidebar"255bunx --bun shadcn@latest search @tailark -q "stats"256bunx --bun shadcn@latest search owner/repo -q "login"257bunx --bun shadcn@latest search # all configured registries258bunx --bun shadcn@latest search @shadcn -q "menu" -t ui # filter by item type259260# Get component docs and example URLs.261bunx --bun shadcn@latest docs button dialog select262263# View registry item details (for items not yet installed).264bunx --bun shadcn@latest view @shadcn/button265bunx --bun shadcn@latest view owner/repo/item266```267268**Named presets:** `nova`, `vega`, `maia`, `lyra`, `mira`, `luma`269**Templates:** `next`, `vite`, `start`, `react-router`, `astro` (all support `--monorepo`) and `laravel` (not supported for monorepo)270**Preset codes:** Version-prefixed base62 strings (e.g. `a2r6bw` or `b0`), from [ui.shadcn.com](https://ui.shadcn.com).271272## Detailed References273274> **Layout note:** this skill vendors the upstream shadcn skill layout, so long-form275> material lives in top-level `cli.md`, `registry.md`, `customization.md`, and `rules/`276> instead of `references/`. This is intentional: it keeps future upstream updates mergeable.277> Do not "fix" it by moving files into `references/`.278279- [rules/forms.md](./rules/forms.md) — FieldGroup, Field, InputGroup, ToggleGroup, FieldSet, validation states280- [rules/composition.md](./rules/composition.md) — Groups, overlays, Card, Tabs, Avatar, Alert, Empty, Toast, Separator, Skeleton, Badge, Button loading281- [rules/chat.md](./rules/chat.md) — MessageScroller, Message, Bubble, Attachment, Marker; streaming, anchoring, jump-to-latest282- [rules/icons.md](./rules/icons.md) — data-icon, icon sizing, passing icons as objects283- [rules/styling.md](./rules/styling.md) — Semantic colors, variants, className, spacing, size, truncate, dark mode, cn(), z-index284- [rules/base-vs-radix.md](./rules/base-vs-radix.md) — asChild vs render, Select, ToggleGroup, Slider, Accordion285- [cli.md](./cli.md) — Commands, flags, presets, templates286- [registry.md](./registry.md) — Authoring source registries, `include`, item definitions, dependencies, GitHub registry rules287- [customization.md](./customization.md) — Theming, CSS variables, extending components