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 FortiumPartners/ensemble --skill styling-with-tailwindgit clone --depth 1 https://github.com/FortiumPartners/ensembleWrote 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/fortiumpartners/ensemble/styling-with-tailwind)<a href="https://agentmods.dev/skills/fortiumpartners/ensemble/styling-with-tailwind"><img src="https://agentmods.dev/badge/skills/fortiumpartners/ensemble/styling-with-tailwind/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/fortiumpartners/ensemble/styling-with-tailwind"><img src="https://agentmods.dev/badge/skills/fortiumpartners/ensemble/styling-with-tailwind.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.00044 | $0.02319 |
| Opus 5 | $0.00022 | $0.01159 |
| Sonnet 5 | $0.00009 | $0.00464 |
| Haiku 4.5 | $0.00004 | $0.00232 |
Grade A, and why
styling-with-tailwind 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 — 379 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Tailwind CSS 3.x Skill
Target: Tailwind CSS 3.4+ | Purpose: Utility-first CSS styling reference
Table of Contents
- Overview
- Quick Start
- Core Utility Classes
- Flexbox
- Grid
- Responsive Design
- State Variants
- Dark Mode
- Basic Configuration
- Essential Component Patterns
- @apply Directive
- Arbitrary Values
- Performance Tips
- Quick Reference Card
Overview
What is Tailwind CSS: A utility-first CSS framework that provides low-level utility classes to build custom designs directly in markup.
When to Use This Skill:
- Styling components with utility classes
- Configuring
tailwind.config.js - Implementing responsive designs
- Creating dark mode themes
Prerequisites: Node.js 14.0+ (for build tools)
Quick Start
Installation
npm install -D tailwindcss postcss autoprefixer
npx tailwindcss init -p
Minimal Configuration
tailwind.config.js:
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{js,jsx,ts,tsx,html}", "./index.html"],
theme: { extend: {} },
plugins: [],
}
CSS Entry Point:
@tailwind base;
@tailwind components;
@tailwind utilities;
Core Utility Classes
Spacing (Margin & Padding)
| Pattern | Example | Result |
|---|---|---|
m-{size} |
m-4 |
margin: 1rem |
p-{size} |
p-8 |
padding: 2rem |
mx-auto |
mx-auto |
center horizontally |
space-x-{size} |
space-x-4 |
horizontal gap between children |
Scale: 0=0px, 1=0.25rem, 2=0.5rem, 4=1rem, 8=2rem, 16=4rem
Colors
Format: {property}-{color}-{shade}
<div class="bg-blue-500 text-white border-gray-300">
What ships with it
2 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.
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 · 379 lines · 44 tokens per session scan A e63f792a797c
styling-with-tailwind is a skill published in the GitHub repository FortiumPartners/ensemble (12 stars, last pushed yesterday), licensed MIT. It adds 44 tokens to every session and 2,319 once invoked, about $0.0002 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
responsive-audit
Responsive audit: test pages at 375/768/1024px breakpoints via Playwright. Checks overflow, tap targets, sidebar collapse, text reflow, WCAG 1.4.4 zoom.
ui-audit
Audit UI for design token compliance and component adoption. Static grep-based analysis against the sitemap's page and component files. Requires a design system with semantic tokens.
visual-audit
Visual audit - typography, spacing, colour discipline, dark-mode polish, info density. Scores pages on 10 aesthetic dimensions via Playwright screenshots.
frontend-design
Guidance for distinctive, intentional visual design when building new UI or reshaping an existing one. Use whenever the task produces or modifies anything a user will see rendered — websites, landing pages, web apps, dashboards, React/HTML/Vue components, artifacts with visual output, style overhauls, or "make this…
frontend-design
Produce intentional, responsive, accessible UI work and perform visual QA instead of generic component assembly.
designlang-tokens
Use when styling UI for cal.com — references the extracted design system tokens instead of inventing colors, spacing, or typography.