agent-creator
Use when creating expert agents. Generates agent.md with frontmatter, hooks, required sections, and skill references.
Use when migrating a project from Tailwind v3 to v4, mapping @theme namespaces to generated utilities, or looking up renamed/removed v3 utilities.
$ npx -y skills add fusengine/agents --skill tailwindcss-v4 --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/tailwindcss-v4Context preview
The summary Claude sees to decide when to auto-load this skill.
Use when migrating a project from Tailwind v3 to v4, mapping @theme namespaces to generated utilities, or looking up renamed/removed v3 utilities.
name: tailwindcss-v4 description: "Use when migrating a project from Tailwind v3 to v4, mapping @theme namespaces to generated utilities, or looking up renamed/removed v3 utilities." user-invocable: false
<objective> Documents Tailwind CSS v4.1 core features relevant to a v3→v4 migration: the `@theme` namespace-to-generated-utility mapping (`--color-*`→`bg-*`/`text-*`, `--spacing-*`→`p-*`/`m-*`/`gap-*`, etc.), the v3→v4 breaking changes (removed `@tailwind` directives, renamed utilities like `shadow-sm`→`shadow-xs`, removed `bg-opacity-*`/`flex-shrink-*`, the `@utility` custom-utility syntax change, arbitrary-value variable syntax, important-modifier position), and the `@tailwindcss/upgrade` CLI tool.
Not the day-to-day CSS-first configuration reference (`tailwindcss-core` owns `@theme`/`@utility`/`@variant` usage) and not a utility-class lookup (the category skills own that). </objective>
| Namespace | Generated Utilities | |-----------|-------------------| | `--color-*` | bg-*, text-*, border-*, fill-* | | `--font-*` | font-* | | `--text-*` | text-xs, text-sm, text-base, etc. | | `--spacing-*` | p-*, m-*, gap-*, w-*, h-* | | `--radius-*` | rounded-* | | `--shadow-*` | shadow-* | | `--breakpoint-*` | sm:*, md:*, lg:*, xl:* | | `--animate-*` | animate-spin, animate-bounce, etc. | | `--ease-*` | ease-in, ease-out, ease-in-out |
/* v3 */ @tailwind base; @tailwind components; @tailwind utilities; /* v4 */ @import "tailwindcss";
| v3 | v4 | |----|-----| | `shadow-sm` | `shadow-xs` | | `shadow` | `shadow-sm` | | `rounded-sm` | `rounded-xs` | | `rounded` | `rounded-sm` | | `outline-none` | `outline-hidden` | | `ring` | `ring-3` |
/* v3 */
@layer utilities {
.tab-4 {
tab-size: 4;
}
}
/* v4 */
@utility tab-4 {
tab-size: 4;
}<!-- v3 --> <div class="bg-[--brand-color]"></div> <!-- v4 --> <div class="bg-(--brand-color)"></div>
<!-- v3 --> <div class="!bg-red-500"> <!-- v4 --> <div class="bg-red-500!">
npx @tailwindcss/upgrade
Requires Node.js 20+
A plugin ecosystem that turns Claude Code into a supervised, multi-agent development environment.
Repo: fusengine/agents
Use when creating expert agents. Generates agent.md with frontmatter, hooks, required sections, and skill references.
Use when starting ANY development task -- feature, bug fix, refactor, hotfix (triggers: implement, create, build, fix, add feature, refactor, develop).
Use when creating a feature/component or adding functionality. Fires BEFORE APEX Analyze to refine requirements via structured questioning.
Use before a root-cause, done/verified claim, irreversible action, or 2nd-time fix reaches the owner (APEX or plain conversation); also fires at every…
Use when validating code quality after modifications -- SOLID compliance, DRY duplication, linter errors, architecture violations. Do NOT use for functional…
Use when an expert agent self-reviews and self-corrects code after the Execute phase, before sniper validation (BMAD-METHOD elicitation techniques).