From a6a9a3397c916a2dfb3651eb577a48ce56b4a8c6 Mon Sep 17 00:00:00 2001 From: Chris Tate Date: Thu, 4 Dec 2025 19:14:08 -0600 Subject: [PATCH] use shadcn components --- AGENTS.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/AGENTS.md b/AGENTS.md index 682fde85..51e82079 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -72,6 +72,16 @@ pnpm lint This ensures all code follows the project's formatting standards, type safety requirements, and linting rules, preventing issues in pull requests. +### Use shadcn CLI for UI Components + +**When adding UI components, check if a shadcn/ui component exists and install it via CLI instead of writing it manually.** + +```bash +pnpm dlx shadcn@latest add +``` + +Existing components are in `components/ui/`. See [shadcn/ui docs](https://ui.shadcn.com/) for available components. + ### CRITICAL: Never Run Dev Servers **DO NOT run development servers (e.g., `npm run dev`, `pnpm dev`, `next dev`) as they will conflict with other running instances.**