Claude-code-minoan shadcn
install
source · Clone the upstream repo
git clone https://github.com/tdimino/claude-code-minoan
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/tdimino/claude-code-minoan "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/design-media/shadcn" ~/.claude/skills/tdimino-claude-code-minoan-shadcn && rm -rf "$T"
manifest:
skills/design-media/shadcn/SKILL.mdsource content
Install, customize, and compose shadcn/ui components with design-system awareness. shadcn is a code distribution system — components are source files you own, not packages.
Workflow
Every shadcn interaction follows four steps: Orient, Install, Refine, Verify.
1. Orient
Read project state before any CLI operation. Run
npx shadcn@latest info to get framework, installed components, aliases, icon library, and base library. Read components.json directly for theme config. Never guess configuration.
2. Install
Add components via CLI, never by copying from docs manually.
npx shadcn@latest add button card dialog # Multiple at once npx shadcn@latest add @namespace/component # From custom registry npx shadcn@latest add --dry-run button # Preview before writing
Before re-adding an existing component, run
npx shadcn@latest diff <name> to see upstream changes. Commit local customizations first — add overwrites files.
3. Refine
This is where craft lives. After every
add, audit the component against the project's design system:
- Typography: Does it use the project's font variables and scale? Replace any hardcoded font sizes.
- Color tokens: Does it reference the project's CSS custom properties? Convert any raw color values to semantic tokens.
- Spacing rhythm: Does it follow the project's spacing scale? Harmonize padding and margins.
- Border radius: Does it use
from the theme? Shadcn sets this globally.--radius - Animation: Does it use
classes, nottw-animate-css
?tailwindcss-animate - Composition: Create wrapper components that compose shadcn primitives. Edit base components only for structural changes.
When
minoan-frontend-design is active, translate its creative direction into shadcn theme variables and component customizations.
4. Verify
Build the project to catch type errors. Visually inspect the component in context. Check dark mode. Check mobile.
Tailwind v4 Contract
shadcn v4 uses OKLCH color space with
@theme inline — not HSL, not tailwind.config.ts.
:root { --primary: oklch(0.205 0.03 264.05); --primary-foreground: oklch(0.985 0 0); } @theme inline { --color-primary: var(--primary); --color-primary-foreground: var(--primary-foreground); }
Leave
tailwind.config blank in components.json for v4 projects. Use data-slot attributes for targeted styling. Use React.ComponentProps<> — forwardRef is removed.
Theming
Colors follow
background + foreground pairs. The background suffix is omitted for the primary role:
--primary (background), --primary-foreground (text on that background).
Extend with custom semantic tokens by adding both the CSS variable and the
@theme inline mapping:
:root { --warning: oklch(0.84 0.16 84); --warning-foreground: oklch(0.14 0.04 84); } @theme inline { --color-warning: var(--warning); --color-warning-foreground: var(--warning-foreground); }
Use
cn() (clsx + tailwind-merge) for all class name composition.
References
Consult
references/ on demand:
— Full command reference, flags, monorepo patterns. Read for any CLI operation.cli-v4-reference.md
— Configuration schema with all fields. Read when initializing or reconfiguring.components-json-schema.md
— OKLCH color system, CSS variable conventions, dark mode, custom colors. Read when theming.theming-oklch.md
— Custom registry creation, namespacing, auth, item types. Read when building registries.registry-authoring.md
— Breaking changes, upgrade path, tw-animate-css, data-slot. Read when migrating or troubleshooting.tailwind-v4-migration.md
— 59 components by category. Read when choosing what to install.component-inventory.md
— Wrapper composition, data-slot styling, diff tracking. Read when customizing components.customization-patterns.md