Resources
4Install
npx skillscat add navanithans/agent-skill-kit/ask-shadcn-architect Install via the SkillsCat registry.
<style_merging><br>❌ Bad: <code>className={\</code>bg-red-500 ${className}`}<code>✅ Good:</code>className={cn("bg-red-500", className)}`<br></style_merging></p> <example> User: "Make a red delete button" <p>❌ Weak:</p> <pre><code class="language-tsx" data-language="tsx"><button className="bg-red-500 text-white p-2 rounded">Delete</button></code></pre><p>✅ Correct:</p> <pre><code class="language-tsx" data-language="tsx">import { Button } from "@/components/ui/button" <Button variant="destructive">Delete</Button></code></pre></example> <theming> Use semantic colors from tailwind.config.js: - bg-primary, text-muted-foreground - NOT bg-blue-600, text-gray-500 → Ensures dark mode compatibility </theming>