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/roninforge/roninforge-tailwind-v4/tailwind-v4-anti-patternsgit clone --depth 1 https://github.com/RoninForge/roninforge-tailwind-v4Wrote 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/roninforge/roninforge-tailwind-v4/tailwind-v4-anti-patterns)<a href="https://agentmods.dev/rules/roninforge/roninforge-tailwind-v4/tailwind-v4-anti-patterns"><img src="https://agentmods.dev/badge/rules/roninforge/roninforge-tailwind-v4/tailwind-v4-anti-patterns.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.1 | $0.01399 | $0.01399 |
| Opus 5 | $0.00700 | $0.00700 |
| Sonnet 5 | $0.00280 | $0.00280 |
| Haiku 4.5 | $0.00140 | $0.00140 |
Grade A, and why
tailwind-v4-anti-patterns 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 6d 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 — 205 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Tailwind v4 Anti-Patterns
These are the patterns AI models generate most frequently when working with Tailwind v4 projects. Every one of them is wrong. If you catch yourself generating any of these, stop and correct immediately.
Anti-Pattern 1: Creating tailwind.config.js in a New Project
If starting a new Tailwind v4 project, do NOT create a tailwind.config.js or tailwind.config.ts file. Configuration lives in CSS:
/* All config goes here, in your main CSS file */
@import "tailwindcss";
@theme {
--color-primary: #3b82f6;
--font-sans: "Inter", sans-serif;
}
The only exception: migrating an existing v3 project where you explicitly need @config "../../tailwind.config.js" as a bridge.
Anti-Pattern 2: Installing Wrong Packages
Do NOT install these v3-era packages:
tailwindcssas a PostCSS plugin directly (use@tailwindcss/postcssor@tailwindcss/vite)autoprefixer(handled by Tailwind v4 internally)postcss-import(handled by Tailwind v4 internally)
Correct v4 installation:
For Vite projects:
npm install -D tailwindcss @tailwindcss/vite
For PostCSS projects:
npm install -D tailwindcss @tailwindcss/postcss
Anti-Pattern 3: Using @tailwind Directives
/* WRONG - v3 syntax */
@tailwind base;
@tailwind components;
@tailwind utilities;
/* CORRECT - v4 syntax */
@import "tailwindcss";
Anti-Pattern 4: Using Opacity Utilities
These classes do not exist in v4:
bg-opacity-*text-opacity-*border-opacity-*divide-opacity-*placeholder-opacity-*ring-opacity-*
Always use the / modifier syntax: bg-red-500/50, text-white/80.
Anti-Pattern 5: Relying on Default Border/Ring Colors
If you write class="border" without a color, the border will be currentColor in v4 (not gray-200 as in v3). Same for ring (1px currentColor instead of 3px blue-500).
Always be explicit:
<div class="border border-gray-200"></div>
<div class="ring-3 ring-blue-500"></div>
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.
- 6d ago First seen · 205 lines · 1,399 tokens per session scan A 7653a8f5d0e8
tailwind-v4-anti-patterns is a cursor rule published in the GitHub repository RoninForge/roninforge-tailwind-v4 (2 stars, last pushed 2mo ago), licensed MIT. It adds 1,399 tokens to every session, about $0.0070 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-08-31.
Other cursor rules, from other repositories
html-css
Rules for HTML, CSS, and styling files.
frontend
UI/component conventions. Apply when building or changing user-facing frontend code.
tinted-ui-tokens-skills
Generate a brand-tinted UI design-token system (CSS) from a single brand color. No pure neutral colors.
compose-performance
Compose performance: stability annotations (@Stable, @Immutable), strong-skipping in Kotlin 2.x, key-based recomposition, derivedStateOf, remember{} keys, deferred reads, Compose previews + Paparazzi for screenshot tests.
accessibility
Accessibility: semantic HTML, ARIA, keyboard navigation, testing.
shadcn-ui
Cursor rule "shadcn-ui" from nedcodes-ok/cursorrules-collection, covering shadcn/ui rules, component usage, styling, forms and dialog/sheet/modal patterns.