real-estate-laravel: Skill for Claude Code

.claude/skills/tailwindcss-development/SKILL.md

tailwindcss-development is a skill for Claude Code from liberusoftware/real-estate-laravel. It costs 151 tokens per session (929 once invoked), scanned A, a copy of tailwindcss-development, MIT.

Guidance for styling web pages with Tailwind CSS, a toolkit of small CSS classes used to control layout, spacing, colors, and other visual details. It focuses on the current Tailwind CSS version and existing project conventions.

In plain words
What is it for?
Use it when building grids, dashboards, sidebars, top navigation bars, cards, tables, pricing sections, and other responsive interface components.
Why use it?
It provides consistent patterns for common interface layouts and components while helping avoid outdated Tailwind syntax. It also addresses responsive designs that adapt to different screen sizes.

Skill for Claude Code

Written for Claude Code: installed under .claude/.

This is liberusoftware/real-estate-laravel's own configuration. It tells Claude Code how to work on real-estate-laravel itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything real-estate-laravel configures →

Reuse

Borrowing it

Nothing to install: this file belongs to liberusoftware/real-estate-laravel. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/liberusoftware/real-estate-laravel/main/.claude/skills/tailwindcss-development/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/liberusoftware/real-estate-laravel

Made for: Claude Code.

Wrote 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.

agentmods badge for tailwindcss-development

README.md
[![agentmods](https://agentmods.dev/badge/skills/liberusoftware/real-estate-laravel/tailwindcss-development/github.svg)](https://agentmods.dev/skills/liberusoftware/real-estate-laravel/tailwindcss-development)
Your own site
<a href="https://agentmods.dev/skills/liberusoftware/real-estate-laravel/tailwindcss-development"><img src="https://agentmods.dev/badge/skills/liberusoftware/real-estate-laravel/tailwindcss-development/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.

agentmods 80×15 button for tailwindcss-development

Your own site · 80×15
<a href="https://agentmods.dev/skills/liberusoftware/real-estate-laravel/tailwindcss-development"><img src="https://agentmods.dev/badge/skills/liberusoftware/real-estate-laravel/tailwindcss-development.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 151 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 929 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin 100% copy Near-identical to another mod in the catalogue.
Token cost

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.

ModelPer sessionOnce invoked
Fable 5.1 $0.00151 $0.00929
Opus 5 $0.00076 $0.00464
Sonnet 5 $0.00030 $0.00186
Haiku 4.5 $0.00015 $0.00093

Measured 9d ago against content hash 77c96a1c5af6, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

tailwindcss-development 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 9d 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.

Origin

This is a copy

100% identical to tailwindcss-development — 0 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

.claude/skills/tailwindcss-development/SKILL.md · 120 lines

How it starts

The opening of the file, as written. The whole thing — 120 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Tailwind CSS Development

Documentation

Use search-docs for detailed Tailwind CSS v4 patterns and documentation.

Basic Usage

  • Use Tailwind CSS classes to style HTML. Check and follow existing Tailwind conventions in the project before introducing new patterns.
  • Offer to extract repeated patterns into components that match the project's conventions (e.g., Blade, JSX, Vue).
  • Consider class placement, order, priority, and defaults. Remove redundant classes, add classes to parent or child elements carefully to reduce repetition, and group elements logically.

Tailwind CSS v4 Specifics

  • Always use Tailwind CSS v4 and avoid deprecated utilities.
  • corePlugins is not supported in Tailwind v4.

CSS-First Configuration

In Tailwind v4, configuration is CSS-first using the @theme directive — no separate tailwind.config.js file is needed:

@theme {
  --color-brand: oklch(0.72 0.11 178);
}

Import Syntax

In Tailwind v4, import Tailwind with a regular CSS @import statement instead of the @tailwind directives used in v3:

- @tailwind base;
- @tailwind components;
- @tailwind utilities;
+ @import "tailwindcss";

Replaced Utilities

Tailwind v4 removed deprecated utilities. Use the replacements shown below. Opacity values remain numeric.

Deprecated Replacement
bg-opacity-* bg-black/*
text-opacity-* text-black/*
border-opacity-* border-black/*
divide-opacity-* divide-black/*
ring-opacity-* ring-black/*
placeholder-opacity-* placeholder-black/*
flex-shrink-* shrink-*
flex-grow-* grow-*
overflow-ellipsis text-ellipsis
decoration-slice box-decoration-slice
decoration-clone box-decoration-clone

Spacing

Use gap utilities instead of margins for spacing between siblings:

<div class="flex gap-8">
    <div>Item 1</div>
    <div>Item 2</div>
</div>

Read the full file on GitHub · 120 lines

Changes

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.

  1. 9d ago First seen · 120 lines · 151 tokens per session scan A 77c96a1c5af6

Subscribe to this mod's changes

tailwindcss-development is a skill published in the GitHub repository liberusoftware/real-estate-laravel (113 stars, last pushed yesterday), licensed MIT. It adds 151 tokens to every session and 929 once invoked, about $0.0008 per session on Opus 5. A static security scan graded it A with 0 findings. It is 100% identical to tailwindcss-development, differing in 0 lines, and is treated as a copy.

Related

Other skills, from other repositories

powergrid-theme

Create or update a PowerGrid v7 theme using the Theme abstract class, per-section token methods (layout/header/table/footer/cols/tabs plus filter/editable/toggleable), config themeoverrides, or ArrayTheme.

Power-Components/livewire-powergrid · 49 tokens

upgrade-theme-v6-to-v7

Migrates a v6 Theme class to the v7 architecture: a tiny struct() plus per-section token methods (layout/header/table/footer/cols/tabs + filter/editable/toggleable) with parentTheme inheritance.

Power-Components/livewire-powergrid · 52 tokens

fluxui-development

Use this skill for Flux UI development in Livewire applications only. Trigger when working with components, building or customizing Livewire component UIs, creating forms, modals, tables, or other interactive elements. Covers: flux: components (buttons, inputs, modals, forms, tables, date-pickers, kanban, badges…

leMaur/livewire-flux-mcp · 143 tokens

larapilot-design

Produces isolated HTML/CSS mockups stored in .larapilot/mockups/ and served via a dev-only /mockups route. Use for "make a mockup", "dashboard concept", "landing page", or when planning needs visual references. Italian triggers include "mockup", "prototipo visivo".

andreapollastri/larapilot · 69 tokens

laravel-filament

Version-aware best practices for Filament (the Laravel admin-panel / TALL-stack framework by filamentphp), covering v1 through v5. Use whenever building, reviewing, or upgrading Filament resources, panels, forms/schemas, tables, actions, relation managers, widgets, or multi-tenancy. ALWAYS detects the installed…

majdghithan/agent-skills · 129 tokens

laravel-mysql-to-postgres

Migrate a Laravel application's database from MySQL/MariaDB to PostgreSQL safely. Use when moving a Laravel app to Postgres, when Eloquent/queries behave differently after switching drivers, or when planning a MySQL->Postgres cutover. Covers the migration strategy (pgloader vs query-builder), the Laravel-specific…

majdghithan/agent-skills · 104 tokens