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 skills add S3YED/appie-kit --skill tailwind-v4-shadcn-setupgit clone --depth 1 https://github.com/S3YED/appie-kitWrote 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/skills/s3yed/appie-kit/tailwind-v4-shadcn-setup)<a href="https://agentmods.dev/skills/s3yed/appie-kit/tailwind-v4-shadcn-setup"><img src="https://agentmods.dev/badge/skills/s3yed/appie-kit/tailwind-v4-shadcn-setup/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.
<a href="https://agentmods.dev/skills/s3yed/appie-kit/tailwind-v4-shadcn-setup"><img src="https://agentmods.dev/badge/skills/s3yed/appie-kit/tailwind-v4-shadcn-setup.svg" alt="Reviewed on agentmods" width="80" 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.1 | $0.00065 | $0.02671 |
| Opus 5 | $0.00032 | $0.01336 |
| Sonnet 5 | $0.00013 | $0.00534 |
| Haiku 4.5 | $0.00006 | $0.00267 |
Grade A, and why
tailwind-v4-shadcn-setup 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 5d 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.
How it starts
The opening of the file, as written. The whole thing — 256 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Tailwind CSS v4 + shadcn/ui Setup for AI Agents
Use this skill when setting up a new Next.js project with Tailwind CSS v4 and shadcn/ui, or when writing code for one. It encodes all the critical gotchas that differ from Tailwind v3.
Quick Setup
# 1. Create Next.js project
npx create-next-app@latest my-app --typescript --tailwind --app
# 2. shadcn/ui init (auto-detects Tailwind v4)
npx shadcn@latest init
# 3. Add core components
npx shadcn@latest add button card input dialog tabs select form
# 4. Install tw-animate-css (replaces tailwindcss-animate)
npm install tw-animate-css
globals.css Template
This is the canonical globals.css for Tailwind v4 + shadcn/ui:
@import "tailwindcss";
@import "tw-animate-css";
@custom-variant dark (&:is(.dark *));
@theme inline {
--radius-sm: calc(var(--radius) - 4px);
--radius-md: calc(var(--radius) - 2px);
--radius-lg: var(--radius);
--radius-xl: calc(var(--radius) + 4px);
--color-background: var(--background);
--color-foreground: var(--foreground);
--color-card: var(--card);
--color-card-foreground: var(--card-foreground);
--color-primary: var(--primary);
--color-primary-foreground: var(--primary-foreground);
--color-secondary: var(--secondary);
--color-secondary-foreground: var(--secondary-foreground);
--color-muted: var(--muted);
--color-muted-foreground: var(--muted-foreground);
--color-accent: var(--accent);
--color-accent-foreground: var(--accent-foreground);
--color-destructive: var(--destructive);
--color-border: var(--border);
--color-ring: var(--ring);
--color-input: var(--input);
--color-chart-1: var(--chart-1);
--color-chart-2: var(--chart-2);
--color-chart-3: var(--chart-3);
--color-chart-4: var(--chart-4);
--color-chart-5: var(--chart-5);
}
:root {
--background: oklch(1 0 0);
--foreground: oklch(0.145 0 0);
--card: oklch(1 0 0);
--card-foreground: oklch(0.145 0 0);
--primary: oklch(0.205 0 0);
--primary-foreground: oklch(0.985 0 0);
--secondary: oklch(0.96 0.01 264);
--secondary-foreground: oklch(0.205 0 0);
--muted: oklch(0.96 0.01 264);
--muted-foreground: oklch(0.46 0.02 264);
--accent: oklch(0.96 0.01 264);
--accent-foreground: oklch(0.205 0 0);
--destructive: oklch(0.53 0.22 27);
--destructive-foreground: oklch(0.985 0 0);
--border: oklch(0.91 0.01 264);
--input: oklch(0.91 0.01 264);
--ring: oklch(0.205 0 0);
--chart-1: oklch(0.55 0.22 250);
--chart-2: oklch(0.63 0.18 170);
--chart-3: oklch(0.45 0.14 40);
--chart-4: oklch(0.68 0.19 300);
--chart-5: oklch(0.58 0.16 10);
--radius: 0.5rem;
}
.dark {
--background: oklch(0.145 0 0);
--foreground: oklch(0.985 0 0);
--card: oklch(0.145 0 0);
--card-foreground: oklch(0.985 0 0);
--primary: oklch(0.922 0 0);
--primary-foreground: oklch(0.205 0 0);
--secondary: oklch(0.26 0.02 264);
--secondary-foreground: oklch(0.985 0 0);
--muted: oklch(0.26 0.02 264);
--muted-foreground: oklch(0.64 0.02 264);
--accent: oklch(0.26 0.02 264);
--accent-foreground: oklch(0.985 0 0);
--destructive: oklch(0.55 0.22 27);
--destructive-foreground: oklch(0.985 0 0);
--border: oklch(0.26 0.02 264);
--input: oklch(0.26 0.02 264);
--ring: oklch(0.84 0.01 264);
--chart-1: oklch(0.65 0.22 250);
--chart-2: oklch(0.70 0.18 170);
--chart-3: oklch(0.68 0.14 40);
--chart-4: oklch(0.72 0.19 300);
--chart-5: oklch(0.65 0.16 10);
}
/* Override with your brand colors */
:root {
--primary: oklch(0.55 0.22 250); /* your brand blue */
--primary-foreground: oklch(0.98 0 0); /* white text on primary */
--radius: 0.5rem;
}
.dark {
--primary: oklch(0.70 0.18 250); /* lighter for dark mode */
--primary-foreground: oklch(0.10 0 0); /* dark text on primary */
}
What ships with it
1 file 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.
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.
- 5d ago First seen · 256 lines · 65 tokens per session scan A 63f8a441aa44
tailwind-v4-shadcn-setup is a skill published in the GitHub repository S3YED/appie-kit (8 stars, last pushed 13d ago), licensed MIT. It adds 65 tokens to every session and 2,671 once invoked, about $0.0003 per session on Opus 5. 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-09-03.
Other skills, from other repositories
component-search
Search 21st.dev component registry for production-ready React components. Finds components by natural language description, filters by framework and style system, returns ranked results with install instructions. Use when looking for UI components, finding alternatives to existing components, or sourcing design system…
clone-website
Reverse-engineer and clone a website in one shot — extracts assets, CSS, and content section-by-section and proactively dispatches parallel builder agents in worktrees as it goes. Use this whenever the user wants to clone, replicate, rebuild, reverse-engineer, or copy any website. Also triggers on phrases like "make a…
animation-patterns
Framer Motion patterns, page transitions, skeleton loading, scroll-linked animations, and gesture-based interactions for React.
component-library-patterns
Design system token management, component API design, Storybook, and visual regression testing patterns.
design-loop
Autonomous multi-page site builder using a baton-passing loop. Each iteration reads a task from .design/next-prompt.md, generates a page in HTML/Tailwind, integrates it into the site, verifies visually, then writes the next task to keep the loop alive. Use whenever the user asks to build an entire site autonomously…
color-palette
Generate complete, accessible colour palettes from a single brand hex. Produces 11-shade scale (50-950), semantic tokens, dark mode variants, Tailwind v4 CSS output, WCAG contrast checks. Use whenever the user supplies a brand hex and asks for a palette, mentions setting up a design system, wants Tailwind theme…