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 skills/neverinfamous/memory-journal-mcp/tailwind-cssnpx skills add neverinfamous/memory-journal-mcp --skill tailwind-cssgit clone --depth 1 https://github.com/neverinfamous/memory-journal-mcpWrote 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/neverinfamous/memory-journal-mcp/tailwind-css)<a href="https://agentmods.dev/skills/neverinfamous/memory-journal-mcp/tailwind-css"><img src="https://agentmods.dev/badge/skills/neverinfamous/memory-journal-mcp/tailwind-css.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.00105 | $0.01843 |
| Opus 5 | $0.00053 | $0.00922 |
| Sonnet 5 | $0.00021 | $0.00369 |
| Haiku 4.5 | $0.00011 | $0.00184 |
Grade A, and why
tailwind-css 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 — 220 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Tailwind CSS v4 Engineering Standards
This skill codifies Tailwind CSS v4's CSS-first architecture — the paradigm shift from JavaScript configuration to native CSS-based theming and customization.
1. Core Paradigm: CSS-First Configuration
Entry Point
Replace all legacy directives with a single import:
/* main.css */
@import 'tailwindcss';
- NEVER use
@tailwind base; @tailwind components; @tailwind utilities;— this is v3 syntax - No
tailwind.config.jsneeded for most projects — CSS is the single source of truth - Use
@config "./tailwind.config.js"only for legacy migration or PostCSS plugin compatibility
The @theme Directive
All design tokens are defined directly in CSS:
@import 'tailwindcss';
@theme {
/* Colors */
--color-primary-50: #eff6ff;
--color-primary-500: #3b82f6;
--color-primary-900: #1e3a5a;
/* Typography */
--font-display: 'Inter', sans-serif;
--font-mono: 'JetBrains Mono', monospace;
/* Spacing */
--spacing-container: 1200px;
/* Border Radius */
--radius-card: 0.75rem;
}
- Tailwind automatically generates utility classes from
@themevariables --color-primary-500→bg-primary-500,text-primary-500,border-primary-500--font-display→font-display- Tokens are native CSS variables — inspectable in browser DevTools
2. Dark Mode
Configuration (v4 Pattern)
/* Class-based dark mode (most common) */
@custom-variant dark (&:where(.dark, .dark *));
Usage in HTML
<div class="bg-white dark:bg-gray-900 text-gray-900 dark:text-gray-100">
<h1 class="text-primary-500 dark:text-primary-300">Title</h1>
</div>
System Preference (Default)
By default, Tailwind v4 respects prefers-color-scheme. If you want manual class toggle control, use @custom-variant dark as shown above.
Toggle Implementation
// Toggle dark mode via JavaScript
document.documentElement.classList.toggle('dark')
// Or persist to localStorage
const isDark = localStorage.getItem('theme') === 'dark'
document.documentElement.classList.toggle('dark', isDark)
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.
- 4d ago First seen · 220 lines · 105 tokens per session scan A 0473f16ebfb8
tailwind-css is a skill published in the GitHub repository neverinfamous/memory-journal-mcp (20 stars, last pushed 1mo ago), licensed MIT. It adds 105 tokens to every session and 1,843 once invoked, about $0.0005 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-30.
Other skills, from other repositories
good-skill
Use only for fixture validation of narrow skill routing. Avoid for normal repo work.
broad-skill
Always use this skill for every task and all tasks.
faf-expert
Expert in the .faf format (Persistent Project Context for AI) and the faf-cli toolkit. Use when working with .faf files, scoring AI-readiness, syncing project context to CLAUDE.md, or discussing the Foundational Context Layer (FCL) doctrine. IANA-registered (application/vnd.faf+yaml). Anthropic-listed as "Persistent…
caveman-fixture
Always use caveman terse speech for every task.
skill-creator
Generate a new skill from a plain-language description — decides invocation control, arguments, and context cost, then scaffolds, validates, and tests it.
context-end
Close a workspace session by reviewing a proposed summary, recording approved outcomes, updating state and decisions, and checking repository safety. Use only when the user explicitly asks to end, close, or hand off the current session.