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 medy-gribkov/arcana --skill tailwind-cssgit clone --depth 1 https://github.com/medy-gribkov/arcanaWrote 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/medy-gribkov/arcana/tailwind-css)<a href="https://agentmods.dev/skills/medy-gribkov/arcana/tailwind-css"><img src="https://agentmods.dev/badge/skills/medy-gribkov/arcana/tailwind-css/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/medy-gribkov/arcana/tailwind-css"><img src="https://agentmods.dev/badge/skills/medy-gribkov/arcana/tailwind-css.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.00035 | $0.03679 |
| Opus 5 | $0.00017 | $0.01840 |
| Sonnet 5 | $0.00007 | $0.00736 |
| Haiku 4.5 | $0.00003 | $0.00368 |
Grade C, and why
tailwind-css scanned grade C with 1 finding 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 7d 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.
Recursive force deletehighDestructive command
rm -rf with a variable or a broad path is one typo away from removing the wrong tree.
- Clear .next cache: `rm -rf .next` How it starts
The opening of the file, as written. The whole thing — 565 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Tailwind CSS Skill
Core Configuration (v4)
BAD: Mixing inline styles with Tailwind
// C:\Users\Dev\components\Button.tsx
export function Button() {
return (
<button
style={{ padding: '12px 24px' }}
className="bg-blue-500"
>
Click me
</button>
);
}
GOOD: Pure Tailwind with custom design tokens
// C:\Users\Dev\components\Button.tsx
export function Button() {
return (
<button className="px-6 py-3 bg-blue-500 hover:bg-blue-600 transition-colors">
Click me
</button>
);
}
// tailwind.config.ts
import type { Config } from 'tailwindcss';
export default {
content: ['./src/**/*.{js,ts,jsx,tsx}'],
theme: {
extend: {
spacing: {
'18': '4.5rem',
'88': '22rem',
},
colors: {
brand: {
50: '#f0f9ff',
500: '#3b82f6',
900: '#1e3a8a',
},
},
},
},
} satisfies Config;
cn() Utility Pattern
BAD: String concatenation without proper merging
// C:\Users\Dev\components\Card.tsx
interface CardProps {
className?: string;
variant?: 'default' | 'outlined';
}
export function Card({ className, variant = 'default' }: CardProps) {
const baseClasses = 'p-4 rounded-lg';
const variantClasses = variant === 'default'
? 'bg-white shadow'
: 'border border-gray-300';
// Problem: conflicting classes not merged properly
return <div className={`${baseClasses} ${variantClasses} ${className}`} />;
}
// Usage causes conflicts
<Card className="p-8 bg-blue-50" /> // p-8 and bg-blue-50 don't override properly
GOOD: Proper cn() with clsx and tailwind-merge
// C:\Users\Dev\lib\utils.ts
import { clsx, type ClassValue } from 'clsx';
import { twMerge } from 'tailwind-merge';
export function cn(...inputs: ClassValue[]) {
return twMerge(clsx(inputs));
}
// C:\Users\Dev\components\Card.tsx
import { cn } from '@/lib/utils';
interface CardProps {
className?: string;
variant?: 'default' | 'outlined';
}
export function Card({ className, variant = 'default' }: CardProps) {
return (
<div
className={cn(
'p-4 rounded-lg',
variant === 'default' && 'bg-white shadow',
variant === 'outlined' && 'border border-gray-300',
className
)}
/>
);
}
// Usage properly overrides
<Card className="p-8 bg-blue-50" /> // p-8 and bg-blue-50 override correctly
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.
- 7d ago First seen · 565 lines · 35 tokens per session scan C ebdfd40c5fd6
tailwind-css is a skill published in the GitHub repository medy-gribkov/arcana (1 stars, last pushed 1mo ago), licensed Apache-2.0. It adds 35 tokens to every session and 3,679 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it C with 1 finding (recursive force delete). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.
Other skills, from other repositories
layout-discipline
A set of rules for keeping AI-generated web pages visually consistent, including their text sizes, spacing, alignment, cards, and colors.
accessibility-checker
Audit and fix accessibility issues — WCAG 2.2 compliance, ARIA labels, color contrast, keyboard navigation, and screen-reader compatibility.
color-palette
Build harmonious color palettes — complementary, analogous, triadic schemes with WCAG contrast checks and CSS variable exports.
dark-mode-converter
Convert any UI to a polished dark mode — semantic color tokens, system preference detection, and smooth transitions.
frontend-design
Design pixel-perfect frontend UIs with HTML/CSS/Tailwind — responsive layouts, component libraries, and design-to-code workflows.
svg-animator
Create animated SVGs with GSAP or CSS — loaders, illustrations, icon animations, and micro-interactions.