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-coregit 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-core)<a href="https://agentmods.dev/rules/roninforge/roninforge-tailwind-v4/tailwind-v4-core"><img src="https://agentmods.dev/badge/rules/roninforge/roninforge-tailwind-v4/tailwind-v4-core.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 | $0.01663 | $0.01663 |
| Opus 5 | $0.00831 | $0.00831 |
| Sonnet 5 | $0.00333 | $0.00333 |
| Haiku 4.5 | $0.00166 | $0.00166 |
Grade A, and why
tailwind-v4-core 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 4d 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 — 260 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Tailwind CSS v4 Rules
You are working with Tailwind CSS v4, not v3. v4 is a ground-up rewrite with breaking changes. Your training data likely contains mostly v3 patterns. Follow these rules exactly.
Import Syntax
Always use the single import:
@import "tailwindcss";
Never use the old v3 directives:
/* WRONG - v3 syntax, does not work in v4 */
@tailwind base;
@tailwind components;
@tailwind utilities;
Configuration is CSS-First
Define design tokens with @theme, not tailwind.config.js:
@import "tailwindcss";
@theme {
--color-brand: #ff6a00;
--color-surface: #0a0a0a;
--font-sans: "Inter", ui-sans-serif, system-ui, sans-serif;
--font-mono: "JetBrains Mono", ui-monospace, monospace;
}
Only use @config "../../tailwind.config.js" when migrating a legacy project that still needs the JS config. For new projects, never create a tailwind.config.js.
Build Tool Setup
Prefer the Vite plugin (zero-config):
// vite.config.ts
import tailwindcss from "@tailwindcss/vite";
export default defineConfig({
plugins: [tailwindcss()],
});
PostCSS alternative (only if not using Vite):
// postcss.config.mjs
export default {
plugins: {
"@tailwindcss/postcss": {},
},
};
Never add autoprefixer or postcss-import - Tailwind v4 handles both internally.
Content Detection
v4 automatically detects template files by scanning everything not in .gitignore. No content array needed.
To include paths outside the project (e.g., a UI library in node_modules):
@source "../node_modules/@acmecorp/ui-lib";
To exclude paths:
@source not "../src/legacy";
Important Modifier Position
The ! important modifier goes at the end of the class, not the beginning:
<!-- CORRECT v4 -->
<div class="p-4!"></div>
<!-- WRONG v3 -->
<div class="!p-4"></div>
Arbitrary CSS Variable Syntax
Use parentheses, not square brackets, for CSS variable references:
<!-- CORRECT v4 -->
<div class="bg-(--brand-color)"></div>
<!-- WRONG v3 -->
<div class="bg-[--brand-color]"></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.
- 4d ago First seen · 260 lines · 1,663 tokens per session scan A c0c098345e53
tailwind-v4-core is a cursor rule published in the GitHub repository RoninForge/roninforge-tailwind-v4 (2 stars, last pushed 2mo ago), licensed MIT. It adds 1,663 tokens to every session, about $0.0083 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.
tinted-ui-tokens-skills
Generate a brand-tinted UI design-token system (CSS) from a single brand color. No pure neutral colors.
compose-core
Modern Android development rules: Kotlin 2.x with K2, Jetpack Compose, Material 3, state hoisting + StateFlow + collectAsStateWithLifecycle, Hilt with hiltViewModel(), type-safe Navigation Compose, KSP, Version Catalogs, Compose Compiler as Kotlin plugin.
compose-anti-patterns
Compose / Kotlin Android anti-pattern detector. Catches findViewById, setContentView(R.layout), GlobalScope, LiveData + observeAsState, MutableState exposed publicly, force-unwrap !!, lowercase composables, LazyColumn without key, LaunchedEffect(true), Material 2 imports, padding-before-clickable…
compose-testing
Compose testing: createComposeRule, semantic matchers, Paparazzi screenshot tests, Hilt + Compose test setup, runTest for coroutines, Turbine for Flow assertions, fake repositories over mocks. Agent-requested.
compose-architecture
Android architecture patterns: feature modularization, repository + data source pattern, sealed interfaces for UI state, ViewModel + StateFlow, Ktor / Retrofit + Kotlin Serialization, Room with Flow returns + KSP, coroutines structured concurrency.