Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add rules/ayimmam/pcic/shadcn-uigit clone --depth 1 https://github.com/ayimmam/PCICWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/rules/ayimmam/pcic/shadcn-ui)<a href="https://agentmods.dev/rules/ayimmam/pcic/shadcn-ui"><img src="https://agentmods.dev/badge/rules/ayimmam/pcic/shadcn-ui.svg" alt="Measured on agentmods" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00000 | $0.00269 |
| Opus 5 | $0.00000 | $0.00134 |
| Sonnet 5 | $0.00000 | $0.00054 |
| Haiku 4.5 | $0.00000 | $0.00027 |
Grade A, and why
shadcn-ui scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 3d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
What it actually says
Shadcn UI Usage
Available Primitives (in client/src/components/ui/)
Button, Input, Label, Card, Badge, Dialog, Select, Tabs, Table, Alert Dialog, Sheet, Separator, Textarea, Skeleton
Import Pattern
import { Button } from "@/components/ui/button";
import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card";
Custom Variants
Badge has extra variants beyond Shadcn defaults: success, warning, danger
<Badge variant="success">Active</Badge>
<Badge variant="warning">Warning</Badge>
<Badge variant="danger">Inactive</Badge>
Sheets vs Dialogs
- Sheet — side panel for detail views (MemberDetail, EventDetail, DecisionDetail, CandidateReview)
- Dialog — centered modal for create/edit forms and confirmations
Do NOT
- Install new Shadcn components without adding them to
client/src/components/ui/ - Use TypeScript syntax in UI components — this is a JSX-only project
- Use inline styles — always use Tailwind classes
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 3d ago First seen · 40 lines · 0 tokens per session scan A 2b509dd290f8
shadcn-ui is a cursor rule published in the GitHub repository ayimmam/PCIC (2 stars, last pushed 1mo ago), licensed Apache-2.0. It costs nothing until one of its globs matches a file; then it loads 269 tokens. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other cursor rules, from other repositories
01-code-style
Cursor rule "01-code-style" from refly-ai/refly, covering code style guidelines, typescript/javascript style, react performance optimization, error handling and css guidelines.
components
React components — shadcn/ui, RTL, theme, and client/server boundaries.
react-sot-storybook-parity
SOT component CSS ownership — Storybook preview must match live routes without per-page token overrides.
webview-ui
Skill Manager webview — React 19, VS Code messaging via acquireVsCodeApi, no Node APIs.
react-conventions
All UI via className={cn(...)} and Tailwind utilities. No CSS modules or co-located .css for normal components. Raw CSS belongs almost only in globals.css. Do not combine style={{ ... }} with Tailwind on the same node. See css-ui-enforcement.mdc.
cursorrules
Use functional components in React. Prefer Tailwind CSS classes.