tangerine: Skill for Claude Code

.agents/skills/shadcn/SKILL.md

shadcn is a skill for Claude Code, Codex from dinhtungdu/tangerine. It costs 90 tokens per session (4,411 once invoked), scanned A, a copy of shadcn, MIT.

A guide and toolset for shadcn/ui, a system that adds interface components as source code to a project.

In plain words
What is it for?
Use it to add, search, repair, debug, style, and combine shadcn/ui components and presets.
Why use it?
It helps locate the right project configuration and documentation, especially when the project is a monorepo—a repository containing multiple related projects.

Skill for Claude CodeCodex

Written for Claude Code and Codex: allowed-tools in frontmatter, but also agents/openai.yaml present. Also seen: installed under .agents/ (shared by several agents).

This is dinhtungdu/tangerine's own configuration. It tells Claude Code and Codex how to work on tangerine itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything tangerine configures →

Reuse

Borrowing it

Nothing to install: this file belongs to dinhtungdu/tangerine. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/dinhtungdu/tangerine/main/.agents/skills/shadcn/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/dinhtungdu/tangerine

Made for: Claude Code, Codex.

Wrote 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.

agentmods badge for shadcn

README.md
[![agentmods](https://agentmods.dev/badge/skills/dinhtungdu/tangerine/shadcn/github.svg)](https://agentmods.dev/skills/dinhtungdu/tangerine/shadcn)
Your own site
<a href="https://agentmods.dev/skills/dinhtungdu/tangerine/shadcn"><img src="https://agentmods.dev/badge/skills/dinhtungdu/tangerine/shadcn/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for shadcn

Your own site · 80×15
<a href="https://agentmods.dev/skills/dinhtungdu/tangerine/shadcn"><img src="https://agentmods.dev/badge/skills/dinhtungdu/tangerine/shadcn.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 90 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 4,411 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin 91% copy Near-identical to another mod in the catalogue.
Token cost

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.

ModelPer sessionOnce invoked
Fable 5.1 $0.00090 $0.04411
Opus 5 $0.00045 $0.02205
Sonnet 5 $0.00018 $0.00882
Haiku 4.5 $0.00009 $0.00441

Measured 10d ago against content hash 2c0a5dd794da, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

shadcn 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 10d 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.

Origin

This is a copy

91% identical to shadcn — 55 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

.agents/skills/shadcn/SKILL.md · 249 lines

How it starts

The opening of the file, as written. The whole thing — 249 lines — stays where its author put it; the contents beside it link to each section on GitHub.

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: Run all CLI commands using the project's package runner: npx shadcn@latest, pnpm dlx shadcn@latest, or bunx --bun shadcn@latest — based on the project's packageManager. Examples below use npx shadcn@latest but substitute the correct runner for the project.

Current Project Context

!`f() { local dir="${1:-.}"; if [ -f "$dir/components.json" ]; then npx shadcn@latest info --json -c "$dir"; return; fi; for d in $(find . -maxdepth 3 -name "components.json" -not -path "*/node_modules/*" 2>/dev/null | head -5 | xargs -I{} dirname {}); do npx shadcn@latest info --json -c "$d"; return; done; npx shadcn@latest info --json; }; f`

The JSON above contains the project config and installed components. Use npx shadcn@latest docs <component> to get documentation and example URLs for any component.

Monorepo note: In monorepos, components.json lives in a subdirectory (e.g. web/). The context above auto-detects it by searching up to 3 levels deep. If auto-detect fails or you need a specific workspace, pass -c <path> explicitly: npx shadcn@latest info -c web --json. Never run npx shadcn@latest info from a monorepo root without -c — it will error.

Principles

  1. Use existing components first. Use npx shadcn@latest search to check registries before writing custom UI. Check community registries too.
  2. Compose, don't reinvent. Settings page = Tabs + Card + form controls. Dashboard = Sidebar + Card + Chart + Table.
  3. Use built-in variants before custom styles. variant="outline", size="sm", etc.
  4. 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

Read the full file on GitHub · 249 lines

Files

What ships with it

12 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

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.

  1. 10d ago First seen · 249 lines · 90 tokens per session scan A 2c0a5dd794da

Subscribe to this mod's changes

shadcn is a skill published in the GitHub repository dinhtungdu/tangerine (5 stars, last pushed 3mo ago), licensed MIT. It adds 90 tokens to every session and 4,411 once invoked, about $0.0005 per session on Opus 5. A static security scan graded it A with 0 findings. It is 91% identical to shadcn, differing in 55 lines, and is treated as a copy.

Related

Other skills, from other repositories

chakra-ui-builder

Build responsive, accessible UI components and layouts using Chakra UI v3, install or configure Chakra UI in new and existing projects, and design scalable themes using tokens, semantic tokens, recipes, and slot recipes. Use this skill whenever a user asks to build, create, or generate any UI component, page, form…

chakra-ui/chakra-ui · 214 tokens

visual-ralph

Visual Ralph orchestration for frontend UI from generated references, static references, or live URL targets, using $ralph with built-in visual verdict and pixel-diff evidence until the implementation matches and leaves a reproducible design system.

Yeachan-Heo/oh-my-codex · 50 tokens

frontend-visual-qa

Audits already-rendered web, landing-page, HTML deck/slide, browser tool/game, dashboard/admin, design-system, and desktop UIs using real-browser or native-app journeys, inspected screenshots, DOM geometry, responsive or projection viewports, and a bundled Playwright sweep. Use after UI implementation to find…

daymade/claude-code-skills · 145 tokens

prototype-web

A clickable, high-fidelity web product prototype with navigation, a hero section, feature cards, steps, social proof, and optional pricing. It is designed to resemble a finished landing page while remaining a prototype.

nexu-io/html-anything · 24 tokens

animation-principles

Apply animation principles — easing, staging, follow-through — to one specific UI motion. Use when tuning how an animation feels. For product-wide duration and easing tokens use motion-system (design-systems); for a full interaction spec use micro-interaction-spec.

Owl-Listener/designer-skills · 59 tokens

refactoring-ui

Audit and fix visual hierarchy, spacing, color, and depth in web UIs. Use when the user mentions "my UI looks off" (or amateur/unprofessional), "fix the design", "Tailwind styling", "color palette", "visual hierarchy", "design system", "spacing scale", or "component styling". Also trigger when building consistent…

wondelai/skills · 132 tokens